:root {
  --navy-950: #1f191d;
  --navy-900: #30252b;
  --navy-800: #46363e;
  --burgundy: #8a555e;
  --burgundy-dark: #684048;
  --ivory: #f5efe7;
  --ivory-deep: #e9dfd3;
  --stone: #ddd5cc;
  --white: #fffaf4;
  --charcoal: #282326;
  --slate: #6d666a;
  --line: rgba(48, 37, 43, 0.17);
  --shadow: 0 22px 62px rgba(46, 35, 41, 0.14);
  --shadow-sm: 0 10px 30px rgba(46, 35, 41, 0.11);
  --radius: 6px;
  --radius-lg: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--navy-950);
  border: 1px solid var(--navy-950);
}
.skip-link:focus { top: 1rem; }

.announcement {
  background: var(--navy-950);
  color: rgba(255,255,255,.88);
  font-size: .82rem;
  letter-spacing: .035em;
}
.announcement .wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.announcement strong { color: #fff; font-weight: 600; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 231, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 84px;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  min-width: 255px;
}
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-copy { line-height: 1.08; }
.brand-name {
  display: block;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--navy-950);
  font-size: 1.08rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.brand-sub {
  display: block;
  margin-top: .3rem;
  color: var(--slate);
  font-size: .68rem;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.45rem;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--navy-900);
  font-size: .91rem;
  font-weight: 600;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.55rem;
  height: 2px;
  background: var(--burgundy);
  transition: right .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy-950);
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .78rem 1.22rem;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .015em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy-900); color: #fff; box-shadow: 0 10px 24px rgba(23, 36, 58, .18); }
.btn-primary:hover { background: var(--navy-950); }
.btn-accent { background: var(--burgundy); color: #fff; box-shadow: 0 10px 24px rgba(109, 37, 49, .18); }
.btn-accent:hover { background: var(--burgundy-dark); }
.btn-outline { background: transparent; border-color: var(--navy-900); color: var(--navy-900); }
.btn-outline:hover { background: var(--navy-900); color: #fff; }
.btn-light { background: var(--white); color: var(--navy-950); }
.btn-compact { min-height: 42px; padding: .62rem .95rem; font-size: .86rem; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245,239,231,.98) 0%, rgba(245,239,231,.96) 44%, rgba(245,239,231,.20) 73%, rgba(245,239,231,0) 100%),
    url('../images/storefront.webp') center/cover no-repeat;
  min-height: 690px;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 89px, rgba(23,36,58,.028) 90px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: flex;
  align-items: center;
}
.hero-copy { max-width: 660px; padding: 70px 0 84px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.25rem;
  color: var(--burgundy);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 38px; height: 1px; background: currentColor; }
h1, h2, h3, h4 {
  margin: 0 0 .8rem;
  color: var(--navy-950);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}
h1 { font-size: clamp(3.1rem, 7vw, 6.35rem); letter-spacing: -.045em; max-width: 800px; }
h2 { font-size: clamp(2.25rem, 4.6vw, 4.15rem); letter-spacing: -.035em; }
h3 { font-size: 1.45rem; }
.hero-lead { max-width: 620px; margin: 1.5rem 0 0; font-size: 1.12rem; color: #41454b; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 2.35rem;
  max-width: 740px;
}
.meta-card {
  padding: .95rem 1rem;
  border-top: 1px solid rgba(23,36,58,.45);
  background: rgba(255,250,244,.78);
  backdrop-filter: blur(4px);
}
.meta-card strong { display: block; color: var(--navy-950); font-family: Georgia, serif; font-size: 1.07rem; }
.meta-card span { display: block; margin-top: .25rem; color: var(--slate); font-size: .78rem; }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 96px;
  padding: 1rem;
  border-right: 1px solid var(--line);
  color: var(--navy-900);
  text-align: center;
  font-size: .88rem;
  font-weight: 700;
}
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 22px; height: 22px; stroke: var(--burgundy); flex: 0 0 auto; }

.section { padding: 105px 0; }
.section-sm { padding: 78px 0; }
.section-white { background: var(--white); }
.section-stone { background: var(--stone); }
.section-navy { background: var(--navy-900); color: rgba(255,255,255,.82); }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .eyebrow { color: #d4aeb5; }
.section-header { max-width: 760px; margin-bottom: 3rem; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-copy { color: var(--slate); font-size: 1.02rem; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
  background: #dcd8d0;
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.image-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.64);
  pointer-events: none;
}
.kicker-panel {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--burgundy);
  background: var(--white);
  color: var(--navy-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.24rem;
}

.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.service-card {
  position: relative;
  min-height: 290px;
  padding: 1.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: rgba(109,37,49,.35); }
.service-card::before {
  content: attr(data-number);
  position: absolute;
  right: 1rem;
  top: .55rem;
  color: rgba(23,36,58,.065);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.2rem;
  line-height: 1;
}
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.75rem;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  border-radius: 50%;
}
.service-icon svg { width: 24px; height: 24px; stroke: currentColor; }
.service-card h3 { max-width: 12ch; }
.service-card p { color: var(--slate); margin: 0; font-size: .91rem; }
.service-card .text-link { display: inline-block; margin-top: 1.15rem; color: var(--burgundy); font-weight: 800; text-decoration: none; }

