:root {
  --paper: #f4efe3;
  --paper-deep: #e8dfcf;
  --ink: #172c3f;
  --muted: #66717a;
  --blue: #4f81ba;
  --blue-soft: #bad1e8;
  --cobalt: #204f7a;
  --green: #77a86a;
  --green-soft: #c6d9ae;
  --amber: #efb449;
  --coral: #e96f54;
  --white: #fffdf7;
  --line: rgba(23, 44, 63, .2);
  --radius: 28px;
  --shadow: 0 24px 60px rgba(36, 55, 64, .12);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.notice-bar {
  min-height: 32px;
  padding: 6px clamp(18px, 4vw, 68px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.notice-bar a { display: inline-flex; align-items: center; gap: 8px; }
.notice-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 3px rgba(239,180,73,.2); }

.site-header { position: relative; z-index: 100; }
.nav-shell {
  position: relative;
  z-index: 101;
  height: 86px;
  padding: 0 clamp(18px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(244,239,227,.92);
  backdrop-filter: blur(16px);
}
.site-header.is-sticky .nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  box-shadow: 0 10px 32px rgba(23,44,63,.08);
  animation: headerDrop .45s var(--ease);
}
@keyframes headerDrop { from { transform: translateY(-100%); } }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 205px; }
.brand-mark { width: 46px; height: 46px; color: var(--blue); flex: none; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 20px; letter-spacing: .04em; }
.brand small { margin-top: 7px; color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.8vw, 48px); }
.desktop-nav a { display: grid; gap: 3px; font-size: 13px; font-weight: 700; }
.desktop-nav a span:first-child { color: var(--blue); font: 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.desktop-nav a span:last-child { position: relative; }
.desktop-nav a span:last-child::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--coral); transition: right .35s var(--ease); }
.desktop-nav a:hover span:last-child::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.locale { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; }
.locale button { width: 38px; height: 34px; border: 0; border-radius: 999px; background: transparent; color: var(--ink); cursor: pointer; font-size: 11px; font-weight: 800; }
.locale button.active { background: var(--ink); color: var(--white); }
.header-call { height: 42px; padding: 0 17px; display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; background: var(--coral); color: white; font-size: 12px; font-weight: 800; }
.header-call svg { width: 16px; fill: currentColor; }
.menu-toggle { width: 46px; height: 46px; display: none; place-content: center; gap: 7px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { width: 20px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  padding-top: 110px;
  background: var(--blue-soft);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .6s var(--ease), visibility .6s;
}
.mobile-menu.open { z-index: 90; clip-path: inset(0); visibility: visible; }
.mobile-menu-inner { height: 100%; padding: 36px 24px 28px; display: flex; flex-direction: column; }
.mobile-menu nav { margin-top: 22px; border-top: 1px solid rgba(23,44,63,.28); }
.mobile-menu nav a { min-height: 74px; display: grid; grid-template-columns: 42px 1fr; align-items: center; border-bottom: 1px solid rgba(23,44,63,.28); }
.mobile-menu nav span { font: 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--cobalt); }
.mobile-menu nav strong { font-size: clamp(28px, 7vw, 44px); letter-spacing: -.04em; }
.mobile-contact { margin-top: auto; display: grid; gap: 10px; font-weight: 700; font-size: 14px; }

