:root {
  --ink: #21181c;
  --ink-soft: #5f5158;
  --paper: #fbf7f4;
  --pearl: #fffdfb;
  --rose: #b74a76;
  --rose-dark: #7e294c;
  --petal: #f5d7e2;
  --sage: #677a68;
  --gold: #a67a41;
  --line: rgba(33, 24, 28, 0.14);
  --shadow: 0 22px 70px rgba(33, 24, 28, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 30;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.topbar a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 244, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0;
}

.brand span {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 11px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--pearl);
  color: var(--rose-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--pearl);
  border-radius: 999px;
  color: var(--ink);
  padding: 9px 12px;
  font-weight: 800;
}

.button,
.ghost-button,
.text-link {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.button {
  background: var(--rose);
  border: 1px solid var(--rose);
  border-radius: 999px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  min-height: 44px;
  padding: 11px 18px;
  box-shadow: 0 12px 30px rgba(183, 74, 118, 0.22);
}

.button:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.button.dark {
  background: var(--ink);
  border-color: var(--ink);
}

.button.light {
  background: white;
  border-color: white;
  color: var(--ink);
}

.ghost-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  min-height: 44px;
  padding: 11px 18px;
}

.ghost-button:hover {
  border-color: rgba(126, 41, 76, 0.45);
  color: var(--rose-dark);
}

.text-link {
  color: var(--rose-dark);
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - 112px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.94;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(33, 24, 28, 0.92), rgba(33, 24, 28, 0.5) 35%, rgba(33, 24, 28, 0.08) 68%),
    linear-gradient(0deg, rgba(33, 24, 28, 0.78), rgba(33, 24, 28, 0.04) 48%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0 58px;
  color: white;
}

.eyebrow {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--petal);
}

h1,
h2,
h3,
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(52px, 8vw, 108px);
  max-width: 760px;
}

h2 {
  font-size: clamp(38px, 5vw, 68px);
}

h3 {
  font-size: 30px;
}

.lead {
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 710px;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  margin: 22px 0 28px;
  max-width: 650px;
}

.hero .ghost-button {
  border-color: rgba(255, 255, 255, 0.46);
  color: white;
}

.hero .ghost-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: white;
  color: white;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-ledger {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  max-width: 880px;
  padding-top: 18px;
}

.hero-ledger b {
  display: block;
  font-size: 24px;
}

.hero-ledger span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.section {
  padding: 82px 0;
}

.section.compact {
  padding: 56px 0;
}

.section.alt {
  background: var(--pearl);
}

.section.dark {
  background: var(--ink);
  color: white;
}

.section.dark .lead,
.section.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section.dark .price-card {
  color: var(--ink);
}

.section.dark .price-card p {
  color: var(--ink-soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head .lead {
  margin: 0;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.service-card,
.price-card,
.info-card,
.booking-panel,
.contact-panel {
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card img,
.price-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.service-card .body,
.price-card .body,
.info-card {
  padding: 22px;
}

.service-card p,
.price-card p,
.info-card p {
  color: var(--ink-soft);
  margin: 12px 0 0;
}

.service-card .tag,
.price-card .price {
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-band {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 0.9fr 1.1fr;
}

.feature-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

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

.check-list li {
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 0 0 12px 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  border: 2px solid var(--rose);
  border-radius: 999px;
  height: 9px;
  left: 2px;
  position: absolute;
  top: 8px;
  width: 9px;
}

.page-hero {
  background: var(--ink);
  color: white;
  overflow: hidden;
  position: relative;
}

.page-hero img {
  inset: 0;
  height: 100%;
  opacity: 0.42;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.page-hero::after {
  content: "";
  inset: 0;
  position: absolute;
  background: linear-gradient(90deg, rgba(33, 24, 28, 0.94), rgba(33, 24, 28, 0.5));
}

.page-hero .section-inner {
  min-height: 340px;
  padding: 76px 0;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
}

.booking-layout {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr 0.72fr;
  align-items: start;
}

.booking-panel {
  padding: 26px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.menu-toggle:focus,
.button:focus,
.ghost-button:focus,
.nav-links a:focus {
  outline: 3px solid rgba(183, 74, 118, 0.28);
  outline-offset: 2px;
}

.form-status {
  border-radius: 8px;
  display: none;
  font-weight: 700;
  margin-top: 16px;
  padding: 12px 14px;
}

.form-status.show {
  display: block;
}

.form-status.ok {
  background: #ecf8ee;
  color: #245b31;
}

.form-status.err {
  background: #fff0f3;
  color: #8e2946;
}

.branch-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.branch-list a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: block;
  padding: 14px;
  text-decoration: none;
}

.branch-list b {
  display: block;
}

.branch-list span {
  color: var(--ink-soft);
  font-size: 14px;
}

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

.gallery-grid img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.contact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-panel {
  padding: 26px;
}

.map-frame {
  border: 0;
  border-radius: var(--radius);
  min-height: 420px;
  width: 100%;
}

.cta-band {
  background: var(--rose-dark);
  color: white;
  padding: 48px 0;
}

.cta-band .section-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 44px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.site-footer a {
  color: white;
  text-decoration: none;
}

.footer-title {
  color: white;
  font-weight: 900;
  margin-bottom: 10px;
}

.fineprint {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  margin-top: 32px;
  padding-top: 18px;
}

.sticky-book {
  bottom: 14px;
  display: none;
  left: 14px;
  position: fixed;
  right: 14px;
  z-index: 19;
}

.sticky-book .button {
  width: 100%;
}

@media (max-width: 980px) {
  .nav-links {
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 12px 18px 22px;
    position: absolute;
    right: 0;
    top: 76px;
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    background: var(--pearl);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-actions .button {
    display: none;
  }

  .hero-ledger,
  .grid.four,
  .grid.three,
  .gallery-grid,
  .footer-grid,
  .booking-layout,
  .contact-grid,
  .feature-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    display: block;
  }

  .topbar-inner span:last-child {
    display: block;
    margin-top: 4px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 21px;
  }

  .hero {
    background: var(--ink);
    display: block;
    min-height: auto;
  }

  .hero img {
    height: 360px;
    object-position: 92% center;
    opacity: 1;
    position: relative;
  }

  .hero::after {
    bottom: auto;
    height: 360px;
    background:
      linear-gradient(0deg, rgba(33, 24, 28, 0.52), rgba(33, 24, 28, 0.04) 62%),
      linear-gradient(90deg, rgba(33, 24, 28, 0.18), rgba(33, 24, 28, 0.02));
  }

  .hero-inner {
    padding-top: 30px;
    padding-bottom: 96px;
  }

  .hero-actions .button,
  .hero-actions .ghost-button,
  .action-row .button,
  .action-row .ghost-button {
    width: 100%;
  }

  .hero-ledger,
  .grid.two,
  .grid.three,
  .grid.four,
  .gallery-grid,
  .footer-grid,
  .booking-layout,
  .contact-grid,
  .feature-band,
  .form-grid,
  .cta-band .section-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-head,
  .cta-band .section-inner {
    align-items: start;
    display: grid;
  }

  .booking-panel,
  .contact-panel {
    padding: 20px;
  }

  .sticky-book {
    display: block;
  }
}

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