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

:root {
  --ink: #000000;
  --ink-2: #16130e;
  --muted: #686256;
  --line: #e3ddd0;
  --paper: #faf8f3;
  --soft: #f2efe7;
  --gold: #d6b072;
  --gold-2: #b8893c;
  --gold-deep: #7a521c;
  --gold-hi: #f3ead4;
  --gold-rgb: 214, 176, 114;
  --gold-2-rgb: 184, 137, 60;
  --gold-hi-rgb: 243, 234, 212;
  --gold-grad: linear-gradient(95deg, #f6f1e3 0%, #e2c48c 36%, #c9a05c 68%, #7a521c 100%);
  --header-offset: 152px;
  --max: 1180px;
  --radius: 14px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  padding-top: var(--header-offset);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Top bar */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1100;
  background: var(--ink);
  color: var(--gold-hi);
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.22);
}
.topbar-inner {
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.45rem 0;
}
.topbar a:hover { color: var(--gold); }
.topbar-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-item svg { width: 14px; height: 14px; opacity: .9; color: var(--gold); }

/* Header */
.site-header {
  position: fixed;
  top: 40px;
  left: 0; right: 0;
  z-index: 1090;
  background: #000;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.32);
}
.header-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 8px;
}
.brand {
  display: flex;
  align-items: center;
  color: var(--gold-hi);
  min-width: 0;
}
.brand img {
  width: auto;
  height: 96px;
  object-fit: contain;
}
@media (max-width: 700px) {
  .brand img { height: 72px; }
  .header-inner { min-height: 88px; }
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop > li { position: relative; }
.nav-desktop > li > a,
.nav-desktop > li > button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.7rem;
  border: 0;
  background: transparent;
  color: var(--gold-hi);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border-radius: 8px;
}
.nav-desktop > li > a:hover,
.nav-desktop > li > a[aria-current="page"],
.nav-desktop > li > button:hover { color: var(--gold); }
.dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 220px;
  background: #0a0a0a;
  border: 1px solid rgba(var(--gold-rgb), 0.38);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.45rem;
  display: none;
}
.nav-desktop > li:hover > .dropdown,
.nav-desktop > li:focus-within > .dropdown { display: block; }
@media (min-width: 1040px) {
  .dropdown-services {
    min-width: 440px;
  }
  .nav-desktop > li:hover > .dropdown-services,
  .nav-desktop > li:focus-within > .dropdown-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .dropdown-services a:first-child {
    grid-column: 1 / -1;
  }
}
.dropdown a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-hi);
}
.dropdown a:hover { background: rgba(var(--gold-rgb), 0.14); color: var(--gold); }
.header-cta { display: flex; align-items: center; gap: 0.55rem; }
.menu-toggle {
  display: inline-flex;
  border: 1px solid rgba(var(--gold-rgb), 0.5);
  background: transparent;
  color: var(--gold-hi);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.nav-mobile {
  display: none;
  border-top: 1px solid rgba(var(--gold-rgb), 0.22);
  background: #000;
  padding: 0.75rem 1.25rem 1.1rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a, .nav-mobile summary {
  display: block;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(247, 241, 228, 0.12);
  font-weight: 600;
  color: var(--gold-hi);
}
.nav-mobile details a { padding-left: 0.75rem; font-weight: 500; color: #c9b48a; }

@media (min-width: 1040px) {
  .menu-toggle { display: none; }
  .nav-desktop { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-primary {
  background: var(--gold-grad);
  color: var(--ink-2);
  box-shadow: 0 8px 22px rgba(var(--gold-2-rgb), 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(var(--gold-2-rgb), 0.42);
}
.btn-dark {
  background: var(--ink);
  color: var(--gold-hi);
  border: 1px solid rgba(var(--gold-rgb), 0.35);
}
.btn-dark:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-light {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-light:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--gold-hi);
  border: 1px solid rgba(var(--gold-rgb), 0.7);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* Typography helpers */
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.7rem;
}
.gradient-heading,
h1.gradient-heading,
h2.gradient-heading {
  background: linear-gradient(100deg, var(--ink) 18%, var(--gold-2) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 0.65rem; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 750; }
p { margin: 0 0 1rem; color: var(--muted); }
.lede { font-size: 1.05rem; max-width: 40rem; }

/* Hero */
.hero {
  position: relative;
  color: #fff;
  overflow: visible;
  min-height: min(72svh, 640px);
  display: flex;
  align-items: center;
}
.hero > .container {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3.4rem) 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.62) 48%, rgba(18,16,12,.5) 100%),
    url("../assets/images/interior-01.jpg") center/cover no-repeat,
    linear-gradient(135deg, #000000, #1c1812);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  width: min(100% - 2rem, var(--max));
  padding: clamp(2rem, 5vw, 3.4rem) 0;
}
@media (max-width: 799px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 { color: #fff; -webkit-text-fill-color: #fff; background: none; }
.hero .slogan {
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  color: var(--gold-hi);
  margin: 0 0 0.85rem;
}
.hero p { color: rgba(var(--gold-hi-rgb), .88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.2rem 0 0; }
.hero-note { font-size: 0.9rem; color: rgba(var(--gold-hi-rgb), .78); }
.hero-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(var(--gold-rgb), 0.28);
}
.hero-card h3 { margin-bottom: 0.45rem; }
.hero-card > p { font-size: 0.92rem; }
.estimate-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}
.estimate-promise span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--gold-grad);
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.hero .estimate-promise {
  margin: 1rem 0 0;
}
.hero .estimate-promise span {
  background: var(--gold-grad);
  color: var(--ink-2);
  box-shadow: 0 6px 18px rgba(var(--gold-2-rgb), 0.35);
  font-size: 0.88rem;
}
.hero-card .estimate-embed { min-height: 960px; height: 960px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.4rem;
}
.stat {
  background: rgba(var(--gold-rgb), .08);
  border: 1px solid rgba(var(--gold-rgb), .22);
  border-radius: 12px;
  padding: 0.85rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--gold);
}
.stat span { color: rgba(var(--gold-hi-rgb), .78); font-size: 0.82rem; }

/* Sections */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-soft { background: var(--soft); }
.section-dark {
  background: linear-gradient(180deg, #000000 0%, #16130e 100%);
  color: #fff;
}
.section-dark p { color: rgba(var(--gold-hi-rgb), .78); }
.section-dark h2 {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
}
.section-head { margin-bottom: 1.8rem; max-width: 44rem; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(var(--gold-rgb), .16);
  color: var(--gold-deep);
  margin-right: 0.35rem;
}
.badge-dark { background: rgba(0,0,0,.08); color: var(--ink); }

.cards-3, .cards-2, .cards-4 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) {
  .cards-2 { grid-template-columns: 1.1fr 0.9fr; gap: 1.5rem; align-items: start; }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
}

.service-card, .feature-card, .loc-card, .faq details, .panel, .gallery-item, .blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.service-card, .feature-card, .loc-card, .blog-card, .panel { padding: 1.25rem; overflow: hidden; }
.service-card, .loc-card, .blog-card {
  transition: transform .2s ease, box-shadow .2s ease;
  display: block;
}
.service-card:hover, .loc-card:hover, .blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(var(--gold-2-rgb), 0.45);
}
.service-card p, .feature-card p, .loc-card p, .blog-card p { margin-bottom: 0.35rem; }
.service-card .more {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 700;
  color: var(--gold-2);
}

.feature-card h3 { margin-bottom: 0.4rem; }
.feature-card .more {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 700;
  color: var(--gold-2);
}
.icon-dot {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(var(--gold-rgb), .16);
  color: var(--gold-2);
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.icon-dot svg {
  width: 22px;
  height: 22px;
}

.loc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}
.loc-pills a {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  font-size: 0.88rem;
}
.loc-pills a:hover, .loc-pills a.is-primary {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--gold);
}

.map-panel {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}
.map-panel iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

.faq details { padding: 0.95rem 1.1rem; margin-bottom: 0.7rem; }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold-2);
  font-weight: 800;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0.7rem 0 0; }

