*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --linen:      #E7ECE5;
  --linen-dk:   #D8DFD5;
  --mint:       #D4F4DD;
  --mint-dk:    #B2E8C0;
  /* Brand teal — decorative only (dots, borders, stripes, bg fills) */
  --teal:       #17BEBB;
  /* Accessible teal for TEXT on light bg — AA 5.8:1 on linen, 5.9:1 on mint */
  --teal-text:  #096462;
  /* Accessible teal for CTA bg — white text AA 5.4:1 */
  --teal-cta:   #0B7775;
  --teal-pale:  #EBF9F9;
  --coral:      #FF5E5B;
  --coral-dk:   #E04542;
  --coral-pale: #FFF0EF;
  --granite:    #4C5B5C;
  --granite-dk: #364243;
  --granite-lt: #6E8082;
  --ink:        #1C2626;
  --text-1:     #1C2626;
  --text-2:     #4C5B5C;
  --text-3:     #7A9294;
  --serif:      'DM Serif Display', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --display:    'Syne', system-ui, sans-serif;
  --ease:       cubic-bezier(0.32,0.72,0,1);
}

html{scroll-behavior:smooth;color-scheme:light}
body{font-family:var(--sans);background:var(--linen);color:var(--text-1);font-size:16px;line-height:1.7;overflow-x:hidden;font-weight:300}

