:root {
  --nude-50: #fdf9f7;
  --nude-100: #f8efe9;
  --nude-200: #f0ded4;
  --rose-300: #e5b7ac;
  --rose-400: #d4948a;
  --rose-500: #b96f68;
  --rose-600: #99544f;
  --ink-900: #241c1b;
  --ink-700: #423533;
  --ink-500: #6d5c58;
  --ink-300: #9c8b86;
  --gold: #c9a227;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2: clamp(1.5rem, 1.34rem + 0.8vw, 2rem);
  --step-3: clamp(1.9rem, 1.6rem + 1.5vw, 2.9rem);
  --step-4: clamp(2.4rem, 1.8rem + 2.8vw, 4.2rem);

  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(36, 28, 27, 0.06), 0 2px 8px rgba(36, 28, 27, 0.05);
  --shadow-md: 0 4px 12px rgba(36, 28, 27, 0.08), 0 16px 40px rgba(36, 28, 27, 0.07);
  --shadow-lg: 0 24px 70px rgba(36, 28, 27, 0.16);

  --wrap: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--nude-50);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { margin: 0 0 var(--space-sm); }

a { color: var(--rose-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--rose-500); }

:focus-visible {
  outline: 3px solid var(--rose-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.section { padding-block: var(--space-2xl); }
.section--tight { padding-block: var(--space-xl); }
.section--alt { background: var(--nude-100); }
.section--ink { background: var(--ink-900); color: var(--nude-200); }
.section--ink h2, .section--ink h3 { color: var(--white); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink-900);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 249, 247, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-stuck {
  border-color: var(--nude-200);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2.5vw, 2rem);
  min-height: 76px;
  flex-wrap: nowrap;
}
.site-header__inner > * { min-width: 0; }
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
}
.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
}
.brand__tag {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-500);
  white-space: nowrap;
  padding-left: 0.7rem;
  border-left: 1px solid var(--nude-200);
}
@media (max-width: 1180px) {
  .brand__tag { display: none; }
}

.nav-toggle {
  display: none;
  border: 1px solid var(--nude-200);
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-size: var(--step--1);
  color: var(--ink-900);
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
}
.nav-toggle__bars { position: relative; width: 18px; height: 2px; background: var(--ink-900); display: block; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink-900);
  transition: transform 0.3s var(--ease);
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); flex: 0 1 auto; min-width: 0; }
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.nav__list > li { flex: 0 0 auto; }
.nav__link {
  text-decoration: none;
  white-space: nowrap;
  color: var(--ink-700);
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-block: 0.35rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--rose-500);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--ink-900); font-weight: 600; }

.btn {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.6rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn--primary { background: var(--ink-900); color: var(--nude-50); }
.btn--primary:hover { background: var(--rose-600); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn--ghost:hover { background: var(--ink-900); color: var(--nude-50); transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--ink-900); }
.btn--light:hover { background: var(--rose-300); transform: translateY(-2px); }

/* Header-CTA */
.btn--call {
  flex: 0 0 auto;
  gap: 0.55rem;
  padding: 0.7rem 1.35rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
.btn__icon { width: 15px; height: 15px; fill: currentColor; flex: 0 0 auto; }
.btn__phone {
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.75;
  padding-left: 0.55rem;
  border-left: 1px solid currentColor;
}
@media (max-width: 1320px) {
  .btn--call .btn__phone { display: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--nude-50);
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
    padding: var(--space-md) 1.25rem var(--space-lg);
    border-bottom: 1px solid var(--nude-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--nude-200); font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav .btn { width: 100%; }
  .nav .btn--call .btn__phone { display: inline; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--nude-100) 0%, var(--nude-50) 55%, var(--nude-200) 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-xl);
  align-items: center;
  padding-block: clamp(3rem, 8vw, 6.5rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--step--1);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-600);
  margin-bottom: var(--space-sm);
}
.hero__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--rose-400);
}
.hero__lead { font-size: var(--step-1); color: var(--ink-500); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-md); }
.hero__usp {
  list-style: none;
  margin: var(--space-lg) 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.hero__usp li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: var(--step--1);
  color: var(--ink-500);
}
.hero__usp li::before {
  content: "";
  flex: none;
  width: 7px; height: 7px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--rose-400);
}
.hero__media { position: relative; }
.hero__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  left: -1.5rem;
  bottom: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.35rem;
  box-shadow: var(--shadow-md);
  max-width: 15rem;
}
.hero__badge strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--ink-900); }
.hero__badge span { font-size: var(--step--1); color: var(--ink-500); }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .hero__badge { left: 1rem; }
}

