@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --red: #00822A;
  --red-dark: #006B22;
  --ink: #141414;
  --ink-soft: #4a4a4a;
  --paper: #ffffff;
  --paper-2: #f5f5f3;
  --line: #deded9;
  --line-dark: #383838;
  --muted: #7a7a76;
  --dark: #161616;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shell: 1180px;
  --shell-wide: 1360px;
  --shadow: 0 18px 55px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Outfit", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
::selection { background: rgba(0,130,42,.18); }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 999;
  transform: translateY(-150%); background: var(--dark); color: white;
  padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { transform: none; }

.shell-wide { width: min(calc(100% - 64px), var(--shell-wide)); margin-inline: auto; }
.route-grid {
  background-image:
    linear-gradient(rgba(20,20,20,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,20,20,.045) 1px, transparent 1px);
  background-size: 56px 56px;
}

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: 82px; display: flex; align-items: center;
  background: rgba(255,255,255,.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: transform .35s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 35px rgba(0,0,0,.04); }
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; gap: 12px; align-items: center; min-width: 250px; }
.brand-mark { width: 28px; height: 28px; display: grid; gap: 3px; grid-template-columns: 5px 7px 8px; align-items: end; transform: skewX(-12deg); }
.brand-mark span { background: var(--red); display: block; border-radius: 1px; }
.brand-mark span:nth-child(1) { height: 12px; }
.brand-mark span:nth-child(2) { height: 20px; }
.brand-mark span:nth-child(3) { height: 28px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: .94rem; letter-spacing: .09em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .68rem; letter-spacing: .02em; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 24px; }
.site-nav a { position: relative; font-size: .82rem; font-weight: 650; color: #555; padding: 10px 0; }
.site-nav a::after { content:""; position:absolute; left:0; right:100%; bottom:4px; height:2px; background:var(--red); transition:right .22s ease; }
.site-nav a:hover, .site-nav a.is-current { color: var(--ink); }
.site-nav a:hover::after, .site-nav a.is-current::after { right:0; }
.nav-toggle { display: none; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 0 18px; border: 1px solid transparent;
  border-radius: var(--radius-sm); font-weight: 750; font-size: .86rem;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(0,130,42,.3); outline-offset: 3px; }
.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: var(--red-dark); }
.button-dark { background: var(--dark); color: white; }
.button-dark:hover { background: #2a2a2a; }
.button-white { background: white; color: var(--ink); }
.button-white:hover { background: #f0f0ed; }
.button-outline { border-color: var(--line); background: transparent; }
.button-outline:hover { border-color: var(--ink); }
.button-ghost { border-color: rgba(255,255,255,.26); color: white; }
.button-ghost:hover { border-color: white; }
.button-large { min-height: 54px; padding-inline: 22px; }
.button-text { padding-inline: 3px; border: 0; min-height: auto; font-weight: 700; }
.header-cta { min-width: 132px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.text-link.inverse { color: white; border-color: white; }

.eyebrow, .section-kicker { margin: 0 0 18px; font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #62625f; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 5px rgba(0,130,42,.10); }
.section-kicker { color: var(--red); }
.inverse-kicker { color: #ff8b90; }

.hero { position: relative; padding: 150px 0 0; min-height: 820px; overflow: hidden; background-color: #fafaf8; }
.hero::before { content:""; position:absolute; width:540px; height:540px; right:-200px; top:85px; border:1px solid rgba(0,130,42,.12); border-radius:50%; }
.hero-inner { display: grid; grid-template-columns: minmax(0, .93fr) minmax(520px, 1.07fr); gap: clamp(52px, 6vw, 96px); align-items: center; }
.hero-copy { padding: 28px 0 62px; }
.hero h1, .contact-hero h1 { margin: 0; font-size: clamp(3.6rem, 7vw, 7.2rem); line-height: .88; letter-spacing: -.065em; font-weight: 840; }
.hero h1 em, .contact-hero h1 em { color: var(--red); font-style: normal; }
.hero-lead { max-width: 690px; margin: 30px 0 0; color: var(--ink-soft); font-size: clamp(1.02rem, 1.5vw, 1.24rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-meta > div { padding: 16px 18px 16px 0; display: flex; flex-direction: column; gap: 4px; }
.hero-meta > div + div { border-left: 1px solid var(--line); padding-left: 18px; }
.hero-meta span { font-size: .64rem; letter-spacing: .12em; color: var(--muted); }
.hero-meta strong { font-size: .82rem; }

.hero-board { position: relative; background: #202020; color: white; padding: 18px; border-radius: 20px; box-shadow: 0 30px 70px rgba(0,0,0,.20); transform: rotate(.6deg); }
.board-topline, .board-bottom { display:flex; align-items:center; justify-content:space-between; gap:16px; font-size:.65rem; letter-spacing:.1em; color:#c9c9c9; text-transform:uppercase; }
.board-topline { padding: 2px 2px 14px; }
.status-live { display:flex; align-items:center; gap:7px; }
.status-live i { width:7px; height:7px; background:var(--red); border-radius:50%; box-shadow:0 0 0 4px rgba(0,130,42,.12); }
.hero-photo-frame { position:relative; overflow:hidden; border-radius:12px; background:#333; }
.hero-photo-frame img { width:100%; aspect-ratio: 1.4 / 1; object-fit:cover; }
.photo-note { position:absolute; top:12px; left:12px; background:rgba(20,20,20,.82); color:white; font-size:.64rem; letter-spacing:.08em; text-transform:uppercase; padding:8px 10px; border-radius:5px; }
.route-track { display:grid; grid-template-columns: 12px 1fr 12px 1fr 12px; align-items:center; margin:20px 4px 7px; }
.route-node { width:12px; height:12px; border-radius:50%; border:2px solid #aaa; background:#202020; }
.route-node-mid { border-color:var(--red); box-shadow:0 0 0 5px rgba(0,130,42,.13); }
.route-node-end { background:var(--red); border-color:var(--red); }
.route-line { height:1px; background:#555; }
.route-line-strong { background:linear-gradient(90deg, #555, var(--red)); }
.route-labels { display:grid; grid-template-columns:repeat(3,1fr); font-size:.65rem; color:#b5b5b5; }
.route-labels span:nth-child(2) { text-align:center; }
.route-labels span:nth-child(3) { text-align:right; }
.route-labels small { color:var(--red); margin-right:5px; }
.board-bottom { border-top:1px solid #383838; margin-top:18px; padding:14px 2px 2px; justify-content:flex-start; display:grid; grid-template-columns:auto 1fr auto 1fr; }
.board-bottom strong { color:white; font-size:.72rem; letter-spacing:0; text-transform:none; }

.trust-strip { position:relative; margin-top:60px; min-height:74px; display:grid; grid-template-columns:repeat(4,1fr); background:white; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-strip span { display:flex; align-items:center; gap:11px; padding:0 24px; font-size:.8rem; font-weight:700; }
.trust-strip span + span { border-left:1px solid var(--line); }
.trust-strip i { width:7px; height:7px; background:var(--red); border-radius:50%; }

.about-section { padding: 120px 0 90px; }
.about-layout { display:grid; grid-template-columns: 90px minmax(0,1.25fr) minmax(340px,.75fr); gap:42px; align-items:start; }
.section-index { min-height:240px; display:flex; flex-direction:column; align-items:center; gap:10px; color:var(--muted); }
.section-index > span { font-size:.74rem; font-weight:800; }
.section-index small { writing-mode: vertical-rl; transform: rotate(180deg); letter-spacing:.12em; font-size:.6rem; }
.index-line { flex:1; width:1px; background:var(--line); }
.about-heading h2, .section-heading-row h2, .advantages-intro h2, .audience-layout h2, .gallery-head h2, .location-copy h2, .map-heading h2, .guidance-title h2 { margin:0; font-size:clamp(2.15rem,4.3vw,4.65rem); line-height:1; letter-spacing:-.055em; max-width:900px; }
.about-copy { padding-top:42px; color:var(--ink-soft); }
.about-copy p { margin:0 0 18px; font-size:1.02rem; line-height:1.7; }
.about-copy .text-link { margin-top:12px; color:var(--ink); }
.audience-rail { margin-top:88px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); min-height:86px; display:flex; align-items:center; justify-content:space-between; gap:18px; color:#555; letter-spacing:.08em; font-weight:800; font-size:.78rem; }
.audience-rail i { flex:1; height:1px; background:var(--line); position:relative; }
.audience-rail i::after { content:""; width:6px; height:6px; border-radius:50%; background:var(--red); position:absolute; right:50%; top:-2px; }

.services-section { background:var(--paper-2); padding:118px 0 130px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-heading-row { display:grid; grid-template-columns:1.15fr .65fr; gap:80px; align-items:end; }
.section-heading-row > p { margin:0; color:var(--ink-soft); font-size:1rem; line-height:1.7; max-width:540px; }
.service-manifest { display:grid; grid-template-columns:minmax(380px,.8fr) minmax(0,1.2fr); margin-top:72px; border-top:1px solid #cfcfc9; }
.manifest-list { border-right:1px solid #cfcfc9; }
.manifest-item { width:100%; border:0; border-bottom:1px solid #cfcfc9; background:transparent; min-height:82px; display:grid; grid-template-columns:58px 1fr auto; align-items:center; text-align:left; padding:0 26px 0 0; cursor:pointer; transition:background .22s ease, padding .22s ease; }
.manifest-item span { font-size:.68rem; letter-spacing:.1em; color:var(--muted); }
.manifest-item strong { font-size:1.06rem; }
.manifest-item i { font-style:normal; opacity:0; transform:translateX(-7px); transition:.2s ease; }
.manifest-item:hover, .manifest-item.is-active { background:white; padding-left:18px; }
.manifest-item.is-active { box-shadow: inset 4px 0 0 var(--red); }
.manifest-item.is-active i, .manifest-item:hover i { opacity:1; transform:none; color:var(--red); }
.manifest-detail { position:relative; overflow:hidden; min-height:492px; padding:60px clamp(36px,5vw,78px); background:white; }
.manifest-detail::after { content:""; width:240px; height:240px; border:1px solid rgba(0,130,42,.12); border-radius:50%; position:absolute; right:-90px; bottom:-80px; }
.manifest-code { font-size:.68rem; letter-spacing:.14em; color:var(--muted); }
.manifest-code span { color:var(--red); font-weight:800; }
.manifest-detail h3 { margin:28px 0 18px; font-size:clamp(2.3rem,4vw,4.1rem); line-height:.98; letter-spacing:-.055em; }
.manifest-detail > p { max-width:650px; color:var(--ink-soft); font-size:1.04rem; line-height:1.75; }
.manifest-tags { display:flex; flex-wrap:wrap; gap:8px; margin:28px 0 34px; }
.manifest-tags span { border:1px solid var(--line); padding:8px 10px; border-radius:4px; font-size:.72rem; font-weight:700; background:#fafafa; }
.manifest-route { display:grid; grid-template-columns:8px 1fr 8px 1fr 8px; align-items:center; width:min(420px,80%); margin-top:48px; }
.manifest-route i { width:8px; height:8px; border:2px solid var(--red); border-radius:50%; }
.manifest-route i:last-child { background:var(--red); }
.manifest-route b { height:1px; background:linear-gradient(90deg,var(--red),#ddd); }
.manifest-detail.is-changing h3, .manifest-detail.is-changing > p, .manifest-detail.is-changing .manifest-tags { animation:manifestPulse .28s ease; }
@keyframes manifestPulse { from { opacity:.35; transform:translateY(6px); } to { opacity:1; transform:none; } }

.advantages-section { background:var(--dark); color:white; padding:122px 0 128px; }
.advantages-intro { display:grid; grid-template-columns:90px 1fr; gap:42px; max-width:1100px; margin-left:max(32px, calc((100vw - min(calc(100vw - 64px), var(--shell-wide))) / 2)); margin-right:auto; }
.section-index.light { color:#8f8f8f; }
.section-index.light .index-line { background:#383838; }
.advantages-intro h2 { max-width:920px; }
.route-timeline { margin-top:80px; position:relative; }
.route-timeline::before { content:""; position:absolute; left:58px; top:0; bottom:0; width:1px; background:#383838; }
.route-step { display:grid; grid-template-columns:118px minmax(0,1fr); min-height:148px; border-top:1px solid #333; }
.route-step:last-child { border-bottom:1px solid #333; }
.route-step-number { position:relative; z-index:1; align-self:start; margin-top:34px; width:32px; height:32px; display:grid; place-items:center; background:var(--dark); border:1px solid #555; border-radius:50%; font-size:.62rem; font-weight:800; color:#aaa; }
.route-step-copy { display:grid; grid-template-columns:minmax(280px,.55fr) minmax(320px,.9fr); gap:40px; align-items:start; padding:30px 0; }
.route-step-copy h3 { margin:0; font-size:1.55rem; letter-spacing:-.025em; }
.route-step-copy p { margin:2px 0 0; color:#bdbdbd; max-width:680px; }
.route-step-accent { background:var(--red); margin-top:18px; border:0; padding-inline:20px; }
.route-step-accent .route-step-number { background:white; color:var(--red); border-color:white; }
.route-step-accent .route-step-copy p { color:#ffe7e8; }

.audience-section { padding:110px 0; }
.audience-layout { display:grid; grid-template-columns:.42fr 1fr .72fr; gap:40px; align-items:end; }
.audience-layout .section-kicker { align-self:start; }
.audience-layout h2 { font-size:clamp(2.4rem,4.3vw,4.7rem); }
.audience-layout > p:not(.section-kicker) { color:var(--ink-soft); margin:0 0 6px; line-height:1.7; }
.audience-types { grid-column:2 / -1; margin-top:28px; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--ink); }
.audience-types span { padding:20px 10px 0 0; font-weight:800; font-size:.92rem; }
.audience-types span + span { border-left:1px solid var(--line); padding-left:18px; }

.gallery-section { background:#ececea; padding:118px 0 88px; overflow:hidden; }
.gallery-head { display:flex; justify-content:space-between; gap:50px; align-items:end; }
.gallery-head h2 { max-width:880px; }
.gallery-controls { display:flex; gap:8px; }
.gallery-controls button { width:48px; height:48px; border:1px solid #c8c8c3; background:transparent; border-radius:50%; cursor:pointer; font-size:1.1rem; }
.gallery-controls button:hover { background:white; }
.gallery-track { width:min(calc(100% - 64px), var(--shell-wide)); margin:58px auto 0; display:grid; grid-auto-flow:column; grid-auto-columns:minmax(300px, 27vw); grid-template-rows: 220px 220px; gap:14px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; padding-bottom:6px; }
.gallery-track::-webkit-scrollbar { display:none; }
.gallery-item { margin:0; position:relative; overflow:hidden; background:#ddd; scroll-snap-align:start; min-width:0; }
.gallery-item-tall { grid-row:span 2; }
.gallery-item-wide { grid-column:span 2; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.gallery-item:hover img { transform:scale(1.02); }
.gallery-item figcaption { position:absolute; left:12px; right:12px; bottom:12px; background:rgba(20,20,20,.88); color:white; padding:10px 12px; display:flex; align-items:center; justify-content:space-between; gap:12px; font-size:.76rem; font-weight:750; }
.gallery-item figcaption span { color:#a7a7a7; font-size:.63rem; text-transform:uppercase; letter-spacing:.08em; }
.gallery-source-note { margin-top:22px; color:#6d6d69; font-size:.72rem; }
.gallery-source-note span { color:var(--red); font-weight:800; letter-spacing:.1em; margin-right:10px; }

.location-section { padding:122px 0; }
.location-layout { display:grid; grid-template-columns:minmax(0,.88fr) minmax(500px,1.12fr); gap:70px; align-items:stretch; }
.location-copy h2 span { display:block; font-size:.38em; letter-spacing:-.02em; color:#777; margin-top:18px; line-height:1.2; }
.location-copy address { max-width:590px; color:var(--ink-soft); font-size:1.03rem; line-height:1.75; margin-top:32px; }
.location-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
.social-inline { margin-top:40px; display:flex; gap:22px; flex-wrap:wrap; font-size:.76rem; font-weight:700; }
.social-inline a { border-bottom:1px solid #aaa; }
.map-preview { position:relative; min-height:500px; overflow:hidden; background:#ddd; border:1px solid var(--line); border-radius:8px; padding:0; }
.map-preview iframe { display:block; width:100%; height:100%; min-height:500px; border:0; }
.map-grid { position:absolute; inset:0; opacity:.18; background-image:linear-gradient(#777 1px,transparent 1px),linear-gradient(90deg,#777 1px,transparent 1px); background-size:42px 42px; transform:rotate(-8deg) scale(1.3); }
.map-route { position:absolute; left:14%; right:14%; top:48%; display:grid; grid-template-columns:12px 1fr 12px 1fr 18px; align-items:center; transform:rotate(-14deg); }
.map-route i { width:12px; height:12px; border:2px solid #777; border-radius:50%; background:#202020; }
.map-route span { height:2px; background:#686868; }
.map-route b { width:18px; height:18px; border-radius:50% 50% 50% 0; background:var(--red); transform:rotate(-45deg); box-shadow:0 0 0 10px rgba(0,130,42,.15); }
.map-label { position:absolute; top:32px; left:32px; display:flex; flex-direction:column; }
.map-label small { color:#8f8f8f; letter-spacing:.12em; }
.map-label strong { font-size:clamp(3rem,7vw,6.8rem); line-height:.95; letter-spacing:-.06em; margin-top:18px; }
.map-label span { color:#d0d0d0; margin-top:6px; }
.map-open { position:absolute; right:30px; bottom:28px; font-size:.82rem; font-weight:750; }

.closing-cta { background:var(--red); color:white; padding:86px 0; }
.closing-layout { display:grid; grid-template-columns:1.05fr .8fr; gap:80px; align-items:end; }
.closing-layout h2 { margin:0; font-size:clamp(3rem,5.8vw,6rem); line-height:.92; letter-spacing:-.06em; }
.closing-copy p { margin:0; max-width:610px; color:#ffe6e7; font-size:1.02rem; line-height:1.72; }
.closing-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }

.site-footer { background:#111; color:#d4d4d4; padding:46px 0 26px; }
.footer-grid { display:grid; grid-template-columns:.8fr 1fr auto; gap:50px; align-items:start; }
.footer-brand { display:flex; flex-direction:column; gap:6px; }
.footer-brand strong { color:white; letter-spacing:.08em; }
.footer-brand span { color:#8f8f8f; font-size:.72rem; }
.footer-grid address { max-width:560px; color:#8f8f8f; font-size:.78rem; }
.footer-links { display:flex; gap:20px; font-size:.78rem; font-weight:700; }
.footer-links a:hover { color:white; }
.footer-bottom { border-top:1px solid #2e2e2e; margin-top:34px; padding-top:18px; display:flex; justify-content:space-between; color:#696969; font-size:.68rem; }
.mobile-wa { display:none; }

/* Contact page */
.contact-hero { padding:150px 0 90px; background-color:#fafaf8; border-bottom:1px solid var(--line); }
.contact-hero-layout { display:grid; grid-template-columns:1.05fr .78fr; gap:90px; align-items:end; }
.contact-hero h1 { margin-top:18px; }
.back-link { display:inline-flex; margin-bottom:26px; color:#666; font-size:.78rem; font-weight:700; }
.identity-board { background:var(--dark); color:white; border-radius:18px; padding:22px; box-shadow:var(--shadow); }
.identity-board-head { display:flex; justify-content:space-between; color:#8f8f8f; font-size:.64rem; letter-spacing:.11em; border-bottom:1px solid #333; padding-bottom:15px; }
.identity-board-head small { color:#ff7378; font-weight:800; }
.identity-board dl { margin:0; }
.identity-board dl > div { display:grid; grid-template-columns:130px 1fr; gap:25px; padding:19px 0; border-bottom:1px solid #333; }
.identity-board dt { color:#8e8e8e; font-size:.68rem; }
.identity-board dd { margin:0; font-weight:750; }
.identity-board-foot { color:#858585; font-size:.7rem; line-height:1.6; padding-top:16px; }

.contact-options { padding:88px 0 118px; }
.contact-options-grid { display:grid; grid-template-columns:1.1fr .9fr .9fr; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.contact-option { padding:36px; min-height:340px; display:flex; flex-direction:column; align-items:flex-start; }
.contact-option + .contact-option { border-left:1px solid var(--line); }
.contact-option-primary { background:var(--red); color:white; border-color:var(--red); transform:translateY(-18px); }
.contact-option-index { font-size:.64rem; letter-spacing:.12em; color:var(--muted); }
.contact-option-primary .contact-option-index { color:#ffd0d2; }
.contact-option h2, .contact-option h3 { margin:55px 0 18px; font-size:clamp(1.7rem,3vw,3.1rem); line-height:1.03; letter-spacing:-.045em; }
.contact-option h3 { font-size:1.65rem; }
.contact-option p, .contact-option address { color:var(--ink-soft); margin:0 0 28px; }
.contact-option-primary p { color:#ffe1e2; }
.contact-option .button, .contact-option .text-link { margin-top:auto; }
.social-stack { margin-top:auto; width:100%; border-top:1px solid var(--line); }
.social-stack a { display:grid; grid-template-columns:auto 1fr auto; gap:10px; padding:14px 0; border-bottom:1px solid var(--line); font-size:.78rem; }
.social-stack strong { text-align:right; }

.map-section { padding:115px 0; background:#f4f4f2; }
.map-heading { display:grid; grid-template-columns:1fr .6fr; gap:70px; align-items:end; }
.map-heading > p { margin:0; color:var(--ink-soft); line-height:1.7; }
.map-frame { position:relative; margin-top:55px; height:610px; overflow:hidden; border:1px solid #d1d1cc; background:#ddd; }
.map-frame iframe { display:block; width:100%; height:100%; border:0; filter:none; }
.map-card { position:absolute; left:24px; bottom:24px; max-width:480px; background:white; padding:26px; box-shadow:0 18px 45px rgba(0,0,0,.14); }
.map-card > span { color:var(--red); font-size:.64rem; letter-spacing:.12em; font-weight:800; }
.map-card > strong { display:block; margin-top:12px; font-size:1.45rem; }
.map-card p { color:var(--ink-soft); font-size:.84rem; }
.map-card > div { display:flex; flex-wrap:wrap; gap:8px; }

.contact-guidance { padding:118px 0 130px; }
.guidance-layout { display:grid; grid-template-columns:.8fr 1.2fr; gap:90px; }
.guidance-title p:last-child { color:var(--ink-soft); max-width:520px; margin-top:25px; }
.dispatch-list { margin:0; padding:0; list-style:none; border-top:1px solid var(--ink); }
.dispatch-list li { display:grid; grid-template-columns:62px 1fr; gap:18px; min-height:92px; align-items:center; border-bottom:1px solid var(--line); }
.dispatch-list li > span { color:var(--red); font-size:.68rem; font-weight:800; letter-spacing:.1em; }
.dispatch-list li div { display:flex; justify-content:space-between; gap:20px; align-items:center; }
.dispatch-list strong { font-size:1.02rem; }
.dispatch-list small { color:var(--muted); max-width:370px; text-align:right; font-size:.75rem; }
.guidance-action { margin-top:48px; display:flex; justify-content:flex-end; }

.reveal-ready { opacity:0; transform:translateY(18px); transition:opacity .62s ease, transform .62s ease; }
.reveal-ready.is-revealed { opacity:1; transform:none; }

@media (max-width: 1180px) {
  .shell-wide { width:min(calc(100% - 40px), var(--shell-wide)); }
  .site-nav { gap:15px; }
  .header-cta { display:none; }
  .header-inner { grid-template-columns:auto 1fr; }
  .hero-inner { grid-template-columns:1fr 1fr; gap:38px; }
  .hero h1, .contact-hero h1 { font-size:clamp(3.6rem,7vw,6.2rem); }
  .about-layout { grid-template-columns:70px 1fr .78fr; gap:28px; }
  .service-manifest { grid-template-columns:.8fr 1.2fr; }
  .audience-layout { grid-template-columns:.35fr 1fr .8fr; }
  .location-layout { gap:40px; }
}

@media (max-width: 900px) {
  .site-header { height:74px; }
  .header-inner { grid-template-columns:1fr auto; }
  .brand-copy small { display:none; }
  .nav-toggle { width:42px; height:42px; border:1px solid var(--line); background:white; border-radius:8px; display:flex; flex-direction:column; justify-content:center; gap:6px; padding:0 11px; cursor:pointer; }
  .nav-toggle span { height:2px; background:var(--ink); width:100%; transition:.2s ease; }
  body.nav-open .nav-toggle span:first-child { transform:translateY(4px) rotate(45deg); }
  body.nav-open .nav-toggle span:last-child { transform:translateY(-4px) rotate(-45deg); }
  .site-nav { position:fixed; inset:74px 0 auto; background:white; border-top:1px solid var(--line); border-bottom:1px solid var(--line); display:flex; flex-direction:column; align-items:stretch; gap:0; padding:12px 20px 24px; transform:translateY(-140%); opacity:0; pointer-events:none; transition:.28s ease; }
  body.nav-open .site-nav { transform:none; opacity:1; pointer-events:auto; }
  .site-nav a { font-size:1.05rem; padding:15px 6px; border-bottom:1px solid #eee; }
  .site-nav a::after { display:none; }

  .hero { padding-top:118px; min-height:auto; }
  .hero-inner { grid-template-columns:1fr; }
  .hero-copy { padding-bottom:0; }
  .hero-board { max-width:720px; }
  .hero-meta { max-width:720px; }
  .trust-strip { grid-template-columns:repeat(2,1fr); }
  .trust-strip span { min-height:58px; }
  .trust-strip span:nth-child(3) { border-left:0; border-top:1px solid var(--line); }
  .trust-strip span:nth-child(4) { border-top:1px solid var(--line); }

  .about-layout { grid-template-columns:62px 1fr; }
  .about-copy { grid-column:2; padding-top:0; max-width:720px; }
  .section-index { grid-row:1 / span 2; }
  .audience-rail { margin-top:64px; }

  .section-heading-row { grid-template-columns:1fr; gap:28px; align-items:start; }
  .service-manifest { grid-template-columns:1fr; }
  .manifest-list { border-right:0; display:flex; overflow-x:auto; scrollbar-width:none; border-bottom:1px solid #cfcfc9; }
  .manifest-list::-webkit-scrollbar { display:none; }
  .manifest-item { min-width:210px; min-height:68px; border-bottom:0; border-right:1px solid #cfcfc9; grid-template-columns:42px 1fr; padding-right:18px; }
  .manifest-item i { display:none; }
  .manifest-item:hover, .manifest-item.is-active { padding-left:12px; box-shadow:inset 0 -4px 0 var(--red); }
  .manifest-detail { min-height:450px; }

  .advantages-intro { grid-template-columns:62px 1fr; gap:28px; margin-inline:20px; }
  .route-step-copy { grid-template-columns:1fr; gap:8px; }
  .route-timeline::before { left:42px; }
  .route-step { grid-template-columns:84px 1fr; }
  .route-step-accent { padding-inline:12px; }

  .audience-layout { grid-template-columns:1fr; }
  .audience-types { grid-column:auto; }
  .gallery-track { width:calc(100% - 40px); grid-auto-columns:minmax(300px,62vw); }

  .location-layout { grid-template-columns:1fr; }
  .map-preview, .map-preview iframe { min-height:420px; }
  .closing-layout { grid-template-columns:1fr; gap:34px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-links { grid-column:1 / -1; }

  .contact-hero-layout { grid-template-columns:1fr; gap:44px; }
  .contact-options-grid { grid-template-columns:1fr 1fr; }
  .contact-option-primary { grid-column:1 / -1; transform:none; min-height:300px; }
  .contact-option:nth-child(3) { border-left:1px solid var(--line); }
  .map-heading { grid-template-columns:1fr; gap:22px; }
  .guidance-layout { grid-template-columns:1fr; gap:48px; }
}

@media (max-width: 640px) {
  .shell-wide { width:calc(100% - 28px); }
  .site-header { height:68px; }
  .site-nav { top:68px; }
  .brand { min-width:0; }
  .brand-mark { width:23px; height:23px; grid-template-columns:4px 6px 7px; }
  .brand-mark span:nth-child(1){height:9px}.brand-mark span:nth-child(2){height:16px}.brand-mark span:nth-child(3){height:23px}
  .brand-copy strong { font-size:.82rem; }

  .hero { padding-top:102px; background-size:40px 40px; }
  .hero h1, .contact-hero h1 { font-size:clamp(3.3rem,16vw,5.1rem); }
  .hero-lead { margin-top:22px; font-size:.98rem; }
  .hero-actions { margin-top:26px; gap:14px; align-items:stretch; flex-direction:column; }
  .hero-actions .button { width:100%; }
  .hero-meta { grid-template-columns:1fr 1fr; margin-top:34px; }
  .hero-meta > div:nth-child(3) { grid-column:1 / -1; border-left:0; border-top:1px solid var(--line); padding-left:0; }
  .hero-board { padding:12px; border-radius:14px; transform:none; }
  .hero-photo-frame img { aspect-ratio:1.15/1; }
  .route-labels { font-size:.58rem; }
  .board-bottom { grid-template-columns:auto 1fr; gap:3px 12px; }
  .trust-strip { width:100%; margin-top:36px; border-left:0; border-right:0; }
  .trust-strip span { padding:0 14px; font-size:.72rem; }

  .about-section, .services-section, .advantages-section, .audience-section, .gallery-section, .location-section, .contact-options, .map-section, .contact-guidance { padding-top:82px; padding-bottom:82px; }
  .about-layout { grid-template-columns:1fr; }
  .section-index { display:none; }
  .about-copy { grid-column:auto; }
  .about-heading h2, .section-heading-row h2, .advantages-intro h2, .audience-layout h2, .gallery-head h2, .location-copy h2, .map-heading h2, .guidance-title h2 { font-size:clamp(2.3rem,12vw,3.5rem); }
  .audience-rail { overflow-x:auto; justify-content:flex-start; gap:16px; padding:0 4px; }
  .audience-rail i { min-width:32px; }
  .audience-rail span { white-space:nowrap; }

  .service-manifest { margin-top:44px; }
  .manifest-item { min-width:190px; }
  .manifest-detail { padding:34px 22px; min-height:430px; }
  .manifest-detail h3 { font-size:2.7rem; }
  .manifest-route { width:100%; }

  .advantages-intro { grid-template-columns:1fr; margin-inline:14px; }
  .route-timeline::before { left:20px; }
  .route-step { grid-template-columns:48px 1fr; min-height:126px; }
  .route-step-number { width:26px; height:26px; margin-top:28px; }
  .route-step-copy { padding:25px 0; }
  .route-step-copy h3 { font-size:1.25rem; }
  .route-step-copy p { font-size:.91rem; }
  .route-step-accent { margin-inline:-5px; }

  .audience-types { grid-template-columns:1fr 1fr; }
  .audience-types span:nth-child(3) { border-left:0; padding-left:0; border-top:1px solid var(--line); margin-top:16px; padding-top:16px; }
  .audience-types span:nth-child(4) { border-top:1px solid var(--line); margin-top:16px; padding-top:16px; }
  .gallery-head { align-items:flex-start; flex-direction:column; }
  .gallery-track { width:calc(100% - 28px); grid-auto-columns:82vw; grid-template-rows:180px 180px; }
  .gallery-item-wide { grid-column:span 1; }
  .gallery-source-note { line-height:1.6; }
  .location-actions { flex-direction:column; }
  .location-actions .button { width:100%; }
  .map-preview, .map-preview iframe { min-height:360px; padding:0; }
  .map-label { left:20px; top:20px; }
  .map-label strong { font-size:4rem; }
  .map-open { right:20px; bottom:18px; }
  .closing-cta { padding:70px 0 90px; }
  .closing-layout h2 { font-size:clamp(3rem,14vw,4.8rem); }
  .closing-actions { flex-direction:column; }
  .closing-actions .button { width:100%; }

  .footer-grid { grid-template-columns:1fr; gap:25px; }
  .footer-links { grid-column:auto; flex-wrap:wrap; }
  .footer-bottom { align-items:flex-start; flex-direction:column; gap:6px; padding-bottom:42px; }
  .mobile-wa { position:fixed; z-index:95; right:14px; bottom:14px; display:inline-flex; align-items:center; gap:8px; min-height:48px; padding:0 16px 0 8px; background:var(--dark); color:white; border-radius:999px; box-shadow:0 12px 34px rgba(0,0,0,.25); font-size:.78rem; font-weight:800; }
  .mobile-wa span { display:grid; place-items:center; width:32px; height:32px; border-radius:50%; background:#25D366; color:white; font-size:.68rem; }

  .contact-hero { padding-top:105px; padding-bottom:70px; }
  .identity-board dl > div { grid-template-columns:1fr; gap:5px; }
  .contact-options-grid { grid-template-columns:1fr; }
  .contact-option + .contact-option { border-left:0; border-top:1px solid var(--line); }
  .contact-option:nth-child(3) { border-left:0; }
  .contact-option { min-height:290px; padding:26px 10px; }
  .contact-option-primary { padding:28px; }
  .map-frame { width:100%; height:420px; border-left:0; border-right:0; }
  .map-frame iframe { height:100%; }
  .map-card { position:absolute; left:14px; right:14px; bottom:14px; max-width:none; }
  .map-card > div { flex-direction:column; }
  .map-card .button { width:100%; }
  .dispatch-list li { grid-template-columns:42px 1fr; }
  .dispatch-list li div { align-items:flex-start; flex-direction:column; gap:3px; }
  .dispatch-list small { text-align:left; }
  .guidance-action { justify-content:stretch; }
  .guidance-action .button { width:100%; }
}

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

/* Minimal image-led homepage */
.hero-carousel {
  min-height: clamp(560px, 82vh, 840px);
  padding: 0;
  background: #eef0ec;
}
.hero-carousel::before { display: none; }
.hero-carousel .hero-inner,
.hero-carousel .trust-strip { display: none; }
.hero-slides,
.hero-slide { position: absolute; inset: 0; }
.hero-slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,14,11,.38);
}
.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .7s ease, transform 5.5s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-message {
  position: relative;
  z-index: 2;
  min-height: clamp(560px, 82vh, 840px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
}
.hero-message p {
  margin: 0 0 18px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-message h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.05em;
}
.hero-message-action {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  margin-top: 34px;
  padding: 0 22px;
  border-radius: 6px;
  background: #fff;
  color: #151715;
  font-size: .88rem;
  font-weight: 600;
  transition: background-color .2s ease, transform .2s ease;
}
.hero-message-action:hover { background: #f0f0ed; }
.hero-message-action:active { transform: scale(.98); }
.hero-carousel-nav {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.hero-carousel-nav > button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 6px;
  background: rgba(17,17,17,.42);
  color: #fff;
  cursor: pointer;
}
.hero-dots { display: flex; gap: 7px; padding: 0 4px; }
.hero-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.48);
  cursor: pointer;
}
.hero-dots button.is-active { background: #fff; }

.about-heading h2,
.section-heading-row h2,
.advantages-intro h2,
.audience-layout h2,
.gallery-head h2,
.location-copy h2,
.map-heading h2,
.guidance-title h2 {
  font-size: clamp(2rem, 3.2vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.section-heading-row { display: block; }
.section-heading-row > p { display: none; }
.service-manifest { display: none; }
.image-card-grid,
.audience-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.image-card-grid { margin-top: 52px; }
.image-card {
  overflow: hidden;
  border: 1px solid #e5e5e1;
  border-radius: 8px;
  background: #fff;
}
.image-placeholder {
  aspect-ratio: 4 / 3;
  background: #efefec;
  border-bottom: 1px solid #e5e5e1;
}
.service-image-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e1;
}
.service-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.audience-image-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e1;
}
.audience-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-card h3 {
  margin: 0;
  padding: 20px;
  font-size: 1.08rem;
  letter-spacing: -.015em;
}
.audience-layout { display: block; }
.audience-layout > p:not(.section-kicker),
.audience-types { display: none; }
.audience-image-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

@media (max-width: 900px) {
  .image-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-image-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .hero-carousel { min-height: 68svh; padding: 0; }
  .hero-message {
    min-height: 68svh;
    padding-top: 68px;
    padding-bottom: 84px;
  }
  .hero-message p { margin-bottom: 14px; font-size: .65rem; }
  .hero-message h1 { max-width: 92%; font-size: clamp(2.7rem, 13vw, 4.3rem); }
  .hero-message-action { min-height: 48px; margin-top: 26px; }
  .hero-carousel-nav { bottom: 18px; }
  .about-heading h2,
  .section-heading-row h2,
  .advantages-intro h2,
  .audience-layout h2,
  .gallery-head h2,
  .location-copy h2,
  .map-heading h2,
  .guidance-title h2 { font-size: clamp(1.85rem, 9vw, 2.65rem); }
  .image-card-grid,
  .audience-image-grid { grid-template-columns: 1fr; gap: 14px; }
  .image-card-grid { margin-top: 34px; }
  .audience-image-grid { margin-top: 30px; }
}