/* NOISE */
body::before{content:'';position:fixed;inset:0;z-index:200;pointer-events:none;opacity:0.03;
background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")}

/* ── NAV ── */
nav{position:fixed;top:1.25rem;left:50%;transform:translateX(-50%);z-index:100;
display:flex;align-items:center;gap:2.5rem;
padding:0.625rem 0.625rem 0.625rem 1.5rem;
background:rgba(231,236,229,0.85);
backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
border:1px solid rgba(23,190,187,0.18);
border-radius:100px;white-space:nowrap;
box-shadow:0 2px 20px rgba(28,38,38,0.06),inset 0 1px 0 rgba(255,255,255,0.5)}

.nav-logo{font-family:var(--display);font-size:0.875rem;font-weight:700;
color:var(--ink);letter-spacing:0.04em;text-decoration:none;text-transform:uppercase}

.nav-links{display:flex;align-items:center;gap:1.75rem;list-style:none}
.nav-links a{font-size:0.8125rem;font-weight:400;color:var(--text-2);text-decoration:none;
letter-spacing:0.02em;transition:color 0.3s var(--ease)}
.nav-links a:hover{color:var(--ink)}

.nav-cta{display:flex;align-items:center;gap:0.625rem;
padding:0.625rem 1.125rem;background:var(--teal-cta);color:#fff;
border-radius:100px;font-size:0.8125rem;font-weight:500;text-decoration:none;
font-family:var(--display);letter-spacing:0.04em;
transition:transform 0.4s var(--ease),background 0.3s}
.nav-cta:hover{background:var(--teal-text);transform:translateY(-1px)}

/* ── HERO ── */
.hero{min-height:100dvh;display:grid;grid-template-columns:1.1fr 0.9fr;
align-items:center;padding:0 max(5rem,calc((100% - 1360px)/2));gap:5rem;position:relative;overflow:hidden}

.hero-accent-bar{position:absolute;left:0;top:0;width:4px;height:100%;
background:linear-gradient(to bottom,var(--teal) 0%,var(--coral) 60%,transparent 100%)}

.hero-content{position:relative;z-index:1;padding-top:5rem}

/* Eyebrow */
.eyebrow{display:inline-flex;align-items:center;gap:0.5rem;
padding:0.3rem 0.875rem 0.3rem 0.5rem;
background:var(--mint);
border-radius:100px;margin-bottom:1.875rem;border:1px solid var(--mint-dk)}
.eyebrow-dot{width:6px;height:6px;border-radius:50%;background:var(--teal-text);flex-shrink:0}
.eyebrow-text{font-family:var(--display);font-size:0.6875rem;font-weight:600;
letter-spacing:0.12em;text-transform:uppercase;color:var(--teal-text)}

.hero-headline{font-family:var(--serif);font-size:clamp(3rem,5.5vw,5rem);
font-weight:400;line-height:1.05;letter-spacing:-0.01em;color:var(--ink);margin-bottom:1.5rem}
.hero-headline em{font-style:italic;color:var(--teal)}

.hero-sub{font-size:1rem;color:var(--text-2);line-height:1.8;
max-width:480px;margin-bottom:2.75rem;font-weight:300}

.hero-actions{display:flex;align-items:center;gap:1rem;flex-wrap:wrap}

/* BUTTONS */
.btn-primary{display:inline-flex;align-items:center;gap:0.75rem;
padding:0.875rem 1rem 0.875rem 1.75rem;background:var(--ink);color:var(--linen);
border-radius:100px;font-size:0.9375rem;font-weight:500;text-decoration:none;
font-family:var(--display);letter-spacing:0.03em;
transition:transform 0.4s var(--ease),box-shadow 0.4s var(--ease)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 36px rgba(28,38,38,0.18)}

.btn-icon{width:2.25rem;height:2.25rem;border-radius:50%;
background:rgba(231,236,229,0.15);display:flex;align-items:center;justify-content:center;
font-size:0.875rem;transition:transform 0.4s var(--ease);flex-shrink:0}
.btn-primary:hover .btn-icon{transform:translate(2px,-2px) scale(1.1)}

.btn-ghost{display:inline-flex;align-items:center;gap:0.5rem;
padding:0.875rem 1.5rem;border:1px solid rgba(28,38,38,0.2);
color:var(--ink);border-radius:100px;font-size:0.9375rem;font-weight:400;
text-decoration:none;font-family:var(--display);letter-spacing:0.03em;
transition:border-color 0.3s,background 0.3s}
.btn-ghost:hover{background:var(--linen-dk);border-color:rgba(28,38,38,0.35)}

/* HERO RIGHT */
.hero-right{position:relative;z-index:1;padding-top:5rem;
display:flex;flex-direction:column;gap:1rem}

/* Double-bezel stat cards */
.bezel-outer{background:rgba(28,38,38,0.05);border:1px solid rgba(28,38,38,0.07);
padding:0.375rem;border-radius:1.625rem}
.bezel-inner{background:var(--linen);border-radius:calc(1.625rem - 0.375rem);
padding:1.5rem 1.75rem;
box-shadow:inset 0 1px 0 rgba(255,255,255,0.7)}

.stat-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

.stat-num{font-family:var(--serif);font-size:2.5rem;font-weight:400;
line-height:1;color:var(--ink);letter-spacing:-0.02em}
.stat-num sup{font-size:1.25rem;vertical-align:super}
.stat-label{font-size:0.8rem;color:var(--text-3);margin-top:0.375rem;font-weight:400;line-height:1.4}

.bezel-inner.teal-card{background:var(--teal);
box-shadow:inset 0 1px 0 rgba(255,255,255,0.25)}
.teal-card .stat-num{color:var(--ink)}
.teal-card .stat-label{color:rgba(28,38,38,0.72)}

.logo-strip{display:flex;flex-wrap:wrap;gap:0.5rem;margin-top:0.5rem}
.logo-pill{padding:0.35rem 0.875rem;background:rgba(28,38,38,0.06);
border:1px solid rgba(28,38,38,0.1);border-radius:100px;
font-size:0.6875rem;font-weight:500;color:var(--text-2);
font-family:var(--display);letter-spacing:0.05em;text-transform:uppercase}

/* ── SECTION BASE ── */
section{padding:7.5rem max(5rem,calc((100% - 1360px)/2))}
.section-label{display:inline-flex;align-items:center;gap:0.75rem;
font-family:var(--display);font-size:0.6875rem;font-weight:600;
letter-spacing:0.16em;text-transform:uppercase;color:var(--teal-text);margin-bottom:1.25rem}
.section-label::before{content:'';width:28px;height:1.5px;background:var(--teal-text)}

.section-heading{font-family:var(--serif);font-size:clamp(2.25rem,3.5vw,3.25rem);
font-weight:400;line-height:1.12;letter-spacing:-0.01em;color:var(--ink);margin-bottom:1.25rem}
.section-heading em{font-style:italic;color:var(--teal)}

/* ── ABOUT ── */
.about{background:var(--linen);padding:7.5rem max(5rem,calc((100% - 1360px)/2));
display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start}

.about .section-label{color:var(--teal-text)}
.about .section-label::before{background:var(--teal-text)}
.about .section-heading{color:var(--ink)}
.about .section-heading em{color:var(--teal)}

.about-italic{font-family:var(--serif);font-style:italic;font-size:1.0625rem;
color:var(--text-2);margin-bottom:2rem}

.about-body{font-size:1rem;color:var(--text-2);line-height:1.85;font-weight:300}
.about-body p+p{margin-top:1.25rem}
.about-body strong{color:var(--ink);font-weight:500}

/* Credential cards double-bezel on light */
.cred-outer{background:rgba(28,38,38,0.04);border:1px solid rgba(28,38,38,0.07);
padding:0.3rem;border-radius:1.25rem;margin-bottom:0.875rem}
.cred-inner{background:rgba(255,255,255,0.8);border-radius:calc(1.25rem - 0.3rem);
padding:1.25rem 1.5rem;box-shadow:inset 0 1px 0 rgba(255,255,255,0.9);
display:flex;align-items:flex-start;gap:1rem;
transition:background 0.3s var(--ease)}
.cred-outer:hover .cred-inner{background:rgba(255,255,255,0.95)}

.cred-icon-wrap{width:2.25rem;height:2.25rem;border-radius:0.625rem;flex-shrink:0;
background:rgba(11,119,117,0.12);display:flex;align-items:center;justify-content:center}
.cred-icon{width:16px;height:16px;stroke:var(--teal-text);fill:none;stroke-width:1.5;
stroke-linecap:round;stroke-linejoin:round}
.cred-title{font-weight:500;font-size:0.9rem;color:var(--ink);margin-bottom:0.25rem;
font-family:var(--display);letter-spacing:0.01em}
.cred-desc{font-size:0.8125rem;color:var(--text-3);line-height:1.55}

/* ── SERVICES ── */
.services{background:var(--linen)}

.services-intro{margin-bottom:4rem}
.services-desc{font-size:1rem;color:var(--text-2);line-height:1.8;
max-width:600px;margin-top:1.5rem;font-weight:300}

.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.125rem}

