
:root {
  --navy-950: #04142f;
  --navy-900: #061d43;
  --navy-800: #0a2b5e;
  --navy-700: #123b77;
  --red-700: #b30e18;
  --red-600: #cb1722;
  --ink: #102039;
  --slate: #526176;
  --mist: #e8edf3;
  --paper: #f7f8fa;
  --white: #ffffff;
  --border: #dbe2ea;
  --shadow-sm: 0 8px 24px rgba(4, 20, 47, 0.08);
  --shadow-lg: 0 28px 70px rgba(4, 20, 47, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shell: min(1180px, calc(100% - 40px));
  --background: #ffffff;
  --foreground: #102039;
  --card: #ffffff;
  --card-foreground: #102039;
  --popover: #ffffff;
  --popover-foreground: #102039;
  --primary: #061d43;
  --primary-foreground: #ffffff;
  --secondary: #e8edf3;
  --secondary-foreground: #061d43;
  --muted: #f1f4f7;
  --muted-foreground: #526176;
  --accent: #cb1722;
  --accent-foreground: #ffffff;
  --destructive: #b30e18;
  --input: #dbe2ea;
  --ring: #123b77;
  --radius: 0.625rem;
  color-scheme: light;
}



* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(6,29,67,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(6,29,67,.018) 1px,transparent 1px);
  background-size: 42px 42px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 {
  color: var(--navy-950);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.75rem,7vw,5.7rem); }