.cta-band {
  background: var(--gold-grad);
  color: var(--ink-2);
  border-radius: 18px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .cta-band { grid-template-columns: 1.4fr 1fr; align-items: center; }
}
.cta-band h2, .cta-band h3 {
  color: var(--ink-2);
  -webkit-text-fill-color: var(--ink-2);
  background: none;
}
.cta-band p { color: rgba(22, 19, 14, .82); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.page-hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(0,0,0,.82) 0%, rgba(20,18,14,.72) 55%, rgba(48,40,26,.68) 100%),
    url("../assets/images/interior-10.jpg") center/cover no-repeat;
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.page-hero h1 {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
}
.page-hero p { color: rgba(var(--gold-hi-rgb), .84); max-width: 40rem; }
.page-hero .kicker { color: var(--gold); }

.process {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}
@media (min-width: 800px) { .process { grid-template-columns: repeat(5, 1fr); } }
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
}
.process-step .num {
  width: 34px; height: 34px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: var(--gold-grad);
  color: var(--ink-2);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.estimate-embed, .booking-embed {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.estimate-embed { min-height: 960px; height: 960px; }
.booking-embed { min-height: 720px; }
.estimate-embed iframe, .booking-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}
.reviews-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}
.review-stars {
  margin: 0 0 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  line-height: 1;
}
.review-card p { margin: 0 0 0.9rem; }
.review-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--ink-2);
}
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.7rem; }

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { overflow: hidden; min-height: 220px; padding: 0; }
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
@media (min-width: 800px) {
  .photo-band { grid-template-columns: repeat(4, 1fr); }
}
.photo-band a,
.photo-band img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}
.card-photo {
  width: calc(100% + 2.5rem);
  max-width: none;
  height: 160px;
  object-fit: cover;
  margin: -1.25rem -1.25rem 1rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
.feature-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.contact-photo {
  height: auto;
  aspect-ratio: 3 / 4;
  max-height: 560px;
  object-position: center 15%;
}
.ph {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.2rem;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(0,0,0,.92), rgba(var(--gold-2-rgb),.75)),
    repeating-linear-gradient(-45deg, rgba(var(--gold-hi-rgb),.05) 0 8px, transparent 8px 16px);
  font-weight: 700;
}
.ph small { display: block; margin-top: 0.35rem; font-weight: 500; opacity: .9; }