/* Service card double-bezel */
.svc-outer{background:rgba(28,38,38,0.04);border:1px solid rgba(28,38,38,0.07);
padding:0.3rem;border-radius:1.75rem;
transition:transform 0.4s var(--ease)}
.svc-outer:hover{transform:translateY(-5px)}

.svc-inner{background:var(--granite-dk);border-radius:calc(1.75rem - 0.3rem);
padding:2rem 2rem 1.75rem;min-height:280px;display:flex;flex-direction:column;
box-shadow:inset 0 1px 0 rgba(255,255,255,0.06);
position:relative;overflow:hidden}

.svc-stripe{position:absolute;top:0;left:0;right:0;height:3px;
background:var(--teal);transform:scaleX(0);transform-origin:left;
transition:transform 0.5s var(--ease)}
.svc-outer:hover .svc-stripe{transform:scaleX(1)}

.svc-num{font-family:var(--serif);font-size:1.5rem;font-weight:400;
color:rgba(23,190,187,0.75);margin-bottom:1.25rem;letter-spacing:-0.02em}

.svc-title{font-family:var(--serif);font-size:1.1875rem;font-weight:400;
color:var(--linen);line-height:1.25;margin-bottom:0.875rem}

.svc-desc{font-size:0.875rem;color:rgba(231,236,229,0.82);line-height:1.7;
flex:1;font-weight:300}

.svc-tags{display:flex;flex-wrap:wrap;gap:0.35rem;margin-top:auto;padding-top:1.25rem}
.tag{padding:0.25rem 0.75rem;border-radius:100px;
font-size:0.6375rem;font-weight:600;letter-spacing:0.06em;
font-family:var(--display);text-transform:uppercase}
.tag-teal{background:rgba(23,190,187,0.15);color:var(--mint-dk)}
.tag-coral{background:rgba(23,190,187,0.15);color:var(--mint-dk)}

