/* ============================================================
   AMK Advisory — Global Theme (new brand identity)
   Font sizes are the EXACT reference values converted to px
   (reference assumed 16px root; Invena forces html{font-size:10px},
   so px + !important guarantees the reference sizes survive).
   ============================================================ */

:root {
  --amk-dark:   #1B4332;
  --amk-mid:    #2D6A4F;
  --amk-accent: #52B788;
  --amk-light:  #B7E4C7;
  --amk-pale:   #D8F3DC;
  --amk-off:    #F4FAF6;
  --amk-text:   #1A2E22;
  --amk-muted:  #5A7A65;
  --amk-white:  #ffffff;
  --amk-gold:   #C9A84C;
  --color-primary: #1B4332;
}

/* One-page site: smooth scroll + offset for the 72px fixed nav.
   Beats Invena's `html{scroll-behavior:auto !important}`. */
html { scroll-behavior: smooth !important; scroll-padding-top: 80px; }

/* Carbon-copy guarantee: the reference HTML opens with
   `*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}`.
   Replicate it SCOPED to the new-design containers so Bootstrap/Invena
   tag rules (p/ul/h2/section/button margins, list padding, 10px root)
   cannot leak in. Component rules below re-apply the exact px values. */
.amk-nav, .amk-nav *, .amk-nav *::before, .amk-nav *::after,
.amk-footer, .amk-footer *, .amk-footer *::before, .amk-footer *::after,
.amk-block, .amk-block *, .amk-block *::before, .amk-block *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}
/* NOTE: no !important here on purpose — selector specificity (0,1,0)
   already beats Invena/Bootstrap tag rules (p/ul/h2… = 0,0,1), and the
   component rules below (0,2,0) stay more specific than this reset, so
   the exact reference px paddings/margins still apply. */

/* Invena `style.css` forces `input,button,select,textarea{width:100%}`
   which makes flex tab buttons (.srv-tab/.tab-btn) wrap & stack. Reset
   form controls to auto width (0,1,1 beats Invena's 0,0,1); component
   rules that genuinely need full width (contact inputs) are 0,3,1. */
.amk-nav button, .amk-nav input, .amk-nav select, .amk-nav textarea,
.amk-footer button, .amk-footer input, .amk-footer select, .amk-footer textarea,
.amk-block button, .amk-block input, .amk-block select, .amk-block textarea {
  width: auto;
  background: none;
  font-family: inherit;
}

/* Headings: Bootstrap forces h1–h6{font-weight:500}; the reference
   relies on the UA-default bold for headings — restore it. */
.amk-nav h1, .amk-nav h2, .amk-nav h3, .amk-nav h4,
.amk-footer h1, .amk-footer h2, .amk-footer h3, .amk-footer h4,
.amk-block h1, .amk-block h2, .amk-block h3, .amk-block h4 { font-weight: 700; }

/* Neutralise Invena's `body{padding:25px 30px 30px}` — keep only the
   fixed-nav offset so the new full-bleed bands truly reach the edges. */
body { margin: 0 !important; padding: 72px 0 0 0 !important; font-family: 'DM Sans', sans-serif; }