h2 { font-size: clamp(2rem,4.5vw,3.65rem); }
h3 { font-size: clamp(1.25rem,2.3vw,1.65rem); }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy-950);
  padding: 10px 14px;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,.82);
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(6,29,67,.09);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand { width: 162px; flex: 0 0 auto; }
.brand img { width: 100%; height: 78px; object-fit: contain; }
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(13px,1.45vw,23px);
}
.desktop-nav a {
  position: relative;
  color: var(--navy-950);
  font-size: .91rem;
  font-weight: 750;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--red-600);
  transition: right 180ms ease;
}
.desktop-nav a:hover::after,.desktop-nav a:focus-visible::after { right: 0; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0 22px;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease,box-shadow 180ms ease,background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,a:focus-visible,summary:focus-visible {
  outline: 3px solid rgba(203,23,34,.35);
  outline-offset: 4px;
}
.button-red { background: var(--red-600); color: var(--white); box-shadow: 0 11px 28px rgba(179,14,24,.25); }
.button-red:hover { background: var(--red-700); box-shadow: 0 15px 34px rgba(179,14,24,.34); }
.button-navy { background: var(--navy-900); color: var(--white); box-shadow: 0 11px 28px rgba(6,29,67,.22); }
.button-light { background: var(--white); color: var(--navy-950); }
.button-outline { border-color: rgba(6,29,67,.22); background: rgba(255,255,255,.78); color: var(--navy-950); }
.button-outline-light { border-color: rgba(255,255,255,.52); color: var(--white); }
.header-cta { min-height: 46px; padding-inline: 17px; white-space: nowrap; }
.mobile-menu { display: none; margin-left: auto; }
.mobile-menu summary {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--navy-950);
  cursor: pointer;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu .menu-close { display: none; }
.mobile-menu[open] .menu-open { display: none; }
.mobile-menu[open] .menu-close { display: block; }
.mobile-menu nav {
  position: absolute;
  top: 94px;
  left: 0;
  right: 0;
  display: grid;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 14px 20px 24px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu nav>a:not(.button) {
  border-bottom: 1px solid var(--border);
  padding: 13px 3px;
  color: var(--navy-950);
  font-weight: 750;
}
.mobile-menu nav .button { margin-top: 16px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
  color: var(--red-600);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; background: currentColor; }
.eyebrow.light { color: #ff9aa1; }
.section { padding: 100px 0; }
.section-tight { padding: 72px 0; }
.section-muted { background: var(--paper); }
.section-navy { background: var(--navy-950); color: rgba(255,255,255,.75); }
.section-navy h2,.section-navy h3 { color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p:last-child { margin-bottom: 0; color: var(--slate); font-size: 1.08rem; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(112deg,var(--paper) 0 58%,var(--navy-950) 58% 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -170px;
  width: 540px;
  height: 540px;
  border: 95px solid rgba(255,255,255,.045);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 675px;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(380px,.95fr);
  align-items: center;
  gap: 68px;
  padding-block: 74px;
}
.hero-copy h1 { max-width: 740px; margin-bottom: 25px; }
.hero-copy h1 span { color: var(--red-600); }
.hero-copy>p:not(.eyebrow) { max-width: 650px; margin-bottom: 28px; color: var(--slate); font-size: clamp(1.08rem,1.8vw,1.24rem); }
.hero-actions,.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 30px;
  color: var(--navy-800);
  font-size: .89rem;
  font-weight: 800;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border: 9px solid var(--white);
  border-radius: 4px 4px 70px 4px;
  background: var(--navy-800);
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 470px; object-fit: cover; }
.hero-logo-card {
  position: absolute;
  left: -42px;
  bottom: -31px;
  width: min(285px,78%);
  border-top: 5px solid var(--red-600);
  background: var(--white);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
}
.hero-logo-card img { width: 100%; height: auto; }
.hero-note {
  position: absolute;
  top: 24px;
  right: -22px;
  max-width: 170px;
  border-left: 4px solid var(--red-600);
  background: var(--white);
  color: var(--navy-950);
  padding: 12px 15px;
  box-shadow: var(--shadow-sm);
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.35;
}
.service-ribbon { background: var(--red-700); color: var(--white); }
.service-ribbon .shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px 22px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-ribbon span:not(:last-child)::after { content: "★"; margin-left: 22px; color: rgba(255,255,255,.62); }
.intro-grid,.about-grid,.contact-grid,.area-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(330px,.72fr);
  gap: 72px;
  align-items: start;
}
.intro-copy p,.about-copy p { color: var(--slate); font-size: 1.06rem; }
.owner-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px 2px 44px 2px;
  background: var(--navy-950);
  color: rgba(255,255,255,.76);
  padding: 42px;
  box-shadow: var(--shadow-lg);
}
.owner-card::after {
  content: "TN";
  position: absolute;
  right: -15px;
  bottom: -65px;
  color: rgba(255,255,255,.045);
  font-size: 10rem;
  font-weight: 900;
}
.owner-card h2,.owner-card h3 { color: var(--white); }
.owner-card .signature { margin-top: 26px; margin-bottom: 0; color: var(--white); font-size: 1.15rem; font-weight: 800; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 305px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease,box-shadow 180ms ease,border-color 180ms ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 105px;
  height: 105px;
  border: 25px solid rgba(6,29,67,.035);
  transform: rotate(45deg);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(179,14,24,.25); box-shadow: var(--shadow-lg); }
.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 4px 4px 17px 4px;
  background: var(--navy-900);
  color: var(--white);
}
.service-card h3 { margin-bottom: 13px; }
.service-card p { margin-bottom: 21px; color: var(--slate); }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--red-700); font-size: .92rem; font-weight: 850; }
.expectation-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.expectation-card { border-top: 4px solid var(--red-600); background: var(--navy-900); color: rgba(255,255,255,.72); padding: 34px; }
.expectation-card svg { margin-bottom: 28px; color: #ff8c94; }
.expectation-card h3 { color: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 38px; }
.step { position: relative; padding-left: 78px; }
.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 0 0 9px rgba(203,23,34,.08);
}
.step p { color: var(--slate); }
.location-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  color: rgba(255,255,255,.76);
  padding: 60px;
}
.location-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .19;
  background-image: radial-gradient(circle at center,transparent 0 25%,#fff 25.5% 26%,transparent 26.5% 48%,#fff 48.5% 49%,transparent 49.5% 100%);
  transform: translateX(34%);
}
.location-content { position: relative; z-index: 1; max-width: 650px; }
.location-panel h2 { color: var(--white); }
.area-pills { display: flex; flex-wrap: wrap; gap: 9px; margin: 26px 0 32px; }
.area-pills span,.area-pills a {
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  padding: 8px 13px;
  font-size: .82rem;
  font-weight: 750;
}
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: rgba(255,255,255,.75);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: repeating-linear-gradient(135deg,transparent 0 34px,#fff 35px 36px);
}
.page-hero-inner { position: relative; z-index: 1; padding-block: 68px 78px; }
.page-hero h1 { max-width: 900px; margin: 0 0 22px; color: var(--white); font-size: clamp(2.6rem,6vw,5.1rem); }
.page-hero-copy { max-width: 730px; margin: 0; color: rgba(255,255,255,.74); font-size: clamp(1.05rem,2vw,1.23rem); }
.breadcrumb { display: flex; align-items: center; gap: 7px; margin-bottom: 28px; color: rgba(255,255,255,.62); font-size: .8rem; font-weight: 700; }
.breadcrumb a { color: var(--white); }
.detail-list { display: grid; gap: 14px; margin: 22px 0 0; padding: 0; list-style: none; }
.detail-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--slate); }
.detail-list svg { flex: 0 0 auto; margin-top: 4px; color: var(--red-600); }
.service-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.service-detail { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); padding: 34px; box-shadow: var(--shadow-sm); }
.service-detail-head { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.service-detail-head .icon-box { flex: 0 0 auto; margin: 0; }
.service-detail-head h2 { margin: 0; font-size: 1.65rem; }
.service-detail>p { color: var(--slate); }
.scope-note { border-left: 5px solid var(--red-600); background: #fff7f7; padding: 24px 28px; color: #4b2630; }
.scope-note strong { color: var(--navy-950); }
.gallery-intro { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 38px; }
.gallery-intro .section-heading { margin-bottom: 0; }
.sample-note { max-width: 330px; border-left: 4px solid var(--red-600); background: var(--paper); padding: 16px 19px; color: var(--slate); font-size: .86rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 22px; }
.gallery-card { grid-column: span 4; overflow: hidden; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.gallery-card:first-child { grid-column: span 7; }
.gallery-card:nth-child(2) { grid-column: span 5; }
.gallery-card:nth-child(3):last-child { grid-column: 1/-1; }
.gallery-card:nth-child(3):last-child .gallery-image { aspect-ratio: 16/7; }
.gallery-image { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--mist); }
.gallery-card:first-child .gallery-image,.gallery-card:nth-child(2) .gallery-image { aspect-ratio: 16/10; }
.gallery-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.gallery-card:hover .gallery-image img { transform: scale(1.035); }
.sample-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  background: rgba(4,20,47,.9);
  color: var(--white);
  padding: 7px 11px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gallery-caption { padding: 22px 24px 25px; }
.gallery-caption h2,.gallery-caption h3 { margin-bottom: 8px; }
.gallery-caption p { margin: 0; color: var(--slate); font-size: .92rem; }
.value-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 35px; }
.value-item { border: 1px solid var(--border); background: var(--white); padding: 24px; }
.value-item h3 { margin-bottom: 8px; font-size: 1.12rem; }
.value-item p { margin: 0; color: var(--slate); font-size: .92rem; }
.area-map {
  position: relative;
  aspect-ratio: 1;
  max-width: 500px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(203,23,34,.18) 0 3%,transparent 3.5% 27%,rgba(6,29,67,.12) 27.5% 28%,transparent 28.5% 49%,rgba(6,29,67,.1) 49.5% 50%,transparent 50.5% 72%,rgba(6,29,67,.08) 72.5% 73%,transparent 73.5%);
}
.area-map::before,.area-map::after { content: ""; position: absolute; inset: 8%; border-top: 1px solid rgba(6,29,67,.12); border-bottom: 1px solid rgba(6,29,67,.12); transform: rotate(28deg); }
.area-map::after { transform: rotate(-35deg); }
.map-pin {
  position: relative;
  z-index: 1;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 9px solid var(--white);
  border-radius: 50% 50% 50% 7px;
  background: var(--red-600);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: rotate(-45deg);
}
.map-pin span { transform: rotate(45deg); font-size: .8rem; font-weight: 900; line-height: 1.1; text-align: center; }
.town-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.town-card { border: 1px solid var(--border); border-left: 4px solid var(--navy-800); background: var(--white); padding: 24px; }
.town-card h2,.town-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.town-card p { margin: 0; color: var(--slate); font-size: .91rem; }
.faq-list { max-width: 900px; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); box-shadow: var(--shadow-sm); }
.faq-item summary { position: relative; padding: 24px 62px 24px 26px; color: var(--navy-950); font-weight: 850; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-50%);
}
.faq-item[open] summary::after { content: "−"; background: var(--red-600); }
.faq-answer { border-top: 1px solid var(--border); padding: 20px 26px 25px; color: var(--slate); }
.faq-answer p:last-child { margin-bottom: 0; }
.contact-grid { grid-template-columns: minmax(0,.9fr) minmax(390px,1.1fr); }
.contact-card-stack { display: grid; gap: 14px; }
.contact-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.contact-card .icon-box { margin: 0; }
.contact-card strong,.contact-card span { display: block; }
.contact-card strong { color: var(--navy-950); }
.contact-card span { color: var(--slate); font-size: .9rem; overflow-wrap: anywhere; }
.contact-card>svg { color: var(--red-600); }
.request-checklist { border-radius: var(--radius-md); background: var(--navy-950); color: rgba(255,255,255,.73); padding: 42px; }
.request-checklist h2 { color: var(--white); font-size: 2rem; }
.request-checklist ol { display: grid; gap: 18px; margin: 28px 0 32px; padding: 0; list-style: none; counter-reset: request; }
.request-checklist li { position: relative; padding-left: 50px; counter-increment: request; }
.request-checklist li::before {
  content: counter(request);
  position: absolute;
  left: 0;
  top: -3px;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  font-size: .8rem;
  font-weight: 900;
}
.cta-section { background: var(--red-700); color: rgba(255,255,255,.78); }
.cta-inner { min-height: 330px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; padding-block: 62px; }
.cta-inner h2 { max-width: 700px; margin-bottom: 14px; color: var(--white); }
.cta-inner p:last-child { max-width: 630px; margin-bottom: 0; }
.cta-actions { max-width: 330px; flex-direction: column; }
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.64); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .6fr .9fr 1.1fr; gap: 45px; padding-block: 76px 60px; }
.footer-brand img { width: 230px; margin-bottom: 22px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { max-width: 320px; }
.site-footer h2 { margin-bottom: 20px; color: var(--white); font-size: 1rem; letter-spacing: .05em; text-transform: uppercase; }
.site-footer .text-link { color: #ff8992; }
.footer-links,.contact-list { display: grid; gap: 10px; }
.footer-links a,.contact-list a { transition: color 160ms ease; }
.footer-links a:hover,.contact-list a:hover { color: var(--white); }
.contact-list a { display: flex; align-items: flex-start; gap: 9px; }
.contact-list svg { flex: 0 0 auto; margin-top: 3px; color: #ff8992; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; font-size: .77rem; }
.footer-bottom p { max-width: 570px; margin: 0; }

@media (max-width:1100px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .mobile-menu { display: block; margin-left: 0; }
  .hero { background: linear-gradient(112deg,var(--paper) 0 63%,var(--navy-950) 63% 100%); }
  .hero-grid { grid-template-columns: minmax(0,1.05fr) minmax(330px,.8fr); gap: 42px; }
  .service-grid,.town-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.25fr .7fr 1fr; }
  .footer-grid>div:last-child { grid-column: 1/-1; }
}
@media (max-width:820px) {
  :root { --shell: min(100% - 30px,720px); }
  .topbar-area { display: none; }
  .header-inner { min-height: 82px; }
  .brand { width: 140px; }
  .brand img { height: 68px; }
  .mobile-menu nav { top: 82px; }
  .hero { background: var(--paper); }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 56px; padding-block: 64px 86px; }
  .hero-copy h1 { max-width: 680px; }
  .hero-visual { width: min(620px,100%); margin-inline: auto; }
  .hero-logo-card { left: 20px; }
  .hero-note { right: 17px; }
  .service-ribbon span:nth-child(n+5) { display: none; }
  .intro-grid,.about-grid,.contact-grid,.area-grid { grid-template-columns: 1fr; gap: 44px; }
  .service-grid,.expectation-grid,.steps-grid,.service-detail-grid { grid-template-columns: 1fr; }
  .step { min-height: 76px; }
  .gallery-card,.gallery-card:first-child,.gallery-card:nth-child(2) { grid-column: span 6; }
  .gallery-card:first-child { grid-column: 1/-1; }
  .gallery-card:nth-child(3):last-child { grid-column: 1/-1; }
  .cta-inner { min-height: auto; grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { max-width: 420px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid>div:last-child { grid-column: auto; }
}
@media (max-width:560px) {
  body { font-size: 16px; }
  .topbar-inner { min-height: 42px; }
  .topbar-inner>span:first-child { display: none; }
  .topbar-inner a { width: 100%; justify-content: center; }
  .header-cta { display: none; }
  .brand { width: 132px; }
  .mobile-menu { margin-left: auto; }
  .hero-grid { padding-block: 52px 78px; }
  .hero-actions .button { width: 100%; }
  .hero-badges { display: grid; }
  .hero-photo,.hero-photo img { height: 370px; min-height: 370px; }
  .hero-logo-card { width: 220px; left: 12px; bottom: -28px; }
  .hero-note { top: 14px; right: 10px; }
  .service-ribbon .shell { gap: 8px 14px; padding-block: 17px; }
  .service-ribbon span:not(:last-child)::after { margin-left: 14px; }
  .section { padding: 76px 0; }
  .section-tight { padding: 58px 0; }
  .owner-card,.location-panel,.request-checklist { padding: 30px 24px; }
  .service-grid,.town-grid,.value-list { grid-template-columns: 1fr; }
  .service-card,.service-detail { padding: 25px; }
  .gallery-intro { display: block; }
  .sample-note { margin-top: 23px; }
  .gallery-card,.gallery-card:first-child,.gallery-card:nth-child(2) { grid-column: 1/-1; }
  .gallery-card:first-child .gallery-image,.gallery-card:nth-child(2) .gallery-image,.gallery-card:nth-child(3):last-child .gallery-image { aspect-ratio: 4/3; }
  .page-hero-inner { padding-block: 52px 62px; }
  .contact-card { grid-template-columns: 50px 1fr; }
  .contact-card>svg { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { display: grid; }
}
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { scroll-behavior: auto!important; transition-duration: .01ms!important; }
}