/* ── ACHIEVEMENTS ── */
.achievements{background:var(--ink);padding:7.5rem max(5rem,calc((100% - 1360px)/2))}
.achievements .section-label{color:rgba(23,190,187,0.7)}
.achievements .section-label::before{background:var(--teal);opacity:0.7}
.achievements .section-heading{color:var(--linen)}
.achievements .section-heading em{color:var(--teal);font-style:italic}

.ach-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;margin-top:3.5rem}

.ach-outer{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);
padding:0.3rem;border-radius:1.625rem}
.ach-inner{background:rgba(255,255,255,0.04);border-radius:calc(1.625rem - 0.3rem);
padding:2rem;box-shadow:inset 0 1px 0 rgba(255,255,255,0.07);
transition:background 0.3s var(--ease)}
.ach-outer:hover .ach-inner{background:rgba(255,255,255,0.08)}

.ach-num{font-family:var(--serif);font-size:3rem;font-weight:400;
line-height:1;color:var(--teal);letter-spacing:-0.03em;margin-bottom:0.625rem}
.ach-num span{font-size:1.625rem;color:var(--teal)}
.ach-label{font-size:0.875rem;color:rgba(231,236,229,0.80);line-height:1.55;font-weight:300}

/* ── EXPERIENCE ── */
.experience{background:var(--linen-dk)}

.exp-layout{display:grid;grid-template-columns:5fr 7fr;gap:3rem;
align-items:start;margin-top:3.5rem}

.exp-item{padding:1.5rem 1.75rem;border-radius:1.125rem;
border:1px solid transparent;margin-bottom:0.75rem;cursor:pointer;
transition:border-color 0.3s var(--ease),background 0.3s var(--ease)}
.exp-item:hover{background:rgba(255,255,255,0.4)}
.exp-item.active{background:var(--linen);border-color:rgba(23,190,187,0.3)}

.exp-company{font-family:var(--display);font-weight:600;font-size:0.9rem;
color:var(--ink);margin-bottom:0.2rem;letter-spacing:0.02em}
.exp-role{font-size:0.8rem;color:var(--teal-text);font-weight:400;margin-bottom:0.3rem}
.exp-dates{font-size:0.75rem;color:var(--text-3)}

/* Double-bezel detail panel */
.detail-outer{background:rgba(28,38,38,0.05);border:1px solid rgba(28,38,38,0.08);
padding:0.4rem;border-radius:1.75rem;position:sticky;top:7rem}
.detail-inner{background:var(--linen);border-radius:calc(1.75rem - 0.4rem);
padding:2.5rem;box-shadow:inset 0 1px 0 rgba(255,255,255,0.8);
transition:opacity 0.45s var(--ease),transform 0.45s var(--ease)}

.detail-company{font-family:var(--display);font-size:0.6875rem;font-weight:700;
letter-spacing:0.12em;text-transform:uppercase;color:var(--teal-text);margin-bottom:0.25rem}
.detail-title{font-family:var(--serif);font-size:1.625rem;font-weight:400;
color:var(--ink);margin-bottom:0.375rem;line-height:1.2}
.detail-role{font-size:0.875rem;color:var(--text-3);margin-bottom:1.75rem;font-weight:300}

.detail-bullets{list-style:none;display:flex;flex-direction:column;gap:0.875rem}
.detail-bullets li{display:flex;gap:0.875rem;font-size:0.9375rem;
color:var(--text-2);line-height:1.65;font-weight:300}
.detail-bullets li::before{content:'';width:6px;height:6px;border-radius:50%;
background:var(--teal-text);flex-shrink:0;margin-top:0.55rem}

/* ── OFFER ── */
.offer{background:var(--linen);padding:7.5rem max(5rem,calc((100% - 1360px)/2))}
.offer .section-label{color:var(--teal-text)}
.offer .section-label::before{background:var(--teal-text)}
.offer .section-heading{color:var(--ink)}
.offer .section-heading em{color:var(--teal)}

.offer-layout{display:grid;grid-template-columns:1fr 1fr;gap:5rem;
align-items:start;margin-top:3.5rem}

.offer-left{}
.offer-right{display:flex;flex-direction:column;gap:1.125rem}

