:root {
  --ink: #15120f;
  --soft-ink: #524944;
  --paper: #fbfaf6;
  --rose: #e8c6bc;
  --blush: #f6e7df;
  --sage: #758675;
  --sage-soft: #dce4d9;
  --gold: #b07a32;
  --charcoal: #24211e;
  --line: rgba(21, 18, 15, 0.14);
  --shadow: 0 24px 70px rgba(24, 20, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: baseline;
  display: flex;
  gap: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-style: italic;
  text-transform: none;
}

.brand span:last-child {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
}

.nav-links a:not(.nav-cta) {
  color: var(--soft-ink);
}

.nav-cta,
.button {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.nav-cta,
.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--ink);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  position: relative;
  width: 44px;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  left: 10px;
  position: absolute;
  right: 10px;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.hero {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  min-height: 92vh;
  padding-top: 76px;
}

.hero-media {
  background: var(--sage-soft);
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(21, 18, 15, 0.08), rgba(21, 18, 15, 0));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-copy {
  align-self: center;
  padding: clamp(36px, 6vw, 78px);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  font-size: clamp(4rem, 8vw, 8.5rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.25rem;
}

.hero-copy p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.quick-strip {
  background: var(--charcoal);
  color: var(--paper);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-strip div {
  border-right: 1px solid rgba(251, 250, 246, 0.15);
  padding: 26px clamp(18px, 4vw, 58px);
}

.quick-strip span,
.contact-line span {
  color: rgba(251, 250, 246, 0.65);
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.quick-strip strong {
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.section-pad {
  padding: clamp(70px, 9vw, 130px) clamp(18px, 5vw, 72px);
}

.intro {
  align-items: end;
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: 1fr 0.75fr;
}

.intro p:last-child {
  color: var(--soft-ink);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 860px;
}

.services {
  background: linear-gradient(180deg, var(--blush), var(--paper));
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
}

.service-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  min-height: 270px;
  padding: 24px;
  position: relative;
}

.service-card::before {
  content: "";
  height: 4px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.accent-gold::before { background: var(--gold); }
.accent-green::before { background: var(--sage); }
.accent-rose::before { background: #c87667; }
.accent-ink::before { background: var(--ink); }

.service-card span {
  color: var(--gold);
  font-weight: 800;
}

.service-card p {
  color: var(--soft-ink);
}

.service-card a {
  bottom: 22px;
  font-weight: 800;
  position: absolute;
}

.feature-band {
  align-items: stretch;
  background: var(--sage);
  color: var(--paper);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.feature-copy {
  align-self: center;
  padding: clamp(50px, 7vw, 86px);
}

.feature-copy .eyebrow {
  color: #f4d39f;
}

.feature-copy p {
  color: rgba(251, 250, 246, 0.8);
  font-size: 1.06rem;
}

.feature-band img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.check-list li {
  border-bottom: 1px solid rgba(251, 250, 246, 0.22);
  padding-bottom: 12px;
}

.price-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.price-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  min-height: 470px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.price-card:hover,
.price-card:focus-visible {
  box-shadow: var(--shadow);
  outline: 2px solid transparent;
  transform: translateY(-3px);
}

.price-card img {
  aspect-ratio: 1.34;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.price-card > div {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.price-card p {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}

.price-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}

.price-card span {
  color: var(--soft-ink);
  display: block;
  font-size: 0.96rem;
  line-height: 1.55;
  min-height: 72px;
}

.card-price {
  align-items: center;
  background: rgba(21, 18, 15, 0.94);
  border: 1px solid rgba(251, 250, 246, 0.24);
  border-radius: 8px;
  color: var(--paper);
  display: inline-flex;
  font-size: 1rem;
  justify-content: center;
  min-height: 52px;
  min-width: 84px;
  padding: 0 14px;
  position: absolute;
  right: 18px;
  top: 18px;
}

.showcase-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 0.94fr 1fr;
  margin-top: 38px;
}

.showcase-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 42px);
}

.showcase-panel > p {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.showcase-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 34px;
}

.image-panel {
  min-height: 520px;
  padding: 0;
}

.image-panel img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.mini-services {
  display: grid;
  gap: 18px;
}

.mini-services span {
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
  display: grid;
  gap: 6px;
  padding-top: 18px;
}

.mini-services strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.instagram {
  background: linear-gradient(180deg, var(--blush), var(--paper));
}

.instagram-head {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

.instagram-head > span {
  color: var(--soft-ink);
  max-width: 330px;
  text-align: right;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.social-actions a {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 247, 234, 0.16);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  min-height: 42px;
  padding: 10px 14px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-actions a:hover {
  background: rgba(215, 166, 91, 0.16);
  border-color: rgba(215, 166, 91, 0.46);
  transform: translateY(-2px);
}

.instagram-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.instagram-tile {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.instagram-tile img,
.instagram-tile video {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}

.instagram-tile:hover img,
.instagram-tile:hover video {
  transform: scale(1.035);
}

.instagram-tile::after {
  background: linear-gradient(180deg, transparent 56%, rgba(21, 18, 15, 0.38));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.reviews {
  align-items: center;
  background: var(--sage);
  color: var(--paper);
  display: grid;
  gap: clamp(30px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
}

.reviews .eyebrow {
  color: #f4d39f;
}

.review-copy p:last-child,
.review-meta p {
  color: rgba(251, 250, 246, 0.8);
}

.review-panel {
  align-items: center;
  background: rgba(21, 18, 15, 0.86);
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr;
  padding: clamp(24px, 4vw, 42px);
}

.rating {
  align-items: center;
  background: #f4d39f;
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  height: 138px;
  justify-items: center;
  width: 138px;
}

.rating strong {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1;
}

.rating span {
  align-self: start;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-meta strong {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.review-panel .button {
  grid-column: 1 / -1;
}

.contact {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
}

.contact-copy p:last-child {
  color: var(--soft-ink);
  font-size: 1.18rem;
}

.contact-panel {
  background: var(--ink);
  border-radius: 8px;
  color: var(--paper);
  padding: 28px;
}

.contact-line {
  border-bottom: 1px solid rgba(251, 250, 246, 0.18);
  display: block;
  padding: 18px 0;
}

.contact-line strong {
  font-size: 1.15rem;
}

.wide {
  margin-top: 22px;
  width: 100%;
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  grid-column: 1 / -1;
  height: min(58vw, 480px);
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.map-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.map-card {
  background: rgba(251, 250, 246, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  left: clamp(16px, 4vw, 34px);
  max-width: calc(100% - 32px);
  padding: 22px;
  position: absolute;
  top: clamp(16px, 4vw, 34px);
  width: 330px;
  z-index: 1;
}

.map-card span {
  color: var(--gold);
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.map-card strong {
  display: block;
  font-size: 1.2rem;
}

.map-card p {
  color: var(--soft-ink);
  margin: 6px 0 14px;
}

.map-card a {
  font-weight: 800;
}

footer {
  align-items: center;
  background: var(--charcoal);
  color: rgba(251, 250, 246, 0.72);
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
}

footer span:first-child {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-style: italic;
}

.promo-popup {
  animation: promo-pop 520ms ease both, promo-pulse 2.8s ease-in-out 620ms infinite;
  background:
    radial-gradient(circle at top, rgba(244, 211, 159, 0.42), transparent 38%),
    var(--paper);
  border: 1px solid rgba(176, 122, 50, 0.48);
  border-radius: 8px;
  box-shadow: 0 26px 100px rgba(21, 18, 15, 0.38), 0 0 0 8px rgba(244, 211, 159, 0.18);
  display: block;
  isolation: isolate;
  left: 50%;
  max-height: calc(100vh - 28px);
  max-width: min(470px, calc(100vw - 28px));
  overflow: hidden;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 35;
}

.promo-popup[hidden] {
  display: none;
}

.promo-copy {
  overflow: auto;
  padding: clamp(26px, 4vw, 40px);
}

.promo-copy h2 {
  color: var(--ink);
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  margin-bottom: 8px;
  text-wrap: balance;
}

.promo-copy .eyebrow {
  animation: promo-blink 1.4s ease-in-out infinite;
  color: var(--gold);
  padding-right: 34px;
}

.promo-lead {
  color: var(--soft-ink);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.promo-offers {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin: 20px 0;
  text-align: left;
}

.promo-offers article {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 0;
  padding: 14px 16px;
}

.promo-offers strong,
.promo-offers span {
  display: block;
}

.promo-offers strong {
  font-size: 1rem;
  margin-bottom: 8px;
}

.promo-offers span {
  color: var(--soft-ink);
}

.promo-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.promo-close {
  background: rgba(251, 250, 246, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 44px;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 44px;
  z-index: 1;
}

.promo-close span {
  background: var(--ink);
  height: 2px;
  left: 11px;
  position: absolute;
  top: 20px;
  width: 20px;
}

.promo-close span:first-child {
  transform: rotate(45deg);
}

.promo-close span:last-child {
  transform: rotate(-45deg);
}

.promo-peek {
  background: var(--gold);
  border: 1px solid rgba(21, 18, 15, 0.24);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: var(--shadow);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  min-height: 48px;
  padding: 0 18px;
  position: fixed;
  right: 18px;
  z-index: 30;
}

.promo-peek[hidden] {
  display: none;
}

@keyframes promo-pop {
  from {
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes promo-pulse {
  0%,
  100% {
    box-shadow: 0 26px 100px rgba(21, 18, 15, 0.38), 0 0 0 8px rgba(244, 211, 159, 0.16);
  }

  50% {
    box-shadow: 0 30px 112px rgba(21, 18, 15, 0.44), 0 0 0 14px rgba(244, 211, 159, 0.32);
  }
}

@keyframes promo-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-popup,
  .promo-copy .eyebrow {
    animation: none;
  }
}

.service-modal {
  inset: 0;
  place-items: center;
  position: fixed;
  z-index: 45;
}

.service-modal:not([hidden]) {
  display: grid;
}

.service-modal[hidden] {
  display: none;
}

.service-backdrop {
  background: rgba(21, 18, 15, 0.62);
  border: 0;
  inset: 0;
  position: absolute;
}

.service-modal-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(21, 18, 15, 0.42);
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(360px, 1fr);
  max-height: calc(100vh - 40px);
  max-width: min(1040px, calc(100vw - 40px));
  overflow: hidden;
  position: relative;
  width: 100%;
}

.service-modal-media {
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

.service-modal-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-modal-media strong {
  align-items: center;
  background: rgba(21, 18, 15, 0.94);
  border: 1px solid rgba(251, 250, 246, 0.24);
  border-radius: 8px;
  color: var(--paper);
  display: inline-flex;
  font-size: 1.18rem;
  justify-content: center;
  min-height: 60px;
  min-width: 96px;
  padding: 0 18px;
  position: absolute;
  right: 22px;
  top: 22px;
}

.service-modal-copy {
  align-self: center;
  overflow: auto;
  padding: clamp(30px, 5vw, 64px);
}

.service-modal-copy h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.service-modal-copy > p:last-of-type {
  color: var(--soft-ink);
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  max-width: 520px;
}

.service-modal-steps {
  counter-reset: service-step;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 26px 0 0;
  max-width: 560px;
  padding: 0;
}

.service-modal-steps li {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(248, 239, 226, 0.13);
  border-radius: 8px;
  color: var(--soft-ink);
  line-height: 1.45;
  padding: 14px 16px 14px 52px;
  position: relative;
}

.service-modal-steps li::before {
  align-items: center;
  background: linear-gradient(135deg, #f0c777, #a96f2c);
  border-radius: 999px;
  color: var(--cream-text);
  content: counter(service-step);
  counter-increment: service-step;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  height: 26px;
  justify-content: center;
  left: 16px;
  position: absolute;
  top: 14px;
  width: 26px;
}

.service-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-modal-close {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 46px;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 46px;
  z-index: 2;
}

.service-modal-close span {
  background: var(--ink);
  height: 2px;
  left: 12px;
  position: absolute;
  top: 21px;
  width: 20px;
}

.service-modal-close span:first-child {
  transform: rotate(45deg);
}

.service-modal-close span:last-child {
  transform: rotate(-45deg);
}

@media (max-width: 1000px) {
  .hero,
  .intro,
  .feature-band,
  .contact,
  .reviews {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 52vh;
  }

  .hero-copy {
    padding-top: 44px;
  }

  .service-grid,
  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-layout {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 12px 18px 22px;
    position: absolute;
    right: 0;
    top: 68px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-media {
    min-height: 43vh;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.5rem);
  }

  .quick-strip,
  .service-grid,
  .price-cards {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    border-bottom: 1px solid rgba(251, 250, 246, 0.15);
    border-right: 0;
  }

  .hero-actions,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .review-panel {
    grid-template-columns: 1fr;
  }

  .rating {
    height: 120px;
    width: 120px;
  }

  .instagram-head {
    align-items: start;
    flex-direction: column;
  }

  .social-actions {
    justify-content: flex-start;
  }

  .instagram-head > span {
    text-align: left;
  }

  .promo-popup {
    max-height: calc(100vh - 24px);
    max-width: calc(100vw - 24px);
  }

  .promo-copy h2 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .promo-actions {
    grid-template-columns: 1fr;
  }

  .service-modal-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
    max-width: calc(100vw - 24px);
  }

  .service-modal-media {
    min-height: 230px;
  }

  .service-modal-media strong {
    left: 18px;
    right: auto;
    top: 18px;
  }

  .service-modal-copy {
    padding: 24px;
  }

  .service-modal-copy h2 {
    font-size: clamp(2rem, 11vw, 3.5rem);
    padding-right: 30px;
  }
}

/* Dark luxury theme */
:root {
  --ink: #f8efe2;
  --soft-ink: #c8b9a7;
  --paper: #0c0a09;
  --rose: #c99586;
  --blush: #19100e;
  --sage: #46564b;
  --sage-soft: #171d19;
  --gold: #d7a65b;
  --charcoal: #060505;
  --line: rgba(248, 239, 226, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.09);
  --gold-soft: rgba(215, 166, 91, 0.22);
}

body {
  background:
    radial-gradient(circle at 15% 10%, rgba(215, 166, 91, 0.16), transparent 26rem),
    radial-gradient(circle at 90% 0%, rgba(201, 149, 134, 0.12), transparent 30rem),
    linear-gradient(180deg, #0c0a09 0%, #12100e 48%, #080707 100%);
  color: var(--ink);
  min-height: 100vh;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 82%);
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.site-header {
  background: rgba(12, 10, 9, 0.72);
  border-bottom-color: rgba(215, 166, 91, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.brand,
.nav-links a:not(.nav-cta) {
  color: rgba(248, 239, 226, 0.88);
}

.brand span:last-child,
.eyebrow,
.price-card p,
.showcase-panel > p,
.map-card span {
  color: var(--gold);
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  background: var(--gold);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, #f0c777, #a96f2c);
  border-color: rgba(255, 230, 177, 0.42);
  box-shadow: 0 14px 34px rgba(215, 166, 91, 0.24);
  color: var(--cream-text);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(248, 239, 226, 0.28);
  color: var(--ink);
}

.button,
.nav-cta,
.promo-peek {
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.button:hover,
.nav-cta:hover,
.promo-peek:hover {
  box-shadow: 0 18px 42px rgba(215, 166, 91, 0.3);
  transform: translateY(-2px);
}

.menu-toggle span {
  background: var(--ink);
}

.hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.hero-media {
  background: #0f0d0b;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.36), transparent 42%),
    linear-gradient(0deg, rgba(12, 10, 9, 0.28), transparent 40%);
}

.hero-media img,
.feature-band img,
.image-panel img,
.instagram-tile img {
  filter: saturate(0.92) contrast(1.04);
}

.hero-copy p:not(.eyebrow),
.intro p:last-child,
.service-card p,
.price-card span,
.mini-services span,
.instagram-head > span,
.contact-copy p:last-child,
.map-card p,
.promo-lead,
.promo-offers span,
.service-modal-copy > p:last-of-type {
  color: var(--soft-ink);
}

.quick-strip,
footer {
  background: rgba(6, 5, 5, 0.92);
  border-top: 1px solid rgba(215, 166, 91, 0.18);
}

.quick-strip div {
  border-right-color: rgba(215, 166, 91, 0.16);
}

.services,
.instagram {
  background:
    radial-gradient(circle at top right, rgba(215, 166, 91, 0.11), transparent 26rem),
    linear-gradient(180deg, #130e0d, #0c0a09);
}

.feature-band,
.reviews {
  background:
    linear-gradient(135deg, rgba(70, 86, 75, 0.74), rgba(12, 10, 9, 0.96)),
    radial-gradient(circle at 70% 20%, rgba(215, 166, 91, 0.14), transparent 20rem);
}

.service-card,
.price-card,
.showcase-panel,
.aftercare article,
.review-panel,
.contact-panel,
.map-card {
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  border-color: rgba(248, 239, 226, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 20px 70px rgba(0, 0, 0, 0.18);
}

.service-card,
.price-card,
.showcase-panel,
.instagram-tile,
.review-panel,
.contact-panel {
  backdrop-filter: blur(18px);
}

.service-card::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.accent-gold::before,
.accent-green::before,
.accent-rose::before,
.accent-ink::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.service-card:hover,
.price-card:hover,
.showcase-panel:hover,
.instagram-tile:hover,
.contact-line:hover {
  border-color: rgba(215, 166, 91, 0.44);
}

.price-card:hover,
.service-card:hover,
.showcase-panel:hover,
.instagram-tile:hover {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(215, 166, 91, 0.2);
  transform: translateY(-5px);
}

.price-card img {
  transition: filter 260ms ease, transform 360ms ease;
}

.price-card:hover img {
  filter: saturate(1.02) contrast(1.09) brightness(1.04);
  transform: scale(1.04);
}

.card-price,
.service-modal-media strong {
  background: linear-gradient(135deg, rgba(248, 239, 226, 0.94), rgba(215, 166, 91, 0.94));
  border-color: rgba(255, 235, 189, 0.42);
  color: var(--cream-text);
}

.showcase-panel h3,
.mini-services strong,
.price-card h3,
.contact-line strong,
.review-meta strong {
  color: var(--ink);
}

.rating {
  background: linear-gradient(135deg, #f0c777, #a96f2c);
  color: var(--cream-text);
}

.contact-panel {
  color: var(--ink);
}

.contact-line {
  border-bottom-color: rgba(248, 239, 226, 0.14);
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-line:hover {
  transform: translateX(4px);
}

.map-frame {
  border-color: rgba(248, 239, 226, 0.14);
  box-shadow: var(--shadow);
}

.map-card {
  color: var(--ink);
}

.promo-popup {
  background:
    radial-gradient(circle at top, rgba(215, 166, 91, 0.25), transparent 44%),
    linear-gradient(180deg, rgba(32, 24, 18, 0.98), rgba(12, 10, 9, 0.98));
  border-color: rgba(215, 166, 91, 0.58);
  color: var(--ink);
}

.promo-copy h2,
.promo-offers strong {
  color: var(--ink);
}

.promo-offers article {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(248, 239, 226, 0.13);
}

.promo-close,
.service-modal-close {
  background: rgba(12, 10, 9, 0.78);
  border-color: rgba(248, 239, 226, 0.2);
}

.promo-close span,
.service-modal-close span {
  background: var(--ink);
}

.promo-peek {
  background: linear-gradient(135deg, #f0c777, #a96f2c);
  color: var(--cream-text);
}

.service-modal-panel {
  background: linear-gradient(180deg, #15100e, #0c0a09);
  border-color: rgba(215, 166, 91, 0.26);
  color: var(--ink);
}

.service-backdrop {
  background: rgba(4, 3, 3, 0.78);
  backdrop-filter: blur(10px);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.price-card.reveal-on-scroll,
.service-card.reveal-on-scroll,
.instagram-tile.reveal-on-scroll {
  transition: opacity 620ms ease, transform 620ms ease, box-shadow 180ms ease, border-color 180ms ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) {
  .nav-links {
    background: rgba(12, 10, 9, 0.96);
    border-bottom-color: rgba(215, 166, 91, 0.22);
  }
}

/* Dark theme contrast polish */
:root {
  --cream-text: #fff7ea;
  --gold-deep: #8d5a25;
}

.nav-cta,
.button.primary,
.promo-peek {
  background: linear-gradient(135deg, #c98b3c, var(--gold-deep));
  color: var(--cream-text);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.32);
}

.card-price,
.service-modal-media strong,
.rating,
.service-modal-steps li::before {
  background: linear-gradient(135deg, rgba(201, 139, 60, 0.98), rgba(117, 70, 26, 0.98));
  color: var(--cream-text);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.promo-close,
.service-modal-close {
  color: var(--cream-text);
}

/* Strong dark-theme readability pass */
body,
.service-card,
.price-card,
.showcase-panel,
.review-panel,
.contact-panel,
.map-card,
.promo-popup,
.service-modal-panel,
.mini-services,
.contact-line {
  color: var(--ink);
}

.section-heading p,
.eyebrow,
.price-card p,
.showcase-panel > p,
.map-card span,
.contact-line span,
.instagram-head > span {
  color: #e1b46a;
}

.hero-copy p:not(.eyebrow),
.intro > p,
.service-card p,
.price-card span,
.showcase-panel span,
.review-meta p,
.contact-copy p,
.map-card p,
.promo-lead,
.promo-offers span,
.service-modal-copy > p,
.service-modal-steps li {
  color: #d8cabc;
}

.brand,
.nav-links a:not(.nav-cta),
h1,
h2,
h3,
.price-card h3,
.showcase-panel h3,
.mini-services strong,
.contact-line strong,
.review-meta strong,
.promo-copy h2,
.promo-offers strong {
  color: #fff7ea;
}

.messenger-chat {
  background: linear-gradient(135deg, #1877f2, #0b4db8);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  bottom: 22px;
  box-shadow: 0 18px 44px rgba(24, 119, 242, 0.34);
  color: #fff;
  display: grid;
  gap: 2px;
  padding: 12px 18px;
  position: fixed;
  right: 22px;
  text-align: left;
  z-index: 25;
}

.messenger-chat[hidden] {
  display: none;
}

.messenger-chat span {
  font-size: 0.72rem;
  opacity: 0.82;
  text-transform: uppercase;
}

.messenger-chat strong {
  font-size: 1rem;
}

.feature-band {
  color: #fff7ea;
}

.feature-copy h2,
.check-list li {
  color: #fff7ea;
}

.check-list li {
  border-bottom-color: rgba(255, 247, 234, 0.26);
}

/* Mobile layout polish */
@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  section[id] {
    scroll-margin-top: 82px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    height: 64px;
    padding: 0 16px;
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    font-size: 1.42rem;
  }

  .brand span:last-child {
    font-size: 0.68rem;
  }

  .menu-toggle {
    border: 1px solid rgba(255, 247, 234, 0.18);
    border-radius: 8px;
    display: block;
  }

  .nav-links {
    background: rgba(12, 10, 9, 0.98);
    border-bottom: 1px solid rgba(215, 166, 91, 0.22);
    border-top: 1px solid rgba(255, 247, 234, 0.08);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
    gap: 2px;
    padding: 12px 16px 18px;
    top: 64px;
  }

  .nav-links a {
    border-bottom: 1px solid rgba(255, 247, 234, 0.08);
    min-height: 46px;
    padding: 12px 2px;
  }

  .nav-links .nav-cta {
    border-bottom: 0;
    margin-top: 12px;
    width: 100%;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 64px;
  }

  .hero-media {
    min-height: 0;
    order: 1;
  }

  .hero-media img {
    aspect-ratio: 4 / 5;
    max-height: 58vh;
    object-fit: cover;
    object-position: center top;
  }

  .hero-copy {
    order: 2;
    padding: 30px 18px 38px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.35rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.02;
  }

  h3 {
    line-height: 1.12;
  }

  .hero-copy p:not(.eyebrow),
  .intro > p,
  .section-heading + p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .button,
  .nav-cta {
    min-height: 48px;
    width: 100%;
  }

  .section-pad {
    padding: 54px 18px;
  }

  .quick-strip {
    gap: 0;
  }

  .quick-strip div {
    padding: 18px;
  }

  .quick-strip strong {
    font-size: 1.02rem;
  }

  .intro,
  .services,
  .pricing,
  .menu-showcase,
  .instagram,
  .reviews,
  .contact {
    overflow: hidden;
  }

  .section-heading {
    gap: 8px;
  }

  .service-grid,
  .price-cards,
  .showcase-layout,
  .instagram-grid {
    gap: 14px;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .service-card a {
    display: inline-flex;
    margin-top: 18px;
    position: static;
  }

  .price-card {
    min-height: auto;
  }

  .price-card img {
    aspect-ratio: 1.18;
    height: auto;
  }

  .price-card > div {
    gap: 8px;
    padding: 20px;
  }

  .price-card h3 {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .price-card span {
    min-height: 0;
  }

  .card-price {
    min-height: 46px;
    min-width: 78px;
    right: 14px;
    top: 14px;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    padding: 48px 18px;
  }

  .feature-band img {
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
  }

  .check-list {
    gap: 10px;
    margin-top: 24px;
  }

  .check-list li {
    font-size: 1rem;
    padding: 0 0 12px;
  }

  .showcase-panel {
    padding: 22px;
  }

  .mini-services {
    gap: 12px;
  }

  .image-panel {
    min-height: 260px;
  }

  .instagram-tile {
    aspect-ratio: 1;
  }

  .review-panel,
  .contact {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .review-panel,
  .contact-panel,
  .map-card {
    padding: 22px;
  }

  .rating {
    height: auto;
    min-height: 96px;
    width: 100%;
  }

  .contact-line {
    align-items: start;
    display: grid;
    gap: 4px;
    padding: 15px 0;
  }

  .map-frame {
    min-height: 380px;
  }

  .map-card {
    left: 12px;
    max-width: calc(100% - 24px);
    right: 12px;
    top: 12px;
  }

  .promo-popup {
    left: 12px;
    max-height: calc(100dvh - 24px);
    max-width: none;
    overflow: auto;
    padding: 22px;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
  }

  .promo-copy {
    gap: 14px;
  }

  .promo-copy h2 {
    font-size: clamp(2.7rem, 17vw, 4.2rem);
  }

  .promo-offers {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .promo-offers article {
    padding: 14px;
  }

  .promo-actions {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .service-modal {
    padding: 12px;
  }

  .service-modal-panel {
    border-radius: 8px;
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 24px);
    max-width: 100%;
    overflow: auto;
  }

  .service-modal-media {
    min-height: 210px;
  }

  .service-modal-copy {
    padding: 22px;
  }

  .service-modal-copy h2 {
    font-size: clamp(2rem, 12vw, 3rem);
    padding-right: 34px;
  }

  .service-modal-steps {
    margin-top: 20px;
  }

  .service-modal-steps li {
    padding: 13px 14px 13px 48px;
  }

  .service-modal-actions {
    display: grid;
    gap: 10px;
  }

  .messenger-chat {
    bottom: 14px;
    left: 14px;
    padding: 10px 14px;
    right: auto;
  }

  .promo-peek {
    bottom: 14px;
    right: 14px;
  }

  footer {
    align-items: start;
    gap: 8px;
    padding: 24px 18px 84px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    font-size: 1.25rem;
  }

  .hero-media img {
    aspect-ratio: 1 / 1;
    max-height: 52vh;
  }

  .section-pad {
    padding-left: 15px;
    padding-right: 15px;
  }

  .service-card,
  .price-card > div,
  .showcase-panel,
  .review-panel,
  .contact-panel,
  .map-card {
    padding: 18px;
  }

  .promo-popup {
    padding: 18px;
  }
}

/* Compact coupon on phone */
@media (max-width: 520px) {
  .promo-popup {
    left: 50%;
    max-height: min(82dvh, 560px);
    max-width: min(330px, calc(100vw - 28px));
    overflow: auto;
    padding: 18px 16px 16px;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }

  .promo-copy {
    gap: 10px;
  }

  .promo-copy .eyebrow {
    font-size: 0.68rem;
    margin-bottom: 0;
  }

  .promo-copy h2 {
    font-size: clamp(2.35rem, 14vw, 3.2rem);
    line-height: 0.95;
  }

  .promo-lead {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .promo-offers {
    gap: 8px;
  }

  .promo-offers article {
    padding: 11px 12px;
  }

  .promo-offers strong {
    font-size: 0.92rem;
  }

  .promo-offers span {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .promo-actions {
    gap: 8px;
  }

  .promo-actions .button {
    min-height: 42px;
    padding: 0 12px;
  }

  .promo-close {
    height: 38px;
    right: 10px;
    top: 10px;
    width: 38px;
  }

  .promo-close span {
    left: 10px;
    top: 18px;
    width: 17px;
  }
}

/* Cinematic motion polish */
body {
  --hero-progress: 0;
  --page-scroll: 0;
}

.site-header {
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 7, 6, 0.88);
  border-bottom-color: rgba(215, 166, 91, 0.34);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.34);
}

.hero-media img {
  transform: scale(calc(1.03 - (var(--hero-progress) * 0.025))) translateY(calc(var(--hero-progress) * 18px));
  transition: transform 80ms linear;
  will-change: transform;
}

.hero-copy {
  transform: translateY(calc(var(--hero-progress) * -18px));
  transition: transform 80ms linear;
  will-change: transform;
}

.section-pad,
.feature-band,
.quick-strip,
.menu-showcase {
  position: relative;
}

.section-pad::before,
.feature-band::before {
  background: linear-gradient(90deg, transparent, rgba(215, 166, 91, 0.45), transparent);
  content: "";
  height: 1px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateX(-50%) scaleX(0.38);
  transition: opacity 700ms ease, transform 900ms ease;
  width: min(680px, calc(100% - 36px));
}

.section-pad.is-visible::before,
.feature-band.is-visible::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.price-card,
.service-card,
.showcase-panel,
.review-panel,
.contact-panel,
.map-card {
  isolation: isolate;
}

.price-card::after,
.service-card::after,
.showcase-panel::after {
  background: radial-gradient(
    circle at var(--pointer-x, 50%) var(--pointer-y, 0%),
    rgba(255, 247, 234, 0.16),
    transparent 34%
  );
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease;
  z-index: -1;
}

.price-card:hover::after,
.service-card:hover::after,
.showcase-panel:hover::after {
  opacity: 1;
}

.price-card,
.service-card,
.showcase-panel {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.price-card:hover,
.service-card:hover,
.showcase-panel:hover {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-6px);
}

.price-card img,
.showcase-panel img,
.instagram-tile img {
  transition: filter 360ms ease, transform 620ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.price-card:hover img,
.showcase-panel:hover img,
.instagram-tile:hover img {
  transform: scale(1.055);
}

.reveal-on-scroll {
  filter: blur(8px);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.72, 0.18, 1),
    transform 760ms cubic-bezier(0.2, 0.72, 0.18, 1),
    filter 760ms ease;
}

.reveal-on-scroll.is-visible {
  filter: blur(0);
}

.cinematic-progress {
  background: linear-gradient(90deg, #f0c777, #a96f2c);
  height: 2px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(var(--page-scroll));
  transform-origin: left;
  width: 100%;
  z-index: 50;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .hero-copy,
  .price-card,
  .service-card,
  .showcase-panel,
  .price-card:hover,
  .service-card:hover,
  .showcase-panel:hover {
    transform: none;
  }

  .reveal-on-scroll {
    filter: none;
  }
}

@media (max-width: 760px) {
  .hero-media img,
  .hero-copy {
    transform: none;
  }

  .price-card,
  .service-card,
  .showcase-panel,
  .price-card:hover,
  .service-card:hover,
  .showcase-panel:hover {
    transform: translateY(0);
  }
}