/* ---------- Section headings ---------- */
.section-head { max-width: 62ch; margin-bottom: var(--space-lg); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: block;
  font-size: var(--step--1);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-500);
  margin-bottom: 0.6rem;
}
.lead { font-size: var(--step-1); color: var(--ink-500); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: var(--space-md); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--nude-200);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--rose-300); }
.card__price {
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--rose-600);
  margin-bottom: 0.2rem;
}
.card__link { margin-top: auto; padding-top: var(--space-sm); font-weight: 600; font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Price tables ---------- */
.price-block { margin-bottom: var(--space-lg); }
.price-block > h3 {
  font-size: var(--step-1);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--nude-200);
  margin-bottom: var(--space-sm);
}
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--nude-200);
}
.price-list li:last-child { border-bottom: 0; }
.price-list__name { font-weight: 500; color: var(--ink-900); }
.price-list__note {
  grid-column: 1 / -1;
  font-size: var(--step--1);
  color: var(--ink-300);
  max-width: 68ch;
  margin-top: -0.2rem;
}
.price-list__price {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--rose-600);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.service-panel {
  background: var(--white);
  border: 1px solid var(--nude-200);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 100px;
}
.service-panel + .service-panel { margin-top: var(--space-lg); }
.service-panel__intro { max-width: 62ch; color: var(--ink-500); }
.footnotes { list-style: none; padding: 0; margin: var(--space-md) 0 0; font-size: var(--step--1); color: var(--ink-300); }
.footnotes li { padding-left: 1.1rem; position: relative; }
.footnotes li::before { content: "*"; position: absolute; left: 0; }

.chip-nav { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--space-lg); }
.chip {
  border: 1px solid var(--nude-200);
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem;
  font-size: var(--step--1);
  text-decoration: none;
  color: var(--ink-700);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.chip:hover, .chip.is-active { background: var(--ink-900); color: var(--nude-50); border-color: var(--ink-900); }

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: var(--space-sm) 0 0; }
.tags li {
  font-size: var(--step--1);
  background: var(--nude-100);
  color: var(--ink-700);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.9rem;
}

/* ---------- Gallery ---------- */
.gallery-group + .gallery-group { margin-top: var(--space-xl); }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.9rem;
}
.gallery__item {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--nude-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36, 28, 27, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(24, 18, 17, 0.92);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox[data-open="true"] { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 82vh;
  width: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox__caption { color: var(--nude-200); text-align: center; margin-top: var(--space-sm); font-size: var(--step--1); }
.lightbox__btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s var(--ease);
}
.lightbox__btn:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox__btn--close { top: 1.25rem; right: 1.25rem; }
.lightbox__btn--prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.75rem; max-width: 62rem; }
.faq details {
  background: var(--white);
  border: 1px solid var(--nude-200);
  border-radius: var(--radius-md);
  padding: 0 var(--space-md);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq details[open] { border-color: var(--rose-300); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-sm) 2rem var(--space-sm) 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--ink-900);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--rose-500);
  font-size: 1.5rem;
  font-family: var(--font-body);
}
.faq details[open] summary::after { content: "–"; }
.faq details > p { padding-bottom: var(--space-sm); margin: 0; color: var(--ink-500); max-width: 72ch; }

/* ---------- Info / contact ---------- */
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  display: grid;
  grid-template-columns: minmax(9rem, auto) 1fr;
  gap: 0.5rem 1.25rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.section--alt .info-list li,
.card .info-list li { border-bottom-color: var(--nude-200); }
.info-list li:last-child { border-bottom: 0; }
.info-list dt, .info-list__key { font-weight: 600; color: inherit; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--nude-200);
}
.contact-card address { font-style: normal; line-height: 1.8; }

.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 2.6rem;
  margin-bottom: 0.75rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 1.8rem; height: 1.8rem;
  border-radius: 50%;
  background: var(--nude-100);
  color: var(--rose-600);
  display: grid;
  place-items: center;
  font-size: var(--step--1);
  font-weight: 700;
}

.callout {
  border-left: 3px solid var(--rose-400);
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.prose { max-width: 72ch; }
.prose h3 { margin-top: var(--space-lg); }

/* ---------- CTA banner ---------- */
.cta-band {
  background: var(--ink-900);
  color: var(--nude-200);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-md);
  align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.3rem; }
@media (max-width: 720px) { .cta-band { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: var(--nude-200);
  padding-block: var(--space-xl) var(--space-md);
}
.site-footer a { color: var(--nude-200); }
.site-footer a:hover { color: var(--rose-300); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-lg); }
.footer-grid h4 { color: var(--white); font-size: var(--step-1); }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: space-between;
  font-size: var(--step--1);
  color: var(--ink-300);
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: linear-gradient(140deg, var(--nude-100), var(--nude-200));
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.breadcrumb { font-size: var(--step--1); color: var(--ink-500); margin-bottom: 0.5rem; }
.breadcrumb a { color: var(--ink-500); }

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