.missing-flag {
  border-left: 4px solid var(--gold-2);
  background: rgba(var(--gold-rgb), .12);
  padding: 0.85rem 1rem;
  border-radius: 0 10px 10px 0;
  color: var(--ink);
  font-size: 0.92rem;
}

.owner-note {
  display: grid;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 700px) { .owner-note { grid-template-columns: 1fr; } }
.owner-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  display: block;
}
.owner-avatar {
  width: auto;
  min-width: 160px;
  min-height: 88px;
  padding: 0.9rem 1.15rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--gold-grad);
  color: var(--ink-2);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(var(--gold-hi-rgb), .82);
  padding: 3rem 0 1.4rem;
  border-top: 1px solid rgba(var(--gold-rgb), 0.28);
}
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; }
}
.site-footer h4 {
  color: var(--gold-hi);
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.footer-brand img {
  width: 180px;
  height: auto;
  margin-bottom: 0.8rem;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--gold-rgb), .18);
  font-size: 0.86rem;
  color: rgba(var(--gold-hi-rgb), .55);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: rise .7s ease both; }
  .reveal-delay-1 { animation-delay: .1s; }
  .reveal-delay-2 { animation-delay: .2s; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }
}

.section { padding: clamp(2.2rem, 5.5vw, 4.2rem) 0; }