.offer-right-for-you{font-size:1rem;color:var(--text-2);
line-height:1.85;font-weight:300;margin-top:1.5rem}
.offer-right-for-you p+p{margin-top:1rem}
.offer-right-for-you strong{color:var(--ink);font-weight:500}

.offer-checklist{list-style:none;margin-top:1.75rem;display:flex;flex-direction:column;gap:0.75rem}
.offer-checklist li{display:flex;gap:0.875rem;font-size:0.9375rem;
color:var(--text-2);line-height:1.6;font-weight:300}
.offer-checklist li::before{content:'';width:6px;height:6px;border-radius:50%;
background:var(--teal-text);flex-shrink:0;margin-top:0.55rem}

.offer-outer{background:rgba(28,38,38,0.04);border:1px solid rgba(28,38,38,0.07);
padding:0.3rem;border-radius:1.75rem;transition:transform 0.4s var(--ease)}
.offer-outer:hover{transform:translateY(-4px)}
.offer-inner{background:rgba(255,255,255,0.8);border-radius:calc(1.75rem - 0.3rem);
padding:2.25rem;box-shadow:inset 0 1px 0 rgba(255,255,255,0.9)}

.offer-icon-line{display:flex;align-items:center;gap:0.625rem;margin-bottom:1.375rem}
.offer-svg{width:20px;height:20px;stroke:var(--teal-text);fill:none;
stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}

.offer-title{font-family:var(--serif);font-size:1.25rem;font-weight:400;
color:var(--ink);line-height:1.2;margin-bottom:0.75rem}

.offer-desc{font-size:0.875rem;color:var(--text-2);
line-height:1.75;font-weight:300}

/* ── QUOTE PILL DIVIDER ── */
.quote-pill{display:flex;justify-content:center;
padding:2.5rem max(5rem,calc((100% - 1360px)/2));background:var(--linen)}

/* ── GALLERY ── */
.gallery-section{background:var(--linen);
padding:2rem max(5rem,calc((100% - 1360px)/2)) 7.5rem}
.gallery-quote{font-family:var(--serif);font-size:clamp(2.25rem,4vw,3.5rem);
font-weight:400;line-height:1.12;letter-spacing:-0.01em;color:var(--ink);
margin-top:1.25rem;margin-bottom:3rem}
.gallery-quote em{font-style:italic;color:var(--teal)}
/* Desktop grid */
.gallery-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:0.375rem}
.gallery-cell{overflow:hidden;border-radius:0.375rem;cursor:pointer}
.gallery-cell img{width:100%;height:185px;object-fit:cover;display:block;
  transform:scale(1);transition:transform 0.45s cubic-bezier(0.32,0.72,0,1)}
.gallery-cell:hover img{transform:scale(1.08)}
/* Mobile strip (hidden on desktop) */
.gallery-strip{display:none}
/* Lightbox */
.gallery-lightbox{display:none;position:fixed;inset:0;background:rgba(28,38,38,0.92);
  z-index:1000;align-items:center;justify-content:center;
  backdrop-filter:blur(8px);cursor:zoom-out}
.gallery-lightbox.active{display:flex}
.gallery-lightbox img{max-width:90vw;max-height:90vh;object-fit:contain;
  border-radius:0.75rem;box-shadow:0 32px 80px rgba(0,0,0,0.5);cursor:default}
