
@font-face {
  font-family: "Geist";
  src: url("./fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-geist: "Geist";
  --ink: #11100e;
  --paper: #f5f2e9;
  --white: #fffefa;
  --orange: #f15a24;
  --orange-deep: #d94716;
  --soft: #e9e6de;
  --line: rgba(17, 16, 14, 0.16);
  --muted: #67635d;
  --green: #1fbf68;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist), Arial, Helvetica, sans-serif;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
h1, h2, h3, h4, h5, h6, button, input, textarea, select {
  font-family: var(--font-geist), Arial, Helvetica, sans-serif;
  font-style: normal;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 100;
  padding: 12px 16px; border-radius: 999px; background: var(--ink); color: var(--white);
  font-size: 13px; font-weight: 700; transform: translateY(-180%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:where(a, button, input, textarea, select, summary):focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.page-shell { width: min(1440px, calc(100% - 40px)); margin-inline: auto; }
.section-space { margin-top: 128px; content-visibility: auto; contain-intrinsic-size: auto 640px; }

.site-header { position: sticky; top: 0; z-index: 50; padding: 14px 20px 0; }
.nav-shell {
  width: min(1440px, 100%); margin: 0 auto; min-height: 66px; padding: 8px 10px 8px 18px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  background: rgba(255, 254, 250, 0.92); border: 1px solid rgba(17, 16, 14, 0.12);
  border-radius: 999px; backdrop-filter: blur(16px); box-shadow: 0 8px 24px rgba(20, 16, 10, 0.06);
}
.brand { display: grid; grid-template-columns: 38px auto; grid-template-rows: 18px 15px; align-items: center; width: max-content; }
.brand-mark { grid-row: 1 / 3; width: 30px; height: 38px; border: 2px solid var(--orange); border-radius: 50% 50% 46% 46%; display: grid; place-items: center; transform: rotate(8deg); }
.brand-mark span { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); }
.brand-name { font-size: 14px; line-height: 1; letter-spacing: 0.08em; font-weight: 760; }
.brand-detail { font-size: 10px; color: var(--muted); letter-spacing: 0.02em; }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; }
.main-nav a { position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--orange); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.mobile-menu { display: none; position: relative; justify-self: end; }
.mobile-menu summary { min-width: 44px; min-height: 44px; display: grid; place-items: center; list-style: none; cursor: pointer; font-size: 12px; font-weight: 680; text-transform: uppercase; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav { position: absolute; top: 48px; right: 0; min-width: 180px; max-width: calc(100vw - 24px); padding: 14px; display: grid; gap: 4px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 50px rgba(17,16,14,.15); }
.mobile-menu nav a { padding: 11px 12px; border-radius: 10px; font-size: 14px; }
.nav-cta { justify-self: end; }
.button { display: inline-flex; gap: 24px; align-items: center; justify-content: center; min-height: 48px; padding: 0 8px 0 20px; border: 0; border-radius: 999px; font-size: 13px; font-weight: 620; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.button span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; font-size: 15px; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark span { background: var(--white); color: var(--ink); }
.button-light { background: var(--white); color: var(--ink); }
.button-light span { background: var(--ink); color: var(--white); }

.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 8px; text-transform: uppercase; font-size: 11px; line-height: 1.2; letter-spacing: .08em; font-weight: 680; }
.eyebrow span { color: var(--orange); }
.eyebrow-light { color: var(--white); }
.eyebrow-light span { color: #ffb088; }

.hero { padding-top: 20px; }
.hero-media { position: relative; min-height: min(790px, calc(100vh - 110px)); min-height: min(790px, calc(100dvh - 110px)); overflow: hidden; border-radius: 32px; background: #eee9df; color: var(--ink); }
.hero-media > img, .hero-media > picture > img { object-fit: cover; object-position: center center; }
.hero-media > picture, .stat-card-image > picture, .service-image > picture, .about-image > picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media > picture > img, .stat-card-image > picture > img, .service-image > picture > img, .about-image > picture > img { width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,244,236,.9) 0%, rgba(247,244,236,.72) 34%, rgba(247,244,236,.08) 57%, transparent 72%); }
.hero-copy { position: absolute; left: clamp(28px, 5.5vw, 86px); top: 50%; z-index: 2; width: min(590px, 43%); transform: translateY(-50%); }
.hero-copy h1 { margin: 0 0 24px; font-size: clamp(3.3rem, 5.8vw, 6.5rem); line-height: .89; letter-spacing: -.06em; font-weight: 660; }
.hero-copy > p { max-width: 470px; margin: 0 0 30px; font-size: clamp(15px, 1.25vw, 18px); line-height: 1.5; color: #504c46; }
.hero-stamp { position: absolute; right: 34px; bottom: 34px; z-index: 2; width: 184px; padding: 22px; display: flex; align-items: flex-end; gap: 10px; background: var(--orange); border-radius: 24px; color: var(--white); }
.stamp-number { font-size: 54px; line-height: .8; font-weight: 700; letter-spacing: -.06em; }
.hero-stamp > span:last-child { font-size: 11px; line-height: 1.2; text-transform: uppercase; }

.intro-section { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
.intro-copy { max-width: 920px; }
.intro-copy h2, .who-heading h2, .service-copy h2, .story-copy h2, .timeline-title h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.5rem); line-height: .94; letter-spacing: -.055em; font-weight: 570; }
.intro-copy > p { max-width: 650px; margin: 28px 0 32px; font-size: 18px; line-height: 1.5; color: var(--muted); }

.stat-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 14px; margin-top: 72px; }
.stat-card { min-height: 350px; border-radius: 28px; overflow: hidden; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; }
.stat-card-image > img { object-fit: cover; }
.stat-card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,.36), transparent 55%); }
.image-label { position: relative; z-index: 2; width: max-content; background: var(--white); padding: 10px 14px; border-radius: 999px; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.stat-card-orange { background: var(--orange); color: var(--white); }
.stat-card-cream { background: #e2ded4; }
.stat-big { margin-bottom: auto; font-size: clamp(4rem, 7vw, 7.2rem); line-height: .8; letter-spacing: -.07em; font-weight: 680; }
.stat-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 640; }
.stat-card p { margin: 0; max-width: 320px; font-size: 14px; line-height: 1.45; opacity: .78; }

.who-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; align-items: start; }
.audience-list { border-top: 1px solid var(--line); }
.audience-list article { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.audience-list article > span, .service-points article > span, .contact-card-heading > span { font-size: 12px; color: var(--orange); font-weight: 720; }
.audience-list h3 { margin: 0 0 8px; font-size: 24px; letter-spacing: -.025em; }
.audience-list p { margin: 0; max-width: 520px; font-size: 15px; line-height: 1.5; color: var(--muted); }

.service-section { display: grid; grid-template-columns: 1.05fr .95fr; background: #e9e6df; border-radius: 32px; overflow: hidden; }
.service-image { position: relative; min-height: 680px; }
.service-image > img { object-fit: cover; }
.image-quote { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 18px 22px; border-radius: 18px; background: rgba(17,16,14,.86); color: var(--white); font-size: 14px; backdrop-filter: blur(12px); }
.service-copy { padding: clamp(40px, 6vw, 86px); }
.service-points { margin-top: 70px; }
.service-points article { display: grid; grid-template-columns: 38px 1fr; column-gap: 16px; padding: 22px 0; border-top: 1px solid var(--line); }
.service-points h3 { margin: 0 0 8px; font-size: 18px; }
.service-points p { grid-column: 2; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.48; }

.cta-panel { min-height: 440px; padding: clamp(38px, 6vw, 82px); border-radius: 32px; display: flex; justify-content: space-between; align-items: flex-end; background: var(--orange); color: var(--white); }
.cta-panel h2 { margin: 0; font-size: clamp(3.2rem, 6vw, 6.6rem); line-height: .88; letter-spacing: -.065em; font-weight: 610; }

.inner-hero { padding-top: 120px; padding-bottom: 70px; display: grid; grid-template-columns: 1.5fr .5fr; gap: 6vw; align-items: end; }
.inner-hero h1, .contact-hero h1 { max-width: 1050px; margin: 0; font-size: clamp(4rem, 8vw, 9rem); line-height: .86; letter-spacing: -.07em; font-weight: 620; }
.inner-hero-note p, .contact-hero > p { margin: 0; font-size: 17px; line-height: 1.55; color: var(--muted); }
.about-image { position: relative; min-height: 650px; border-radius: 32px; overflow: hidden; }
.about-image > img, .about-image > picture > img { object-fit: cover; object-position: center 44%; }
.about-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,.32), transparent 55%); }
.about-image-tag { position: absolute; z-index: 2; left: 28px; bottom: 28px; width: 170px; aspect-ratio: 1; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--ink); color: var(--orange); text-transform: uppercase; transform: rotate(-7deg); }
.about-image-tag strong { font-size: 27px; }
.about-image-tag span { font-size: 10px; letter-spacing: .14em; }
.story-section { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.story-copy .lead { max-width: 800px; margin: 34px 0 50px; font-size: clamp(1.4rem, 2vw, 2rem); line-height: 1.3; letter-spacing: -.02em; }
.story-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; max-width: 900px; }
.story-columns p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--muted); }
.values-section { padding: clamp(36px, 6vw, 80px); border-radius: 32px; background: var(--ink); color: var(--white); }
.values-intro { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.values-intro h2 { margin: 0; font-size: clamp(3rem, 5.6vw, 6rem); line-height: .9; letter-spacing: -.06em; font-weight: 590; text-align: right; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 80px; }
.value-grid article { min-height: 280px; padding: 28px; border-radius: 24px; display: flex; flex-direction: column; justify-content: flex-end; background: #262421; }
.value-grid article:nth-child(2) { background: var(--orange); }
.value-grid span { margin-bottom: auto; font-size: 12px; color: #ffb088; }
.value-grid h3 { margin: 0 0 10px; font-size: 26px; }
.value-grid p { margin: 0; color: rgba(255,255,255,.68); line-height: 1.5; }
.timeline-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; }
.timeline { border-top: 1px solid var(--line); }
.timeline article { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.timeline-year { font-size: 18px; color: var(--orange); font-weight: 700; }
.timeline h3 { margin: 0 0 8px; font-size: 22px; }
.timeline p { margin: 0; color: var(--muted); line-height: 1.5; }

.learn-hero { padding-top: 120px; padding-bottom: 78px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: end; }
.learn-hero h1 { max-width: 1020px; margin: 0; font-size: clamp(4.5rem, 8.5vw, 9.5rem); line-height: .84; letter-spacing: -.072em; font-weight: 620; }
.learn-hero h1 span { color: var(--orange); }
.learn-hero > p { margin: 0; max-width: 490px; font-size: 17px; line-height: 1.55; color: var(--muted); }
.learn-feature { min-height: 610px; display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; border-radius: 32px; background: var(--ink); color: var(--white); }
.learn-feature-image { position: relative; min-height: 610px; }
.learn-feature-image > img { object-fit: cover; }
.learn-feature-copy { padding: clamp(40px, 6vw, 88px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.post-meta { display: block; color: var(--orange); font-size: 10px; line-height: 1.3; letter-spacing: .09em; text-transform: uppercase; font-weight: 720; }
.learn-feature-copy h2 { margin: 26px 0 24px; font-size: clamp(2.8rem, 4.8vw, 5.3rem); line-height: .9; letter-spacing: -.055em; font-weight: 590; }
.learn-feature-copy > p { max-width: 530px; margin: 0 0 34px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.6; }
.learn-section-heading { margin-bottom: 58px; display: flex; justify-content: space-between; gap: 40px; align-items: flex-end; }
.learn-section-heading h2 { margin: 0; font-size: clamp(3rem, 5.8vw, 6.2rem); line-height: .9; letter-spacing: -.06em; font-weight: 590; text-align: right; }
.learn-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.learn-grid-wordpress { margin-top: 0; }
.learn-card { min-width: 0; overflow: hidden; border-radius: 26px; background: #e4e0d6; }
.learn-card-image { position: relative; min-height: 320px; display: block; overflow: hidden; background: #d7d1c5; }
.learn-card-image > picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.learn-card-image > img, .learn-card-image > picture > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.learn-card-image > span { position: absolute; right: 18px; top: 18px; z-index: 2; min-width: 42px; height: 42px; padding: 0 10px; display: grid; place-items: center; border-radius: 999px; background: var(--white); font-size: 11px; font-weight: 720; }
.learn-card-copy { padding: 28px; }
.learn-card-copy h2, .learn-card-copy h3 { margin: 17px 0 14px; font-size: clamp(1.55rem, 2.2vw, 2.25rem); line-height: 1.02; letter-spacing: -.04em; }
.learn-card-copy > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.learn-read-link { display: inline-flex; gap: 9px; margin-top: 24px; padding-bottom: 3px; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 680; }
.learn-pagination { margin-top: 48px; }
.learn-pagination .nav-links { display: flex; align-items: center; gap: 9px; }
.learn-pagination .page-numbers { min-width: 42px; height: 42px; padding: 0 12px; display: grid; place-items: center; border-radius: 999px; background: #e4e0d6; font-size: 12px; }
.learn-pagination .current { background: var(--ink); color: var(--white); }
.learn-empty { min-height: 430px; padding: clamp(38px, 6vw, 78px); border-radius: 32px; background: #e4e0d6; }
.learn-empty h2 { max-width: 850px; margin: 0 0 24px; font-size: clamp(2.8rem, 5vw, 5.5rem); line-height: .94; letter-spacing: -.055em; }
.learn-empty > p:last-child { max-width: 590px; color: var(--muted); font-size: 16px; line-height: 1.6; }
.single-post { padding-top: 120px; }
.single-post-header { max-width: 1100px; margin: 0 auto 64px; }
.single-post-header h1 { margin: 0; font-size: clamp(4rem, 7.5vw, 8rem); line-height: .88; letter-spacing: -.065em; }
.single-post-meta { margin-top: 34px; display: flex; gap: 22px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.single-post-image { position: relative; min-height: 620px; margin: 0; overflow: hidden; border-radius: 32px; }
.single-post-image img { width: 100%; height: 100%; object-fit: cover; }
.single-post-content { max-width: 820px; margin: 72px auto 0; font-size: 17px; line-height: 1.75; }
.single-post-content h2, .single-post-content h3 { line-height: 1.05; letter-spacing: -.035em; }
.single-post-footer { max-width: 820px; margin: 54px auto 0; }

.contact-hero { padding-top: 120px; padding-bottom: 78px; display: grid; grid-template-columns: 1.4fr .6fr; gap: 8vw; align-items: end; }
.contact-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 16px; align-items: start; }
.contact-card, .whatsapp-card, .details-card { border-radius: 28px; }
.contact-form-card { padding: clamp(28px, 4.5vw, 68px); background: var(--white); }
.contact-card-heading { display: flex; gap: 24px; align-items: baseline; margin-bottom: 46px; }
.contact-card-heading h2 { margin: 0; font-size: clamp(2rem, 3.3vw, 3.6rem); line-height: 1; letter-spacing: -.045em; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 9px; font-size: 12px; font-weight: 650; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 15px 16px; color: var(--ink); background: #f7f5ef; outline: none; transition: border-color .2s, box-shadow .2s; }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(241,90,36,.12); }
.schedule-field { margin: 0; padding: 0; border: 0; }
.schedule-field legend { margin-bottom: 9px; font-size: 12px; font-weight: 650; }
.toggle-group { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.contact-form .toggle-option { position: relative; display: block; cursor: pointer; }
.contact-form .toggle-option input { position: absolute; width: 1px; height: 1px; margin: 0; padding: 0; opacity: 0; }
.toggle-option span { min-height: 50px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 14px; background: #f7f5ef; transition: border-color .2s, background .2s, color .2s, box-shadow .2s; }
.toggle-option input:checked + span { border-color: var(--ink); background: var(--ink); color: var(--white); }
.toggle-option input:focus-visible + span { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(241,90,36,.12); }
.form-submit { align-self: flex-start; margin-top: 8px; }
.form-note { margin: -8px 0 0; font-size: 11px; line-height: 1.5; color: var(--muted); }
.form-success { min-height: 460px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.form-success > span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--orange); color: var(--white); font-size: 24px; }
.form-success h2 { margin: 30px 0 12px; font-size: 48px; letter-spacing: -.045em; }
.form-success p { max-width: 520px; color: var(--muted); line-height: 1.55; }
.text-button { padding: 0; border: 0; border-bottom: 1px solid; background: transparent; cursor: pointer; }
.contact-aside { display: grid; gap: 16px; }
.whatsapp-card { padding: clamp(28px, 4vw, 54px); background: var(--orange); color: var(--white); }
.whatsapp-card .contact-card-heading > span { color: #ffd2bf; }
.whatsapp-card p { margin: -8px 0 34px; max-width: 440px; color: rgba(255,255,255,.82); line-height: 1.5; }
.whatsapp-main { width: 100%; }
.details-card { padding: clamp(28px, 4vw, 50px); background: #dfdbd1; }
.details-card > div { padding: 22px 0; border-top: 1px solid var(--line); }
.details-card > div:first-child { border-top: 0; padding-top: 0; }
.details-card > div:last-child { padding-bottom: 0; }
.detail-label { display: block; margin-bottom: 8px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; }
.details-card a, .details-card p { margin: 0; font-size: 17px; line-height: 1.45; }
.contact-strip { padding: 22px 32px; display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-transform: uppercase; font-size: clamp(13px, 1.7vw, 23px); letter-spacing: .04em; font-weight: 650; }
.contact-strip span::before { content: "•"; margin-right: 18px; color: var(--orange); }

.site-footer { width: min(1440px, calc(100% - 40px)); margin: 128px auto 22px; padding: clamp(30px, 4.5vw, 64px); border-radius: 28px; background: #ddd9cf; }
.footer-top { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; }
.footer-note { margin: 28px 0 0; color: var(--muted); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; font-size: 13px; line-height: 1.5; }
.footer-label { margin-bottom: 8px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; }
.footer-bottom { margin-top: 64px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 60; display: flex; align-items: center; gap: 9px; min-height: 48px; padding: 0 18px; border-radius: 999px; background: var(--ink); color: var(--white); box-shadow: 0 12px 32px rgba(0,0,0,.18); font-size: 12px; font-weight: 650; transition: transform .2s; }
.whatsapp-dot { color: var(--green); font-size: 17px; }

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
  .mobile-menu nav a:hover { background: var(--paper); }
  .whatsapp-float:hover { transform: translateY(-3px); }
  .learn-card:hover .learn-card-image > img, .learn-card:hover .learn-card-image > picture > img { transform: scale(1.025); }
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .mobile-menu { display: block; }
  .nav-shell { grid-template-columns: 1fr auto auto; column-gap: 14px; }
  .hero-stamp { width: 150px; }
  .intro-section, .story-section, .who-section, .timeline-section { grid-template-columns: 1fr; }
  .section-kicker { margin-bottom: 24px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-card-image { grid-column: 1 / 3; }
  .service-section { grid-template-columns: 1fr; }
  .service-image { min-height: 520px; }
  .inner-hero, .contact-hero, .learn-hero { grid-template-columns: 1fr; padding-top: 90px; }
  .inner-hero-note, .contact-hero > p, .learn-hero > p { max-width: 650px; }
  .about-image { min-height: 520px; }
  .values-intro { display: block; }
  .values-intro h2 { text-align: left; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 230px; }
  .contact-layout { grid-template-columns: 1fr; }
  .learn-feature { grid-template-columns: 1fr; }
  .learn-feature-image { min-height: 480px; }
  .learn-grid { grid-template-columns: 1fr 1fr; }
  .learn-card-image { min-height: 300px; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .page-shell, .site-footer { width: min(100% - 24px, 1440px); }
  .site-header { padding: 8px 12px 0; }
  .nav-shell { min-height: 58px; padding-left: 13px; }
  .brand { grid-template-columns: 32px auto; }
  .brand-mark { width: 25px; height: 32px; }
  .brand-detail { display: none; }
  .brand-name { grid-row: 1 / 3; align-self: center; }
  .nav-cta { min-height: 40px; padding-left: 15px; gap: 10px; }
  .nav-cta span { width: 28px; height: 28px; }
  .nav-cta { display: none; }
  .section-space { margin-top: 86px; }
  .hero { padding-top: 10px; }
  .hero-media { min-height: 720px; border-radius: 24px; }
  .hero-media > img, .hero-media > picture > img { object-position: 100% center; }
  .hero-media > picture > img { object-position: center center; }
  .hero-shade { background: linear-gradient(180deg, rgba(247,244,236,.02) 0%, rgba(247,244,236,.12) 30%, rgba(247,244,236,.94) 52%, rgba(247,244,236,.99) 100%); }
  .hero-copy { left: 24px; right: 24px; top: auto; bottom: 38px; width: auto; transform: none; }
  .hero-copy h1 { font-size: clamp(3.2rem, 14vw, 5rem); }
  .hero-copy > p { padding-right: 0; }
  .hero-stamp { top: 115px; right: 18px; bottom: auto; width: 112px; min-height: 112px; padding: 15px; display: grid; place-content: center; gap: 5px; border-radius: 20px; }
  .hero-stamp .stamp-number { font-size: 48px; }
  .hero-stamp > span:last-child { font-size: 9px; }
  .stamp-number { font-size: 40px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-card-image { grid-column: auto; }
  .stat-card { min-height: 300px; border-radius: 22px; }
  .audience-list article { grid-template-columns: 44px 1fr; }
  .service-section, .cta-panel, .about-image, .values-section, .contact-card, .whatsapp-card, .details-card { border-radius: 24px; }
  .service-image { min-height: 430px; }
  .service-copy { padding: 36px 24px; }
  .service-points { margin-top: 48px; }
  .cta-panel { min-height: 480px; padding: 34px 24px; flex-direction: column; align-items: flex-start; }
  .inner-hero, .contact-hero, .learn-hero { padding-top: 72px; padding-bottom: 46px; }
  .inner-hero h1, .contact-hero h1, .learn-hero h1 { font-size: clamp(3.8rem, 17vw, 6rem); }
  .about-image { min-height: 470px; }
  .about-image-tag { width: 135px; left: 18px; bottom: 18px; }
  .story-columns { grid-template-columns: 1fr; gap: 24px; }
  .value-grid { margin-top: 50px; }
  .timeline article { grid-template-columns: 80px 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 30px 20px; }
  .contact-form input, .contact-form textarea, .contact-form select { font-size: 16px; }
  .contact-strip { overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-snap-type: x proximity; }
  .contact-strip::-webkit-scrollbar { display: none; }
  .contact-strip span { white-space: nowrap; scroll-snap-align: start; }
  .learn-feature, .learn-empty, .single-post-image { border-radius: 24px; }
  .learn-feature-image { min-height: 380px; }
  .learn-feature-copy { padding: 36px 24px; }
  .learn-section-heading { display: block; margin-bottom: 38px; }
  .learn-section-heading h2 { text-align: left; }
  .learn-grid { grid-template-columns: 1fr; }
  .learn-card-image { min-height: 280px; }
  .single-post { padding-top: 72px; }
  .single-post-header { margin-bottom: 42px; }
  .single-post-meta { flex-direction: column; gap: 8px; }
  .single-post-image { min-height: 390px; }
  .single-post-content { margin-top: 48px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .whatsapp-float { right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .toggle-group { gap: 7px; }
  .toggle-option span { min-height: 48px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* WordPress integration */
.admin-bar .site-header { top: 32px; }
.hero-media > img,
.stat-card-image > img,
.service-image > img,
.about-image > img { position: absolute; inset: 0; width: 100%; height: 100%; }
.custom-logo-brand { display: block; }
.custom-logo-link { display: block; }
.custom-logo { width: auto; max-width: 220px; height: 46px; object-fit: contain; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-alert { margin: 0 0 24px; padding: 14px 16px; border: 1px solid rgba(241,90,36,.35); border-radius: 12px; background: rgba(241,90,36,.08); color: var(--orange-deep); font-size: 14px; }
.default-page { min-height: 55vh; padding-top: 120px; }
.default-page h1 { margin: 0 0 36px; font-size: clamp(3rem, 7vw, 7rem); line-height: .9; letter-spacing: -.06em; }
.entry-content { max-width: 840px; font-size: 18px; line-height: 1.65; }
.entry-content > * + * { margin-top: 1.3em; }

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