/* ───────────────────────── NAV ───────────────────────── */
.amk-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #f4faf6; backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 5%; height: 72px;
  border-bottom: 1px solid rgba(82, 183, 136, 0.25);
  font-family: 'DM Sans', sans-serif;
}
/* Logo: text brand + inline tagline at the left (matches reference) */
.amk-nav .nav-logo { display: flex; align-items: baseline; gap: 10px; text-decoration: none; flex-shrink: 0; }
.amk-nav .nav-logo img { height: 36px; width: auto; display: block; }
.amk-nav .nav-logo .brand { font-family: 'Playfair Display', serif; font-size: 28.8px !important; font-weight: 700; color: #fff; letter-spacing: -0.5px; line-height: 1; }
.amk-nav .nav-logo .tagline { font-size: 10.4px !important; color: var(--amk-accent); letter-spacing: 0.12em; text-transform: uppercase; line-height: 1; white-space: nowrap; }
.amk-nav .nav-links { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.amk-nav .nav-links a { color: #5d666f; text-decoration: none; font-size: 12.2px !important; font-weight: 500; letter-spacing: 0.03em; transition: color 0.2s; }
.amk-nav .nav-links a:hover { color: var(--amk-accent); }
.amk-nav .nav-cta { background: var(--amk-accent); color: #fff; padding: 10px 22px; border-radius: 2px; font-size: 13.12px !important; font-weight: 600; text-decoration: none; letter-spacing: 0.04em; transition: background 0.2s; white-space: nowrap; }
.amk-nav .nav-cta:hover { background: #3DA172; }
.amk-nav .nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px !important; cursor: pointer; line-height: 1; }
/* Dropdown (sub-menu) */
.amk-nav .nav-links li.has-dropdown { position: relative; display: flex; align-items: center; margin-right: 18px; }
.amk-nav .nav-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; list-style: none; margin: 0; padding: 8px 0;
  box-shadow: 0 14px 34px rgba(14,43,31,0.14);
  border: 1px solid rgba(82,183,136,0.2); border-radius: 4px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease; z-index: 1001;
}
.amk-nav .nav-links li.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.amk-nav .nav-dropdown li { padding: 0; }
.amk-nav .nav-dropdown a { display: block; padding: 9px 18px; font-size: 12.2px !important; color: #5d666f; white-space: nowrap; }
.amk-nav .nav-dropdown a:hover { background: var(--amk-pale); color: var(--amk-dark); }
@media (max-width: 991px) {
  .amk-nav .nav-links, .amk-nav .nav-cta { display: none; }
  .amk-nav .nav-toggle { display: block; }
  .amk-nav.is-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--amk-dark); padding: 12px 5%;
    border-bottom: 1px solid rgba(82,183,136,0.25);
  }
  .amk-nav.is-open .nav-links li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  /* Mobile: show sub-menu inline, indented */
  .amk-nav .nav-links li.has-dropdown { display: block; height: auto; margin-right: 0; }
  .amk-nav .nav-links li.has-dropdown::after { display: none; }
  .amk-nav .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent;
    padding: 6px 0 0 14px; min-width: 0;
  }
  .amk-nav .nav-dropdown li { padding: 8px 0 0 !important; border: none !important; }
  .amk-nav .nav-dropdown a { color: rgba(255,255,255,0.7); padding: 0; }
}

/* ───────────────────────── FOOTER ───────────────────────── */
.amk-footer { background: #0E2B1F; padding: 60px 7% 24px; color: #fff; font-family: 'DM Sans', sans-serif; }
.amk-footer .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; margin-bottom: 44px; }
.amk-footer .footer-brand img { max-height: 65px; width: auto; margin-bottom: 14px; display: block; }
.amk-footer .footer-brand .brand { font-family: 'Playfair Display', serif; font-size: 32px !important; font-weight: 700; color: #fff; line-height: 1; }
.amk-footer .footer-brand .sub { display:none !important; font-size: 11.52px !important; color: var(--amk-accent); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 6px; margin-bottom: 16px; }
.amk-footer .footer-brand p { font-size: 13.44px !important; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 360px; }
.amk-footer .footer-social { display: flex; gap: 12px; margin-top: 18px; }
.amk-footer .footer-social a { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); border-radius: 50%; text-decoration: none; transition: all 0.2s; }
.amk-footer .footer-social a:hover { background: var(--amk-accent); border-color: var(--amk-accent); color: #fff; }
.amk-footer .footer-col h4 { color: var(--amk-accent); font-size: 11.52px !important; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 18px; font-family: 'DM Sans', sans-serif; }
.amk-footer .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.amk-footer .footer-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13.44px !important; transition: color 0.2s; }
.amk-footer .footer-col ul a:hover { color: var(--amk-accent); }
.amk-footer .footer-bottom { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.amk-footer .footer-bottom p { font-size: 12.48px !important; color: rgba(255,255,255,0.3); margin: 0; }
.amk-footer .footer-copy { grid-column: 1; }
.amk-footer .footer-addr { display: flex; flex-direction: column; gap: 5px; }
.amk-footer .footer-addr--corp { grid-column: 2; }
.amk-footer .footer-addr--reg { grid-column: 3; }
.amk-footer .footer-addr .addr-label { font-size: 11.52px !important; font-weight: 600; letter-spacing: 0.06em; color: var(--amk-accent); text-transform: none; }
.amk-footer .footer-addr .addr-text { font-size: 12.48px !important; color: rgba(255,255,255,0.4); line-height: 1.6; }
@media (max-width: 991px) {
  .amk-footer .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .amk-footer .footer-bottom { grid-template-columns: 1fr; gap: 18px; }
  .amk-footer .footer-copy, .amk-footer .footer-addr--corp, .amk-footer .footer-addr--reg { grid-column: 1; }
}

/* ───────────────────── BLOCK BASE (page-builder elements) ───────────────────── */
.amk-block { font-family: 'DM Sans', sans-serif; color: var(--amk-text); position: relative; font-size: 16px !important; line-height: 1.6; }
.amk-block h1, .amk-block h2, .amk-block h3, .amk-block h4 { font-family: 'Playfair Display', serif; }
.amk-block.amk-section { padding: 72px 7%; }
.amk-block .section-eyebrow { font-size: 11.52px !important; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amk-accent); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.amk-block .section-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--amk-accent); }
.amk-block .section-h2 { font-size: clamp(32px, 3.5vw, 48px) !important; color: var(--amk-text); line-height: 1.18; margin-bottom: 20px; }
.amk-block .section-lead { font-size: 16.8px !important; color: var(--amk-muted); line-height: 1.7; max-width: 600px; }
/* Valued Customers / client logo carousel section — white section between green sections */
.amk-block.amk-clients { background: #ffffff; }
.amk-clients .amk-clients-head { text-align: left; margin-bottom: 44px; }
.amk-clients .amk-clients-head .section-h2 { color: var(--amk-text); margin-bottom: 16px; }
.amk-clients .amk-clients-head .section-lead { color: var(--amk-muted); max-width: 640px; }
.amk-clients .rts-brand-area { padding: 0; }
/* Give the carousel vertical room so the hover lift + glow aren't clipped by Swiper's overflow:hidden */
.amk-block.amk-clients .swiper { padding-top: 16px; padding-bottom: 18px; }
/* Logo cards — grayscale, colorize + lift on hover */
.amk-block.amk-clients .single-brand {
  height: 100%; min-height: 96px;
  background: #ffffff;
  border: 1px solid #e6ece8;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(27,67,50,0.05);
  padding: 26px 22px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.amk-block.amk-clients .single-brand img {
  max-width: 130px; max-height: 44px; width: auto; margin: 0 auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter .35s ease, opacity .35s ease, transform .35s ease;
}
.amk-block.amk-clients .single-brand:hover {
  transform: translateY(-6px);
  border-color: rgba(82,183,136,0.6);
  box-shadow: 0 16px 32px rgba(27,67,50,0.12), 0 0 0 1px rgba(82,183,136,0.25);
}
.amk-block.amk-clients .single-brand:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.04); }
.amk-block .divider { width: 48px; height: 3px; background: var(--amk-accent); margin: 24px 0; }
.amk-block .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.amk-block .reveal.visible { opacity: 1; transform: none; }