.hero {
  min-height: auto;
  padding: clamp(46px, 5.5vw, 82px) clamp(18px, 4vw, 68px) 38px;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
  grid-template-areas: "copy visual" "record visual";
  gap: 30px clamp(32px, 4vw, 72px);
  overflow: hidden;
}
.hero-copy { grid-area: copy; align-self: end; max-width: 730px; }
.eyebrow { margin: 0 0 24px; display: flex; justify-content: space-between; gap: 16px; font: 700 11px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span:last-child { color: var(--blue); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 5.35vw, 98px);
  line-height: .89;
  letter-spacing: -.065em;
  font-weight: 800;
  text-wrap: balance;
}
.hero-lead { max-width: 650px; margin-bottom: 34px; color: var(--muted); font-size: clamp(17px, 1.4vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: var(--coral); }
.button-primary svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-outline { border-color: var(--line); background: transparent; }
.button-outline:hover { background: var(--white); }
.text-link { display: inline-flex; gap: 32px; align-items: center; border-bottom: 1px solid var(--ink); padding: 10px 0; font-size: 13px; font-weight: 800; }
.hero-visual { grid-area: visual; position: relative; width: 100%; max-width: 820px; min-height: 0; align-self: center; justify-self: end; display: flex; align-items: center; }
.hero-frame { position: relative; width: 100%; aspect-ratio: 1568 / 1003; margin: 0; overflow: hidden; border-radius: 52px 52px 52px 10px; box-shadow: var(--shadow); background: var(--white); }
.hero-frame picture,
.hero-frame img { display: block; width: 100%; height: 100%; }
.hero-frame img { object-fit: cover; object-position: center; }
.folder-tab {
  position: absolute;
  z-index: 2;
  top: 2%;
  left: -18px;
  width: 150px;
  height: 66px;
  padding: 12px 17px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-radius: 20px 20px 0 0;
  color: var(--ink);
  font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .1em;
  transform: rotate(-4deg);
  animation: tabBreathe 7s ease-in-out infinite;
}
.folder-tab b { font-size: 22px; line-height: .8; }
.tab-blue { background: var(--blue-soft); }
.tab-green { top: auto; left: auto; right: -18px; bottom: 1%; background: var(--green-soft); transform: rotate(4deg); animation-delay: -2s; }
@keyframes tabBreathe { 50% { transform: translateY(-9px) rotate(-2deg); } }
.pet-index { position: absolute; z-index: 2; right: -28px; top: 23%; display: flex; gap: 16px; writing-mode: vertical-rl; font: 700 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; color: var(--cobalt); }
.hero-record {
  grid-area: record;
  align-self: start;
  max-width: 650px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.record-number { color: var(--coral); font: 700 10px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; }
.hero-record p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.hero-record a { white-space: nowrap; font-size: 12px; font-weight: 800; border-bottom: 1px solid; }

.identity-strip {
  margin: 0 clamp(18px, 4vw, 68px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,253,247,.38);
}
.identity-item { min-height: 150px; padding: 28px; display: flex; align-items: center; gap: 24px; border-right: 1px solid var(--line); }
.identity-item:last-child { border-right: 0; }
.identity-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: 26px; }
.identity-icon.blue { background: var(--blue); }
.identity-icon.amber { background: var(--amber); color: var(--ink); }
.identity-item p { margin: 0; display: grid; gap: 7px; }
.identity-item small { color: var(--muted); font: 700 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; }
.identity-item strong { font-size: clamp(16px, 1.5vw, 23px); }

.section { padding: clamp(100px, 12vw, 190px) clamp(18px, 4vw, 68px); }
.section-heading { max-width: 1040px; margin-bottom: 76px; }
.section h2 { margin-bottom: 28px; font-size: clamp(52px, 6.6vw, 116px); line-height: .92; letter-spacing: -.065em; }
.section-heading > p:last-child { max-width: 680px; margin-left: auto; color: var(--muted); font-size: 18px; line-height: 1.6; }
.services { background: var(--white); }
.service-stack { display: grid; gap: 22px; }
.service-card {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) 1.18fr;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(23,44,63,.08);
}
.service-card:nth-child(even) { grid-template-columns: 1.18fr minmax(360px, .82fr); }
.service-card:nth-child(even) .service-media { order: 2; }
.service-media { min-height: 470px; overflow: hidden; background: var(--paper-deep); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.035); }
.service-body { padding: clamp(34px, 5vw, 78px); display: flex; flex-direction: column; justify-content: center; }
.card-blue { background: var(--blue-soft); }
.card-green { background: var(--green-soft); }
.card-cobalt { background: #b4cbe0; }
.card-amber { background: #f5c46d; }
.service-index { margin-bottom: auto; font: 700 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; }
.service-body h3 { margin: 46px 0 20px; font-size: clamp(38px, 4vw, 70px); line-height: .98; letter-spacing: -.05em; }
.service-body p { max-width: 580px; color: rgba(23,44,63,.72); font-size: 17px; line-height: 1.65; }
.service-body a { margin-top: auto; padding-top: 24px; display: flex; justify-content: space-between; border-top: 1px solid rgba(23,44,63,.25); font-size: 13px; font-weight: 800; }
.media-note { margin: 22px 4px 0 auto; max-width: 520px; color: var(--muted); font-size: 11px; line-height: 1.5; text-align: right; }

.process { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 9vw, 150px); }
.process-head { position: sticky; top: 110px; align-self: start; }
.process h2 { font-size: clamp(56px, 6vw, 100px); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { min-height: 210px; padding: 40px 0; display: grid; grid-template-columns: 90px 1fr; gap: 25px; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--blue); font: 700 14px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.process-list h3 { margin-bottom: 16px; font-size: clamp(28px, 3vw, 48px); letter-spacing: -.04em; }
.process-list p { max-width: 560px; color: var(--muted); line-height: 1.65; }

.visit { padding-top: 0; display: grid; grid-template-columns: 1.35fr .65fr; gap: 22px; }
.visit-card { padding: clamp(38px, 6vw, 90px); border-radius: 36px; background: var(--cobalt); color: var(--white); }
.visit-card h2 { max-width: 820px; font-size: clamp(48px, 5.7vw, 96px); }
.visit-copy > p:last-child { max-width: 700px; color: rgba(255,253,247,.72); font-size: 17px; line-height: 1.65; }
.visit-list { margin: 60px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.25); }
.visit-list li { min-height: 78px; display: grid; grid-template-columns: 68px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.25); }
.visit-list li span { color: var(--amber); font: 700 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.visit-list li strong { font-size: 16px; }
.visit-callout { padding: 38px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 36px; background: var(--coral); color: white; }
.big-plus { font-size: 72px; font-weight: 200; line-height: 1; }
.visit-callout p { max-width: 360px; margin: auto 0 28px; font-size: clamp(30px, 3.2vw, 54px); font-weight: 800; line-height: 1; letter-spacing: -.05em; }
.visit-callout a { padding-top: 24px; display: grid; gap: 6px; border-top: 1px solid rgba(255,255,255,.45); font-weight: 800; }
.visit-callout a span:last-child { font-size: 24px; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(40px, 9vw, 150px); background: var(--green-soft); }
.faq-heading { align-self: start; position: sticky; top: 110px; }
.faq h2 { font-size: clamp(52px, 5.5vw, 92px); }
.accordion { border-top: 1px solid rgba(23,44,63,.3); }
.accordion details { border-bottom: 1px solid rgba(23,44,63,.3); }
.accordion summary { min-height: 114px; display: flex; justify-content: space-between; align-items: center; gap: 20px; list-style: none; cursor: pointer; font-size: clamp(20px, 2vw, 30px); font-weight: 700; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span:last-child { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(23,44,63,.3); border-radius: 50%; transition: transform .35s var(--ease), background .35s; }
.accordion details[open] summary span:last-child { transform: rotate(45deg); background: var(--ink); color: white; }
.accordion details p { max-width: 720px; padding: 0 68px 34px 0; color: rgba(23,44,63,.7); line-height: 1.7; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; background: var(--ink); color: var(--white); }
.contact-sheet { padding: clamp(38px, 6vw, 88px); border: 1px solid rgba(255,255,255,.18); border-radius: 36px; }
.contact h2 { font-size: clamp(50px, 5.4vw, 90px); }
.contact-grid { margin-top: 54px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px 24px; }
.contact-item { min-width: 0; }
.contact-item small { display: block; margin-bottom: 10px; color: var(--blue-soft); font: 700 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; }
.contact-item a, .contact-item p { margin: 0; display: flex; gap: 8px; align-items: flex-start; overflow-wrap: anywhere; font-size: 14px; font-weight: 700; line-height: 1.5; }
.contact-item a:hover { color: var(--amber); }
.contact-actions { margin-top: 54px; display: flex; gap: 12px; flex-wrap: wrap; }
.contact .button-primary { background: var(--amber); color: var(--ink); }
.contact .button-outline { border-color: rgba(255,255,255,.3); }
.contact .button-outline:hover { background: var(--white); color: var(--ink); }
.map-wrap { position: relative; min-height: 760px; border-radius: 36px; overflow: hidden; background: var(--paper-deep); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(.65) contrast(.95); }
.map-route { position: absolute; left: 24px; bottom: 24px; min-height: 54px; padding: 0 22px; display: flex; gap: 34px; align-items: center; border-radius: 999px; background: var(--white); color: var(--ink); font-size: 13px; font-weight: 800; box-shadow: var(--shadow); }

.footer { padding: 68px clamp(18px, 4vw, 68px) 26px; background: var(--paper); }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand strong { font-size: clamp(32px, 5vw, 72px); letter-spacing: -.04em; }
.footer > p { max-width: 800px; margin: 54px 0 100px auto; font-size: clamp(30px, 4.8vw, 76px); font-weight: 800; line-height: .98; letter-spacing: -.05em; text-align: right; }
.footer-bottom { padding-top: 18px; display: grid; grid-template-columns: auto 1fr auto; gap: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom span:nth-child(2) { text-align: center; }

.floating-call, .back-top {
  position: fixed;
  z-index: 80;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(23,44,63,.2);
}
.floating-call { left: 24px; background: var(--coral); color: white; }
.floating-call svg { width: 22px; fill: currentColor; }
.back-top { right: 24px; background: var(--white); color: var(--ink); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .3s, transform .3s; }
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  clip-path: inset(0 0 18% 0);
  transition: opacity .75s var(--ease), transform .9s var(--ease), clip-path .9s var(--ease);
  transition-delay: calc(var(--order, 0) * 90ms);
}
.reveal.in-view { opacity: 1; transform: translateY(0); clip-path: inset(0); }

@media (min-width: 1800px) {
  .hero { grid-template-columns: minmax(0, .9fr) minmax(600px, 1.1fr); }
  .hero-visual { max-width: 900px; }
}

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero { grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); gap: 28px; }
  .hero-visual { max-width: 560px; min-height: 0; }
  .identity-item { padding: 22px; gap: 16px; }
  .service-card, .service-card:nth-child(even) { grid-template-columns: minmax(300px, .8fr) 1.2fr; }
  .service-card:nth-child(even) .service-media { order: 0; }
  .contact { grid-template-columns: 1.1fr .9fr; }
}