.gallery-lightbox-close{position:absolute;top:1.25rem;right:1.25rem;
  width:44px;height:44px;background:rgba(231,236,229,0.15);border:none;
  border-radius:50%;color:#fff;font-size:1.125rem;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background 0.2s}
.gallery-lightbox-close:hover{background:rgba(231,236,229,0.3)}

/* ── BRANDS ── */
.brands{background:var(--mint);padding:3.5rem max(5rem,calc((100% - 1360px)/2))}
.brands-label{font-family:var(--display);font-size:0.6875rem;font-weight:600;
letter-spacing:0.15em;text-transform:uppercase;
color:var(--teal-text);text-align:center;margin-bottom:2rem}
.brands-row{display:flex;flex-wrap:wrap;justify-content:center;gap:0.625rem}
.brand-pill{padding:0.5rem 1.25rem;border:1px solid rgba(28,38,38,0.15);
border-radius:100px;font-size:0.8125rem;font-weight:400;
color:var(--text-2);font-family:var(--display);letter-spacing:0.03em;
transition:border-color 0.3s,color 0.3s}
.brand-pill:hover{border-color:rgba(9,100,98,0.4);color:var(--ink)}

/* ── CTA ── */
.cta-section{padding:9rem max(5rem,calc((100% - 1360px)/2));text-align:center;background:var(--mint);
position:relative;overflow:hidden}

.cta-orb{position:absolute;left:50%;top:50%;
transform:translate(-50%,-50%);width:700px;height:700px;
border-radius:50%;background:rgba(23,190,187,0.12);pointer-events:none}

.cta-content{position:relative;z-index:1;max-width:600px;margin:0 auto}
.cta-heading{font-family:var(--serif);font-size:clamp(2.5rem,4.5vw,4rem);
font-weight:400;line-height:1.1;letter-spacing:-0.01em;color:var(--ink);
margin-bottom:1.25rem}
.cta-heading em{font-style:italic;color:var(--teal-text)}
.cta-sub{font-size:1rem;color:var(--granite);line-height:1.8;
margin-bottom:2.75rem;font-weight:300}

.cta-actions{display:flex;align-items:center;justify-content:center;
gap:1rem;flex-wrap:wrap;margin-top:0}

/* ── FOOTER ── */
footer{padding:2.25rem max(5rem,calc((100% - 1360px)/2));background:var(--ink);
display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.footer-logo{font-family:var(--display);font-size:0.9375rem;font-weight:700;
color:var(--linen);text-decoration:none;letter-spacing:0.06em;text-transform:uppercase}
.footer-tagline{font-size:0.8125rem;color:rgba(231,236,229,0.45);
font-style:italic;font-family:var(--serif)}
.footer-links{display:flex;gap:1.5rem;list-style:none}
.footer-links a{font-size:0.8125rem;color:rgba(231,236,229,0.4);
text-decoration:none;transition:color 0.3s}
.footer-links a:hover{color:var(--linen)}
.footer-copy{font-size:0.75rem;color:rgba(231,236,229,0.25)}

/* DIVIDER */
.divider{height:1px;background:rgba(28,38,38,0.1)}

/* REVEAL */
.reveal{opacity:0;transform:translateY(28px);
transition:opacity 0.85s var(--ease),transform 0.85s var(--ease)}
.reveal.visible{opacity:1;transform:translateY(0)}
.d1{transition-delay:0.08s}.d2{transition-delay:0.16s}
.d3{transition-delay:0.24s}.d4{transition-delay:0.32s}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .hero{padding:0 2.5rem;gap:2.5rem}
  .services-grid{grid-template-columns:1fr 1fr}
  .ach-grid{grid-template-columns:1fr 1fr}
  .offer-grid{grid-template-columns:1fr 1fr}
  .offer-outer.wide{grid-column:span 2}
  section{padding:6rem 2.5rem}
  .about{padding:6rem 2.5rem;gap:3rem}
  .achievements{padding:6rem 2.5rem}
  .offer{padding:6rem 2.5rem}
}
@media(max-width:768px){
  nav{padding:0.5rem 0.75rem;gap:0.75rem}
  .nav-links{display:none}
  /* Flatten hero into a flex column so photo can be ordered between sub and CTA */
  .hero{display:flex;flex-direction:column;padding:5.5rem 1.5rem 3rem;min-height:auto;gap:0}
  .hero-accent-bar{display:none}
  .hero-content{display:contents}
  .hero-headline{order:1}
  .hero-sub{order:2;margin-bottom:0}
  .hero-right{order:3;padding-top:0;margin:1.5rem 0;align-items:stretch}
  .hero-actions{order:4;flex-direction:column;align-items:stretch}
  section{padding:4rem 1.5rem}
  .about{grid-template-columns:1fr;padding:4rem 1.5rem}
  .services-grid{grid-template-columns:1fr}
  .services-desc{margin-top:1rem}
  .ach-grid{grid-template-columns:1fr 1fr}
  .exp-layout{display:none}
  .detail-outer{display:none}
  .offer-grid{grid-template-columns:1fr}
  .offer-outer.wide{grid-column:span 1}
  .offer-inner-wide{grid-template-columns:1fr}
  .offer-layout{grid-template-columns:1fr;gap:2.5rem}
  .brands{padding:3rem 1.5rem}
  .quote-pill{padding:2rem 1.5rem}
  .gallery-section{padding:1.5rem 1.5rem 4rem}
  .gallery-grid{display:none}
  .gallery-strip{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;gap:0.75rem;padding-bottom:1rem;
    margin-top:1.5rem;scrollbar-width:none}
  .gallery-strip::-webkit-scrollbar{display:none}
  .gallery-strip-item{flex:0 0 72vw;scroll-snap-align:start;
    height:240px;border-radius:0.75rem;overflow:hidden}
  .gallery-strip-item img{width:100%;height:100%;object-fit:cover;display:block}
  .cta-section{padding:5rem 1.5rem}
  footer{padding:2rem 1.5rem;flex-direction:column;text-align:center}
}
@media(max-width:480px){
  .ach-grid{grid-template-columns:1fr}
  .stat-row{grid-template-columns:1fr 1fr}
  .btn-primary,.btn-ghost{justify-content:center}
}

/* ── MOBILE EXPERIENCE CAROUSEL ── */
.exp-carousel{display:none}
@media(max-width:768px){
  .exp-carousel{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;gap:1rem;
    margin:2rem -1.5rem 0;padding:0 1.5rem 2rem;scrollbar-width:none}
  .exp-carousel::-webkit-scrollbar{display:none}
  .exp-card{flex:0 0 82vw;scroll-snap-align:start;background:var(--linen);
    border:1px solid rgba(28,38,38,0.08);border-radius:1.25rem;padding:1.5rem;
    display:flex;flex-direction:column}
  .exp-card-logo{height:32px;width:auto;max-width:120px;object-fit:contain;
    margin-bottom:0.875rem;filter:grayscale(15%) opacity(0.85)}
  .exp-card-co{font-family:var(--display);font-size:0.6875rem;font-weight:700;
    letter-spacing:0.1em;text-transform:uppercase;color:var(--teal-text);margin-bottom:0.375rem}
  .exp-card-title{font-family:var(--serif);font-size:1.25rem;font-weight:400;
    color:var(--ink);line-height:1.2;margin-bottom:0.25rem}
  .exp-card-role{font-size:0.8125rem;color:var(--text-3);margin-bottom:1.25rem}
  .exp-card-bullets{list-style:none;display:flex;flex-direction:column;gap:0.625rem}
  .exp-card-bullets li{font-size:0.875rem;color:var(--text-2);line-height:1.6;
    display:flex;gap:0.625rem}
  .exp-card-bullets li::before{content:'';width:5px;height:5px;border-radius:50%;
    background:var(--teal-text);flex-shrink:0;margin-top:0.55rem}
}

/* ── AVATAR / HERO PHOTO ── */
.hero-photo-wrap{position:relative;width:100%;max-width:420px;align-self:flex-start;margin-top:1rem}
.hero-photo-bezel{background:rgba(28,38,38,0.05);border:1px solid rgba(28,38,38,0.08);
  padding:0.5rem;border-radius:2.25rem}
.hero-photo-inner{border-radius:calc(2.25rem - 0.5rem);overflow:hidden;
  aspect-ratio:4/5;position:relative;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.7)}
.hero-photo-inner img{width:100%;height:100%;object-fit:cover;object-position:center top;
  display:block;transition:transform 0.7s cubic-bezier(0.32,0.72,0,1)}
.hero-photo-bezel:hover .hero-photo-inner img{transform:scale(1.03)}

/* ── EXPERIENCE LOGOS ── */
.exp-logo{height:28px;width:auto;max-width:110px;object-fit:contain;
  display:block;margin-bottom:0.625rem;
  filter:grayscale(100%) opacity(0.55);
  transition:filter 0.3s}
.exp-item.active .exp-logo,.exp-item:hover .exp-logo{filter:grayscale(0%) opacity(1)}
.detail-logo{height:32px;width:auto;max-width:130px;object-fit:contain;
  display:block;margin-bottom:1rem;filter:grayscale(20%) opacity(0.85)}