.price-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}
.price-column { padding: 2rem 2.3rem; }
.price-column + .price-column { border-left: 1px solid rgba(255,255,255,.18); }
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .88rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.price-row:last-child { border-bottom: 0; }
.price-row span { color: rgba(255,255,255,.75); }
.price-row strong { color: #fff; white-space: nowrap; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feature {
  padding: 1.7rem;
  border-top: 1px solid rgba(255,255,255,.34);
}
.feature strong { display: block; color: #fff; font-family: Georgia, serif; font-size: 1.35rem; margin-bottom: .55rem; }
.feature p { margin: 0; color: rgba(255,255,255,.72); }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.review-card {
  display: flex;
  flex-direction: column;
  min-height: 315px;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stars { color: #a66a2b; letter-spacing: .13em; font-size: .92rem; }
.review-card blockquote { margin: 1.2rem 0 1.6rem; color: #42464b; font-family: Georgia, serif; font-size: 1.08rem; line-height: 1.6; }
.review-author { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.review-author strong { display: block; color: var(--navy-950); }
.review-author span { color: var(--slate); font-size: .82rem; }
.rating-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  margin-bottom: 2rem;
  background: var(--navy-900);
  color: #fff;
}
.rating-panel strong { font-family: Georgia, serif; font-size: 1.4rem; }

.gallery { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1rem; }
.gallery-main, .gallery-stack > figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.gallery-main { min-height: 580px; }
.gallery-stack { display: grid; gap: 1rem; }
.gallery-stack > figure { min-height: 282px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gallery figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .62rem .85rem;
  background: rgba(16,24,39,.86);
  color: #fff;
  font-size: .78rem;
}

.payment-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem; }
.payment-item {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  font-weight: 700;
  color: var(--navy-900);
}
.payment-item svg { width: 30px; height: 30px; stroke: var(--burgundy); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 1rem; align-items: stretch; }
.contact-panel {
  padding: 2.5rem;
  background: var(--navy-900);
  color: rgba(255,255,255,.8);
  min-height: 500px;
}
.contact-panel h2, .contact-panel h3 { color: #fff; }
.contact-line { padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-line small { display: block; margin-bottom: .3rem; color: #d6b7bd; text-transform: uppercase; letter-spacing: .15em; font-size: .68rem; font-weight: 800; }
.contact-line a { color: #fff; text-decoration: none; font-size: 1.18rem; font-weight: 700; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table td { padding: .54rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hours-table td:last-child { text-align: right; color: #fff; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .55rem .75rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.2);
  font-weight: 700;
  color: #fff;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #b8c8bd; }
.status-pill.is-open .status-dot { background: #6fd08a; box-shadow: 0 0 0 4px rgba(111,208,138,.12); }
.map { min-height: 500px; border: 0; width: 100%; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border: 0;
  background: transparent;
  color: var(--navy-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  text-align: left;
  cursor: pointer;
}
.faq-question span:last-child { font-family: Inter, sans-serif; font-size: 1.45rem; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: none; max-width: 850px; padding: 0 0 1.3rem; color: var(--slate); }
.faq-question[aria-expanded="true"] + .faq-answer { display: block; }

.page-hero {
  padding: 95px 0 82px;
  background:
    linear-gradient(135deg, rgba(23,36,58,.97), rgba(16,24,39,.94)),
    url('../images/interior.webp') center/cover;
  color: #fff;
}
.page-hero h1 { color: #fff; font-size: clamp(3rem, 7vw, 5.3rem); }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.75); font-size: 1.08rem; }
.breadcrumb { margin-bottom: 1rem; color: #d3b5bb; font-size: .79rem; text-transform: uppercase; letter-spacing: .13em; }

.price-list { display: grid; gap: 2rem; }
.price-category { background: var(--white); border: 1px solid var(--line); }
.price-category h2 {
  padding: 1.15rem 1.3rem;
  margin: 0;
  background: var(--navy-900);
  color: #fff;
  font-size: 1.6rem;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 1rem 1.3rem; border-bottom: 1px solid var(--line); text-align: left; }
.price-table th { color: var(--slate); font-size: .76rem; text-transform: uppercase; letter-spacing: .13em; }
.price-table td:last-child, .price-table th:last-child { text-align: right; white-space: nowrap; font-weight: 800; color: var(--navy-950); }
.price-table tr:last-child td { border-bottom: 0; }
.notice { padding: 1.2rem 1.35rem; background: #efe5df; border-left: 4px solid var(--burgundy); color: #4f4042; }

.service-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.service-group { padding: 2rem; background: var(--white); border: 1px solid var(--line); }
.service-group ul { columns: 2; padding-left: 1.1rem; color: var(--slate); }
.service-group li { break-inside: avoid; margin-bottom: .55rem; }

.cta-band {
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(23,36,58,.98), rgba(23,36,58,.86)),
    url('../images/storefront.webp') center/cover;
  color: #fff;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { color: #fff; max-width: 700px; }
.cta-band p { max-width: 660px; color: rgba(255,255,255,.75); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.site-footer { background: var(--navy-950); color: rgba(255,255,255,.69); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 2rem; padding: 70px 0 50px; }
.footer-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-brand img { width: 74px; height: 74px; }
.footer-brand strong { display: block; color: #fff; font-family: Georgia, serif; font-size: 1.2rem; }
.footer-title { color: #fff; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .76rem; margin-bottom: 1rem; }
.footer-links { display: grid; gap: .65rem; }
.footer-links a { color: rgba(255,255,255,.69); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 1rem; font-size: .78rem; }

.mobile-bar { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .navbar { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 20px 1.4rem;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .6rem 0; }
  .nav-actions .btn { display: none; }
  .hero { background-position: 62% center; }
  .hero::before { content: ""; position: absolute; inset: 0; background: rgba(245,239,231,.22); }
  .hero-copy { max-width: 610px; }
  .hero-meta { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 45px; }
  .feature-grid, .review-grid { grid-template-columns: repeat(2,1fr); }
  .feature-grid .feature:last-child { grid-column: span 2; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-stack { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { padding-bottom: 68px; }
  .wrap { width: min(100% - 28px, var(--max)); }
  .announcement .wrap { justify-content: center; text-align: center; min-height: 34px; }
  .announcement span:last-child { display: none; }
  .navbar { min-height: 72px; gap: .6rem; }
  .brand { min-width: 0; }
  .brand img { width: 48px; height: 48px; }
  .brand-name { font-size: .84rem; }
  .brand-sub { font-size: .56rem; letter-spacing: .13em; }
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(245,239,231,.99) 0%, rgba(245,239,231,.97) 58%, rgba(245,239,231,.52) 100%),
      url('../images/storefront.webp') center bottom/cover no-repeat;
  }
  .hero-inner { min-height: auto; align-items: flex-start; }
  .hero-copy { padding: 58px 0 270px; }
  h1 { font-size: clamp(3rem, 16vw, 4.55rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.1rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .btn:first-child { grid-column: 1 / -1; }
  .hero-meta { grid-template-columns: 1fr 1fr; margin-top: 1.6rem; }
  .meta-card { background: rgba(255,250,244,.90); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { min-height: 78px; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:last-child { grid-column: 1/-1; }
  .section { padding: 76px 0; }
  .section-sm { padding: 60px 0; }
  .section-header { margin-bottom: 2rem; }
  .cards, .feature-grid, .review-grid, .service-groups, .contact-grid { grid-template-columns: 1fr; }
  .feature-grid .feature:last-child { grid-column: auto; }
  .service-card { min-height: auto; }
  .image-frame { min-height: 410px; }
  .price-preview { grid-template-columns: 1fr; }
  .price-column + .price-column { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .gallery-main { min-height: 420px; }
  .gallery-stack { grid-template-columns: 1fr; }
  .gallery-stack > figure { min-height: 330px; }
  .payment-grid { grid-template-columns: repeat(2,1fr); }
  .payment-item:last-child { grid-column: 1 / -1; }
  .contact-panel { padding: 2rem 1.4rem; min-height: auto; }
  .map { min-height: 420px; }
  .cta-inner { display: block; }
  .cta-actions { margin-top: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; padding: 55px 0 35px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; padding-bottom: 1.8rem; }
  .service-group ul { columns: 1; }
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr { padding: .9rem 1.1rem; border-bottom: 1px solid var(--line); }
  .price-table td { padding: .2rem 0; border: 0; }
  .price-table td:last-child { text-align: left; margin-top: .3rem; color: var(--burgundy); }
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    min-height: 68px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(20,28,43,.13);
  }
  .mobile-bar a {
    display: grid;
    place-items: center;
    text-decoration: none;
    color: var(--navy-900);
    font-weight: 800;
    font-size: .82rem;
    border-right: 1px solid var(--line);
  }
  .mobile-bar a:first-child { background: var(--burgundy); color: #fff; }
}

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

/* 2026 refined editorial theme: charcoal, parchment and muted mulberry */
:root {
  --pewter: #a89f98;
  --parchment: #f5efe7;
  --mulberry-soft: #b7858e;
}

.nav-links { gap: 1.05rem; }
.nav-links a { font-size: .86rem; }
.brand-name { letter-spacing: .055em; }

.section-ink {
  background: linear-gradient(135deg, #2f252b 0%, #20191d 100%);
  color: rgba(255,255,255,.80);
}
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink .eyebrow { color: #d8afb6; }
.section-ink .section-copy { color: rgba(255,255,255,.72); }

.signature-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: 1500px;
  margin: 0 auto;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.signature-image { min-height: 620px; overflow: hidden; background: #d8d0c6; }
.signature-image picture, .signature-image img { width: 100%; height: 100%; }
.signature-image img { object-fit: cover; }
.signature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
  background:
    linear-gradient(90deg, rgba(48,37,43,.025) 1px, transparent 1px) 0 0 / 82px 82px,
    var(--white);
}
.signature-copy h2 { max-width: 12ch; }
.signature-copy > p { max-width: 620px; color: var(--slate); font-size: 1.08rem; }
.signature-details { display: flex; flex-wrap: wrap; gap: .65rem 1.4rem; margin-top: 1.6rem; color: var(--navy-900); font-size: .84rem; font-weight: 700; }
.signature-details span { display: inline-flex; align-items: center; gap: .45rem; }
.signature-details span::before { content: ""; width: 18px; height: 1px; background: var(--burgundy); }

.home-faq { border-top: 1px solid var(--line); }
.faq-preview-grid { align-items: start; }

.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.principle { padding: 2rem; background: var(--white); border: 1px solid var(--line); min-height: 270px; }
.principle > span { display: block; margin-bottom: 2rem; color: var(--burgundy); font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; }
.principle p { color: var(--slate); }

.fact-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.fact-list div { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.25); }
.fact-list strong { display: block; color: #fff; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; line-height: 1; }
.fact-list span { display: block; margin-top: .45rem; color: rgba(255,255,255,.64); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.process-card { position: relative; padding: 2rem; border-top: 2px solid var(--navy-900); background: var(--white); }
.process-card > span { display: block; color: var(--burgundy); font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.4rem; line-height: 1; margin-bottom: 1.6rem; }
.process-card p { color: var(--slate); }

.faq-page-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 5rem; align-items: start; }
.faq-aside { position: sticky; top: 120px; }
.contact-mini { display: grid; gap: .35rem; margin: 1.6rem 0; padding: 1.2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-mini strong { color: var(--navy-950); font-size: 1.25rem; }
.contact-mini span { color: var(--slate); }
.editorial-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.editorial-list li { position: relative; padding: .85rem 0 .85rem 1.7rem; border-bottom: 1px solid var(--line); color: var(--slate); }
.editorial-list li::before { content: ""; position: absolute; left: 0; top: 1.45rem; width: 9px; height: 9px; border: 1px solid var(--burgundy); transform: rotate(45deg); }

.page-hero-about {
  background:
    linear-gradient(110deg, rgba(47,37,43,.98), rgba(47,37,43,.80)),
    url('../images/storefront.webp') center/cover;
}
.page-hero-faq {
  background:
    linear-gradient(110deg, rgba(47,37,43,.97), rgba(47,37,43,.83)),
    url('../images/shirt-service.webp') center/cover;
}

.page-hero, .section-navy, .contact-panel, .site-footer, .announcement {
  background-color: var(--navy-900);
}
.page-hero {
  background-image:
    linear-gradient(135deg, rgba(48,37,43,.97), rgba(31,25,29,.94)),
    url('../images/interior.webp');
}
.price-category h2 { background: var(--navy-900); }
.notice { background: #efe2df; color: #514247; }
.cta-band {
  background:
    linear-gradient(90deg, rgba(48,37,43,.98), rgba(48,37,43,.84)),
    url('../images/storefront.webp') center/cover;
}

@media (max-width: 1100px) {
  .nav-links { gap: .75rem; }
  .nav-links a { font-size: .81rem; }
}

@media (max-width: 1024px) {
  .signature-service { grid-template-columns: 1fr; }
  .signature-image { min-height: 520px; }
  .signature-copy { padding: 4rem 30px; }
  .principles-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-aside { position: static; }
}

@media (max-width: 760px) {
  .signature-image { min-height: 390px; }
  .signature-copy { padding: 3.4rem 20px; }
  .principles-grid, .process-grid, .fact-list { grid-template-columns: 1fr; }
  .principle { min-height: auto; }
}