@media (max-width: 900px) {
  .notice-bar span:last-child { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "visual" "record";
    padding-top: 72px;
  }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 720px); max-width: 720px; min-height: 0; justify-self: center; }
  .identity-strip { grid-template-columns: 1fr; }
  .identity-item { min-height: 104px; border-right: 0; border-bottom: 1px solid var(--line); }
  .identity-item:last-child { border-bottom: 0; }
  .service-card, .service-card:nth-child(even) { grid-template-columns: 1fr; }
  .service-card:nth-child(even) .service-media { order: 0; }
  .service-media { min-height: 430px; }
  .service-index { margin-bottom: 18px; }
  .service-body h3 { margin-top: 22px; }
  .process, .faq { grid-template-columns: 1fr; }
  .process-head, .faq-heading { position: static; }
  .visit { grid-template-columns: 1fr; }
  .visit-callout { min-height: 430px; }
  .contact { grid-template-columns: 1fr; }
  .map-wrap { min-height: 540px; }
}

@media (max-width: 620px) {
  .notice-bar { justify-content: center; min-height: 28px; padding-inline: 12px; font-size: 9px; }
  .nav-shell { height: 76px; padding-inline: 15px; gap: 10px; }
  .site-header.is-sticky .nav-shell { height: 70px; }
  .brand { min-width: 0; gap: 7px; }
  .brand-mark { width: 35px; height: 35px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 7px; margin-top: 5px; }
  .header-call { display: none; }
  .locale button { width: 34px; height: 32px; }
  .menu-toggle { width: 42px; height: 42px; }
  .mobile-menu { padding-top: 104px; }
  .hero { padding: 50px 15px 28px; gap: 26px; }
  .eyebrow { font-size: 9px; margin-bottom: 18px; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(46px, 14vw, 68px); line-height: .9; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .text-link { flex: 1; justify-content: space-between; }
  .hero-visual {
    width: min(calc(100vw - 50px), 360px);
    max-width: 360px;
    min-height: 0;
    justify-self: center;
  }
  .hero-frame { aspect-ratio: 1003 / 1568; border-radius: 34px 34px 34px 8px; }
  .hero-frame img { object-fit: contain; object-position: center; }
  .folder-tab { width: 112px; height: 54px; left: -8px; top: -8px; }
  .tab-green { left: auto; right: -8px; top: auto; bottom: -7px; }
  .folder-tab b { font-size: 17px; }
  .pet-index { right: -5px; top: 20%; color: white; text-shadow: 0 1px 3px rgba(23,44,63,.4); }
  .hero-record { grid-template-columns: 72px 1fr; gap: 12px; }
  .hero-record a { grid-column: 2; justify-self: start; }
  .identity-strip { margin-inline: 15px; border-radius: 22px; }
  .identity-item { padding: 18px; }
  .identity-icon { width: 46px; height: 46px; }
  .section { padding: 96px 15px; }
  .section h2 { font-size: clamp(46px, 13.3vw, 68px); }
  .section-heading { margin-bottom: 48px; }
  .section-heading > p:last-child { font-size: 16px; }
  .services { overflow: hidden; }
  .service-stack {
    margin-right: -15px;
    padding-right: 42px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .service-stack::-webkit-scrollbar { display: none; }
  .service-card, .service-card:nth-child(even) {
    min-width: min(84vw, 390px);
    min-height: 620px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 285px 1fr;
    scroll-snap-align: start;
    border-radius: 26px;
  }
  .service-media { min-height: 0; }
  .service-body { padding: 28px; }
  .service-body h3 { font-size: 39px; }
  .service-body p { font-size: 15px; }
  .media-note { text-align: left; margin-top: 16px; }
  .process-list li { min-height: 190px; grid-template-columns: 52px 1fr; }
  .process-list h3 { font-size: 30px; }
  .visit { padding-top: 0; }
  .visit-card, .visit-callout { border-radius: 26px; }
  .visit-card { padding: 34px 24px; }
  .visit-list { margin-top: 40px; }
  .visit-list li { grid-template-columns: 48px 1fr; padding: 16px 0; }
  .visit-list li strong { font-size: 14px; }
  .visit-callout { min-height: 360px; padding: 28px; }
  .faq { padding-block: 96px; }
  .accordion summary { min-height: 94px; font-size: 19px; }
  .accordion summary span:last-child { width: 38px; height: 38px; flex: none; }
  .accordion details p { padding-right: 0; }
  .contact { padding: 15px; }
  .contact-sheet { padding: 34px 23px; border-radius: 26px; }
  .contact-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .contact-actions .button { width: 100%; }
  .map-wrap { min-height: 340px; border-radius: 26px; }
  .map-route { left: 14px; bottom: 74px; min-height: 50px; padding-inline: 18px; gap: 24px; }
  .footer { padding-inline: 15px; }
  .footer > p { margin: 46px 0 70px; text-align: left; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom span:nth-child(2) { grid-column: 1 / -1; grid-row: 2; text-align: left; line-height: 1.5; }
  .floating-call, .back-top { bottom: 16px; width: 54px; height: 54px; }
  .floating-call { left: 16px; }
  .back-top { right: 16px; }
}

@media (max-width: 360px) {
  .brand small { display: none; }
  .locale button { width: 31px; }
  .hero h1 { font-size: 44px; }
  .hero-visual { min-height: 0; }
  .service-card, .service-card:nth-child(even) { min-width: 84vw; }
  .service-body h3 { font-size: 35px; }
}

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