.service-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
@media (min-width: 520px) {
  .service-teaser { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .service-teaser { grid-template-columns: repeat(3, 1fr); }
}
.service-teaser a {
  display: block;
  padding: 0.95rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
  color: var(--ink);
}
.service-teaser a:hover {
  border-color: var(--gold-2);
  color: var(--gold-deep);
}

.why-headlines {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
@media (min-width: 700px) {
  .why-headlines { grid-template-columns: 1fr 1fr; }
}
.why-headlines h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
}
.why-headlines .feature-card { padding: 1rem 1.1rem; }

.highlights-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
@media (min-width: 640px) {
  .highlights-strip { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1040px) {
  .highlights-strip { grid-template-columns: repeat(4, 1fr); }
}
.highlight-item {
  background: rgba(var(--gold-rgb), .08);
  border: 1px solid rgba(var(--gold-rgb), .28);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  color: var(--gold-hi);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
}
.section-dark .highlight-item { color: var(--gold-hi); }

.prose { max-width: 42rem; }
.prose p { font-size: 1.05rem; }
.prose .closer {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.12rem;
}

.subhead {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
  margin: 0 0 1.2rem;
}

.why-list {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 760px) {
  .why-list { grid-template-columns: 1fr 1fr; }
}
.why-list article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
}
.why-list h3 { margin-bottom: 0.35rem; font-size: 1.08rem; }
.why-list p { margin: 0; }
.why-list .icon-dot { margin-bottom: 0.7rem; }

.feature-card h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  margin-bottom: 0.55rem;
}
.home-visual {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 760px) {
  .home-visual { grid-template-columns: 1.05fr 0.95fr; gap: 1.75rem; }
}
.home-visual.is-flip .home-visual-media { order: 2; }
@media (min-width: 760px) {
  .home-visual.is-flip .home-visual-copy { order: 1; }
  .home-visual.is-flip .home-visual-media { order: 2; }
}
.home-visual-media img,
.home-visual-media .feature-photo {
  width: 100%;
  height: min(380px, 52vw);
  object-fit: cover;
  border-radius: var(--radius);
}
.home-faq {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 860px) {
  .home-faq { grid-template-columns: 0.85fr 1.15fr; }
}

.service-points {
  margin: 0;
  padding-left: 1.15rem;
}
.service-points li {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.faq details { padding: 0.95rem 1.1rem; margin-bottom: 0.7rem; }

.seo-copy { max-width: 48rem; }
.seo-copy h2 { margin: 0 0 0.85rem; }
.seo-copy h3 { margin: 1.4rem 0 0.55rem; font-size: 1.12rem; }
.seo-copy p { font-size: 1.04rem; }
.related-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.35rem 0 0.4rem;
}
.related-row a {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  font-size: 0.88rem;
}
.related-row a:hover {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 700px) {
  .topbar { font-size: 0.78rem; }
  .cta-band { padding: 1.25rem 1.1rem; }
  .footer-grid { gap: 1.75rem; }
}

.crumbs {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  padding: 1.1rem 0 0;
}
.crumbs a { font-weight: 600; color: var(--gold-2); }
.crumbs a:hover { color: var(--gold-deep); }

.gallery-item figcaption {
  padding: 0.7rem 0.95rem 0.95rem;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}
.gallery-item figcaption span {
  display: block;
  font-weight: 500;
  color: var(--gold-2);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.faq-group { margin-bottom: 2.2rem; }
.faq-group > h2 { margin-bottom: 0.95rem; }

.nap-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  margin: 1.2rem 0;
}
.nap-block strong { display: block; margin-bottom: 0.35rem; }
.nap-block p { margin: 0; color: var(--ink); }

.topic-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.topic-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: var(--muted);
  font-weight: 600;
}
.topic-list a { color: var(--ink); }
.topic-list a:hover { color: var(--gold-2); }

.process-stack {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 860px) {
  .process-stack { grid-template-columns: 1fr 1fr; }
}
.process-stack .process-step:last-child {
  grid-column: 1 / -1;
}

.service-block .more { margin-top: 0.55rem; }
.service-block p { margin-bottom: 0.75rem; }
.service-block h3 { margin-top: 0.15rem; }

.prose-wide { max-width: 48rem; }
.prose-wide h2 { margin-top: 0; }

.split-copy {
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) {
  .split-copy { grid-template-columns: 1fr 1fr; }
}