/* ── HERO ── */
.amk-block.amk-hero {
  min-height: calc(100vh - 72px); background: var(--amk-dark);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden; padding: 0;
}
.amk-hero .hero-left { display: flex; flex-direction: column; justify-content: center; padding: 48px 6% 48px 7%; position: relative; z-index: 2; }
.amk-hero .hero-eyebrow { font-size: 11.52px !important; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amk-accent); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.amk-hero .hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--amk-accent); }
.amk-hero .hero-h1 { font-size: clamp(38px, 3.6vw, 54px) !important; color: #fff; line-height: 1.12; margin-bottom: 18px; }
.amk-hero .hero-h1 em { color: var(--amk-accent); font-style: normal; }
.amk-hero .hero-body { color: rgba(255,255,255,0.7); line-height: 1.65; font-size: 15.5px !important; max-width: 460px; margin-bottom: 28px; }
.amk-hero .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.amk-hero .btn-primary { background: var(--amk-accent); color: #fff; padding: 15px 32px; text-decoration: none; font-weight: 600; font-size: 14.08px !important; letter-spacing: 0.05em; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; border: none; }
.amk-hero .btn-primary:hover { background: #3DA172; transform: translateY(-1px); }
.amk-hero .btn-ghost { border: 1.5px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85); padding: 15px 32px; text-decoration: none; font-weight: 500; font-size: 14.08px !important; letter-spacing: 0.05em; transition: all 0.2s; }
.amk-hero .btn-ghost:hover { border-color: var(--amk-accent); color: var(--amk-accent); }
.amk-hero .hero-stats { display: flex; gap: 40px; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); }
.amk-hero .stat-n { font-family: 'Playfair Display', serif; font-size: 32px !important; color: var(--amk-accent); font-weight: 700; }
.amk-hero .stat-l { font-size: 12.48px !important; color: rgba(255,255,255,0.55); margin-top: 2px; }
.amk-hero .hero-right { background: var(--amk-mid); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; background-size: cover; background-position: center; }
.amk-hero .hero-right.has-image { background-color: var(--amk-dark); }
.amk-hero .hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,67,50,0.82) 0%, rgba(27,67,50,0.5) 100%); }
.amk-hero .hero-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(82,183,136,0.06) 30px, rgba(82,183,136,0.06) 31px); }
.amk-hero .service-pills { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 2; }
.amk-hero .pill { background: rgba(27,67,50,0.8); backdrop-filter: blur(4px); border: 1px solid rgba(82,183,136,0.2); padding: 18px 24px; display: flex; align-items: center; gap: 16px; transition: all 0.25s; }
.amk-hero .pill:hover { background: rgba(27,67,50,0.95); border-color: rgba(82,183,136,0.5); transform: translateX(-4px); }
.amk-hero .pill-icon { width: 40px; height: 40px; background: var(--amk-accent); display: flex; align-items: center; justify-content: center; font-size: 17.6px !important; flex-shrink: 0; color: #fff; }
.amk-hero .pill-label { color: #fff; font-size: 14.72px !important; font-weight: 500; }
.amk-hero .pill-sub { color: rgba(255,255,255,0.5); font-size: 12px !important; margin-top: 2px; }
@media (max-width: 991px) {
  .amk-block.amk-hero { grid-template-columns: 1fr; }
  .amk-hero .hero-left { padding: 60px 7%; }
  .amk-hero .hero-right { padding: 40px 7%; }
}

/* ── ABOUT (tabs) ── */
.amk-block.amk-about { background: #fff; }
.amk-about .about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; margin-top: 60px; }
.amk-about .about-left { position: relative; }
.amk-about .about-image-block { background: var(--amk-dark); height: 480px; position: relative; overflow: hidden; }
.amk-about .about-image-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.amk-about .about-image-inner { width: 100%; height: 100%; background: linear-gradient(135deg, var(--amk-dark) 0%, var(--amk-mid) 100%); display: flex; align-items: center; justify-content: center; }
.amk-about .about-monogram { font-family: 'Playfair Display', serif; font-size: 160px !important; font-weight: 700; color: rgba(82,183,136,0.15); letter-spacing: -8px; }
.amk-about .about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--amk-accent); padding: 24px 28px; text-align: center; }
.amk-about .badge-n { font-family: 'Playfair Display', serif; font-size: 41.6px !important; font-weight: 700; color: #fff; display: block; }
.amk-about .badge-l { font-size: 12px !important; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.1em; }
.amk-about .about-tabs { display: flex; gap: 0; margin-bottom: 32px; border-bottom: 1px solid #E2EDE7; }
.amk-about .tab-btn { padding: 12px 20px; font-size: 13.6px !important; font-weight: 500; color: var(--amk-muted); background: none; border: none; cursor: pointer; border-bottom: 2.5px solid transparent; margin-bottom: -1px; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.amk-about .tab-btn.active { color: var(--amk-dark); border-bottom-color: var(--amk-accent); }
.amk-about .tab-content { line-height: 1.78; color: var(--amk-muted); font-size: 15.36px !important; }
.amk-about .tab-content p { font-size: 15.36px !important; }
.amk-about .about-bullets { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.amk-about .about-bullets li { display: flex; gap: 10px; font-size: 14.4px !important; color: var(--amk-muted); }
.amk-about .about-bullets li::before { content: '\203A'; color: var(--amk-accent); font-weight: 700; font-size: 17.6px !important; line-height: 1.4; flex-shrink: 0; }
@media (max-width: 991px) { .amk-about .about-grid { grid-template-columns: 1fr; gap: 56px; } }

/* ── SERVICES (tabs) ── */
.amk-block.amk-services { background: var(--amk-off); }
.amk-services .services-tabs-nav { display: inline-flex; gap: 4px; margin: 36px 0 32px; background: rgba(27,67,50,0.06); padding: 5px; border-radius: 12px; flex-wrap: wrap; }
.amk-services .srv-tab { padding: 11px 24px; font-size: 13.4px !important; font-weight: 600; color: var(--amk-muted); background: none; border: none; cursor: pointer; transition: all 0.2s; border-radius: 8px; display: inline-flex; align-items: center; gap: 9px; font-family: 'DM Sans', sans-serif; }
.amk-services .srv-tab:hover { color: var(--amk-dark); }
.amk-services .srv-tab.active { background: var(--amk-dark); color: #fff; }
.amk-services .srv-tab-c { font-size: 11px !important; font-weight: 700; opacity: 0.6; background: rgba(0,0,0,0.06); padding: 1px 7px; border-radius: 20px; }
.amk-services .srv-tab.active .srv-tab-c { background: rgba(255,255,255,0.18); opacity: 0.9; }
.amk-services .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.amk-services .svc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #e6efe9; border-radius: 14px; padding: 28px 26px 22px; text-decoration: none; color: inherit; position: relative; overflow: hidden; transition: transform 0.26s cubic-bezier(.2,.7,.3,1), box-shadow 0.26s, border-color 0.26s; }
.amk-services .svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--amk-accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.amk-services .svc-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(27,67,50,0.14); border-color: transparent; }
.amk-services .svc-card:hover::before { transform: scaleX(1); }
.amk-services .svc-num { font-size: 11px !important; font-weight: 700; color: var(--amk-accent); letter-spacing: 0.15em; margin-bottom: 13px; }
.amk-services .svc-title { font-family: 'Playfair Display', serif; font-size: 19px !important; color: var(--amk-text); margin-bottom: 11px; line-height: 1.3; }
.amk-services .svc-readmore:hover .svc-title { text-decoration: none; }
.amk-services .svc-desc { font-size: 13.2px !important; color: var(--amk-muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.amk-services .svc-bullets { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.amk-services .svc-tag { font-size: 11px !important; background: var(--amk-pale); color: var(--amk-mid); padding: 3px 10px; border-radius: 5px; }
.amk-services .svc-foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid #e6efe9; }
.amk-services .svc-readmore { display: inline-flex; align-items: center; gap: 7px; color: var(--amk-mid); font-weight: 600; font-size: 13px !important; text-decoration: none; transition: color 0.2s; }
.amk-services .svc-readmore:hover { color: var(--amk-dark); }
.amk-services .svc-readmore svg { width: 16px; height: 16px; transition: transform 0.25s; }
.amk-services .svc-card:hover .svc-readmore svg, .amk-services .svc-readmore:hover svg { transform: translateX(4px); }
@media (max-width: 991px) { .amk-services .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .amk-services .services-grid { grid-template-columns: 1fr; } }

/* ── WHY US (icon cards + lift) ── */
.amk-block.amk-why { background: var(--amk-dark); }
.amk-why .section-h2 { color: #fff; }
.amk-why .section-lead { color: rgba(255,255,255,0.6); }
.amk-why .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.amk-why .why-card { position: relative; background: rgba(255,255,255,0.04); border: 1px solid rgba(82,183,136,0.14); border-radius: 10px; padding: 32px 26px; overflow: hidden; transition: transform 0.28s cubic-bezier(.2,.7,.3,1), background 0.28s, border-color 0.28s, box-shadow 0.28s; }
.amk-why .why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--amk-accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.amk-why .why-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.07); border-color: rgba(82,183,136,0.4); box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(82,183,136,0.15); }
.amk-why .why-card:hover::before { transform: scaleX(1); }
.amk-why .why-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(82,183,136,0.14); display: flex; align-items: center; justify-content: center; color: var(--amk-accent); margin-bottom: 20px; transition: background 0.28s, color 0.28s; }
.amk-why .why-card:hover .why-icon { background: var(--amk-accent); color: #08160f; }
.amk-why .why-icon svg { width: 24px; height: 24px; }
.amk-why .why-title { font-family: 'Playfair Display', serif; font-size: 18px !important; color: #fff; margin-bottom: 10px; }
.amk-why .why-desc { font-size: 13.2px !important; color: rgba(255,255,255,0.55); line-height: 1.65; }
@media (max-width: 991px) { .amk-why .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .amk-why .why-grid { grid-template-columns: 1fr; } }

/* ── TEAM (redesigned) ── */
.amk-block.amk-team { background: var(--amk-off); }
.amk-team .team-head { max-width: 720px; margin-bottom: 52px; }
.amk-team .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.amk-team .team-card {
  background: #fff; border: 1px solid #E6F0EA; border-top: 3px solid transparent;
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.amk-team .team-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(27,67,50,0.14); border-top-color: var(--amk-accent); }
.amk-team .team-photo {
  position: relative; width: 100%; aspect-ratio: 4 / 5; max-height: 460px; overflow: hidden;
  background: linear-gradient(150deg, var(--amk-dark) 0%, var(--amk-mid) 100%);
  display: flex; align-items: center; justify-content: center;
}
.amk-team .team-photo::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 26px, rgba(82,183,136,0.07) 26px, rgba(82,183,136,0.07) 27px);
}
.amk-team .team-photo img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.amk-team .team-medallion {
  position: relative; z-index: 1;
  width: 104px; height: 104px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(82,183,136,0.12); border: 1.5px solid rgba(82,183,136,0.5);
  font-family: 'Playfair Display', serif; font-size: 34px !important; font-weight: 700;
  color: var(--amk-accent); letter-spacing: 1px;
}
.amk-team .team-body { padding: 28px 26px 30px; flex: 1; }
.amk-team .team-name { font-family: 'Playfair Display', serif; font-size: 19.2px !important; color: var(--amk-text); margin-bottom: 6px; line-height: 1.25; }
.amk-team .team-role { font-size: 11.52px !important; color: var(--amk-accent); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.amk-team .team-rule { display: block; width: 36px; height: 2px; background: var(--amk-accent); margin: 16px 0; opacity: 0.6; }
.amk-team .team-bio { font-size: 13.12px !important; color: var(--amk-muted); line-height: 1.7; }
@media (max-width: 991px) { .amk-team .team-grid { grid-template-columns: repeat(2, 1fr); } .amk-team .team-head { margin-bottom: 40px; } }
@media (max-width: 575px) { .amk-team .team-grid { grid-template-columns: 1fr; } }

/* ── COMMITMENT (gold editorial spread) ── */
.amk-block.amk-commitment { background: var(--amk-mid); padding: 0; }
.amk-commitment .commit-spread { display: grid; grid-template-columns: 5fr 7fr; min-height: 560px; }
.amk-commitment .commit-panel { background: var(--amk-dark); padding: 90px 6% 90px 7%; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.amk-commitment .commit-panel::after { content: '\201D'; position: absolute; bottom: 24px; right: 40px; font-family: 'Playfair Display', serif; font-size: 160px; color: rgba(82,183,136,0.18); line-height: 0.5; pointer-events: none; }
.amk-commitment .section-eyebrow { color: var(--amk-accent); }
.amk-commitment .section-eyebrow::before { background: var(--amk-accent); }
.amk-commitment .commit-h2 { font-family: 'Playfair Display', serif; font-size: 29px !important; font-weight: 600; color: rgba(255,255,255,0.75); margin: 20px 0 26px; line-height: 1.2; }
.amk-commitment .commit-quote { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; font-size: 33px !important; line-height: 1.3; color: #fff; border: 0; margin: 0; padding: 0; position: relative; }
.amk-commitment .commit-intro { color: rgba(255,255,255,0.62); line-height: 1.75; font-size: 14.5px !important; margin-top: 24px; max-width: 440px; position: relative; }
.amk-commitment .commit-list { padding: 60px 7% 60px 56px; display: flex; flex-direction: column; justify-content: center; }
.amk-commitment .commit-li { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.12); align-items: baseline; transition: padding 0.25s; }
.amk-commitment .commit-li:last-child { border-bottom: 0; }
.amk-commitment .commit-li:hover { padding-left: 8px; }
.amk-commitment .commit-n { font-family: 'Playfair Display', serif; font-size: 26px !important; font-weight: 700; color: var(--amk-accent); line-height: 1; }
.amk-commitment .commit-li-body h4 { font-family: 'Playfair Display', serif; font-size: 19px !important; color: #fff; margin-bottom: 6px; }
.amk-commitment .commit-li-body p { color: rgba(255,255,255,0.6); line-height: 1.65; font-size: 13.5px !important; margin: 0; }
@media (max-width: 991px) {
  .amk-commitment .commit-spread { grid-template-columns: 1fr; }
  .amk-commitment .commit-panel { padding: 60px 7%; }
  .amk-commitment .commit-panel::after { font-size: 120px; bottom: 16px; }
  .amk-commitment .commit-quote { font-size: 28px !important; }
  .amk-commitment .commit-list { padding: 44px 7%; }
}

/* ── RESOURCES ── */
.amk-block.amk-resources { background: var(--amk-off); }
.amk-resources .res-head .section-h2 { margin-bottom: 12px; }
.amk-resources .res-chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: flex-start; margin: 26px 0 8px; }
.amk-resources .res-chip { border: 1px solid #e6efe9; background: #fff; color: var(--amk-muted); font-size: 12.5px !important; font-weight: 600; padding: 6px 13px; border-radius: 8px; cursor: pointer; transition: all 0.16s; font-family: 'DM Sans', sans-serif; }
.amk-resources .res-chip:hover { border-color: var(--amk-accent); color: var(--amk-mid); }
.amk-resources .res-chip.on { background: var(--amk-dark); border-color: var(--amk-dark); color: #fff; }
.amk-resources .res-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; margin-top: 18px; border-bottom: 1px solid #e6efe9; }
.amk-resources .res-row { display: grid; grid-template-columns: 40px 1fr 18px; gap: 16px; align-items: start; padding: 18px 8px; text-decoration: none; color: inherit; border-top: 1px solid #e6efe9; transition: padding 0.18s; }
.amk-resources .res-row:hover { padding-left: 14px; }
.amk-resources .res-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--amk-pale); color: var(--amk-mid); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.amk-resources .res-ico svg { width: 20px; height: 20px; }
.amk-resources .res-row:hover .res-ico { background: var(--amk-mid); color: #fff; }
.amk-resources .res-body { display: flex; flex-direction: column; }
.amk-resources .res-tag { font-size: 10px !important; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: var(--amk-muted); margin-bottom: 5px; }
.amk-resources .res-title { font-family: 'Playfair Display', serif; font-size: 16.5px !important; color: var(--amk-text); margin-bottom: 5px; line-height: 1.25; }
.amk-resources .res-row:hover .res-title { text-decoration: underline; text-decoration-color: var(--amk-accent); text-underline-offset: 3px; }
.amk-resources .res-desc { font-size: 12.6px !important; color: var(--amk-muted); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.amk-resources .res-go { align-self: center; color: #c2d2c9; display: flex; transition: all 0.2s; }
.amk-resources .res-go svg { width: 17px; height: 17px; }
.amk-resources .res-row:hover .res-go { color: var(--amk-mid); transform: translateX(3px); }
@media (max-width: 860px) { .amk-resources .res-list { grid-template-columns: 1fr; gap: 0; } }

/* ── CONTACT ── */
/* Section padding moved onto .contact-inner so the map below can be full-bleed (edge-to-edge). */
.amk-block.amk-contact { background: var(--amk-dark); color: #fff; padding: 56px 0 0 0 !important; }
.amk-contact .contact-inner { position: relative; z-index: 2; padding: 0 7%; }
/* Visible Google Map — full-bleed strip flush to the section's bottom edge (premium
   "find us" pattern). Sits in its OWN band below the form so the green text stays readable. */
.amk-contact .contact-map-wrap { position: relative; margin-top: 44px; width: 100%;
  border-top: 1px solid rgba(82,183,136,0.30); }
/* Desaturate the map so its bright colours sit quietly in the dark-green section. */
.amk-contact .contact-map-frame { display: block; width: 100%; height: 360px; border: 0;
  filter: grayscale(0.55) saturate(0.72) brightness(0.9) contrast(1.03); }
/* Green tint laid over the map (multiply) so it reads as part of the theme; the top edge
   fades into the section above. pointer-events:none keeps the map interactive + button clickable. */
.amk-contact .contact-map-wrap::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  mix-blend-mode: multiply;
  background: linear-gradient(180deg, rgba(27,67,50,0.62) 0%, rgba(27,67,50,0.30) 15%, rgba(27,67,50,0.26) 100%); }
.amk-contact .contact-map-link { position: absolute; right: 24px; bottom: 24px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px; background: var(--amk-dark); color: #fff;
  padding: 13px 22px; font-size: 13.6px !important; font-weight: 700; letter-spacing: 0.03em;
  text-decoration: none; border-radius: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border: 1px solid rgba(82,183,136,0.45); transition: background 0.2s, transform 0.2s; }
.amk-contact .contact-map-link i { color: var(--amk-accent); }
.amk-contact .contact-map-link:hover { background: var(--amk-mid); transform: translateY(-2px); }
.amk-contact .section-h2 { color: #fff; }
.amk-contact .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; margin-top: 36px; }
.amk-contact .contact-info h3 { font-size: 20.8px !important; color: #fff; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.amk-contact .contact-block { margin-bottom: 18px; }
.amk-contact .contact-block label { font-size: 11.2px !important; color: var(--amk-accent); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.amk-contact .contact-block p { color: rgba(255,255,255,0.75); font-size: 14.72px !important; line-height: 1.65; margin: 0; }
.amk-contact .wa-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 13px 24px; font-size: 14.08px !important; font-weight: 600; text-decoration: none; margin-top: 16px; transition: background 0.2s; }
.amk-contact .wa-btn:hover { background: #1DBE5A; }
.amk-contact .contact-form { display: flex; flex-direction: column; gap: 16px; }
.amk-contact .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.amk-contact .form-group { display: flex; flex-direction: column; gap: 7px; }
.amk-contact .form-group label { font-size: 12px !important; color: rgba(255,255,255,0.55); font-weight: 500; letter-spacing: 0.05em; }
.amk-contact .form-group input, .amk-contact .form-group select, .amk-contact .form-group textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; padding: 13px 16px; font-size: 14.08px !important;
  font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.2s; width: 100%;
}
.amk-contact .form-group input::placeholder, .amk-contact .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.amk-contact .form-group input:focus, .amk-contact .form-group select:focus, .amk-contact .form-group textarea:focus { border-color: var(--amk-accent); }
.amk-contact .form-group select option { background: var(--amk-dark); }
.amk-contact .form-group textarea { resize: vertical; min-height: 100px; }
.amk-contact .form-submit { background: var(--amk-accent); color: #fff; border: none; padding: 16px 36px; font-size: 14.4px !important; font-weight: 600; letter-spacing: 0.06em; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; align-self: flex-start; margin-top: 8px; }
.amk-contact .form-submit:hover { background: #3DA172; }
.amk-contact .form-note { font-size: 13.6px !important; margin-top: 12px; }
.amk-contact .form-note.ok { color: var(--amk-light); }
.amk-contact .form-note.err { color: #ffb4b4; }
@media (max-width: 991px) {
  .amk-contact .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .amk-contact .form-row { grid-template-columns: 1fr; }
  .amk-block.amk-contact { padding-top: 52px !important; }
  .amk-contact .contact-map-wrap { margin-top: 40px; }
  .amk-contact .contact-map-frame { height: 300px; }
  .amk-contact .contact-map-link { right: 14px; bottom: 14px; padding: 10px 16px; }
}

/* Rows that wrap an AMK block: kill page-builder VERTICAL gap/padding so the
   coloured bands butt directly together like the mockup. Only zero the vertical
   margins — leaving horizontal margins to Bootstrap's `auto` so a default
   (contained) `.container` row stays centred instead of being left-aligned. */
.pb-content > section:has(.amk-block) { margin-top: 0 !important; margin-bottom: 0 !important; padding: 0 !important; }
.pb-content > section:has(.amk-block) > .row-grid,
.pb-content > section:has(.amk-block) > .container > .row-grid { gap: 0 !important; }

/* Responsive section padding */
@media (max-width: 991px) { .amk-block.amk-section, .amk-block.amk-commitment { padding: 70px 7%; } }
@media (max-width: 575px) {
  .amk-block.amk-section, .amk-block.amk-commitment { padding: 56px 6%; }
  .amk-block.amk-contact { padding: 56px 0 0 0 !important; }
  .amk-contact .contact-inner { padding: 0 6%; }
}
