:root {
  --ink: #151312;
  --paper: #fffaf7;
  --soft: #f4ebe5;
  --line: #e6d8cf;
  --rose: #b75f6d;
  --sage: #6e7c62;
  --gold: #b9894d;
  --plum: #402f3a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(45, 31, 28, .14);
}

* {
  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.5;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 247, .9);
  border-bottom: 1px solid rgba(230, 216, 207, .82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: .8rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.main-nav a,
.header-cta,
.lang-toggle {
  font-size: .85rem;
  font-weight: 800;
}

.main-nav a {
  text-decoration: none;
  color: rgba(21, 19, 18, .72);
}

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

.lang-toggle {
  width: 44px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--white);
  text-decoration: none;
}

.hero {
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  align-items: end;
  gap: clamp(26px, 4vw, 58px);
  padding: 112px clamp(18px, 5vw, 72px) 42px;
  background: linear-gradient(135deg, #fffaf7 0%, #f8ede9 46%, #edf2ec 100%);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 78px 0 auto auto;
  width: min(54vw, 780px);
  height: min(62vh, 590px);
  opacity: .22;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 9rem, 9rem);
  line-height: .88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 1.35rem, 1.35rem);
  color: rgba(21, 19, 18, .74);
}

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

.btn,
.wide-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  text-decoration: none;
}

.btn svg,
.wide-cta svg,
.mobile-actions svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.primary {
  background: var(--ink);
  color: var(--paper);
}

.secondary {
  border: 1px solid rgba(21, 19, 18, .18);
  background: rgba(255, 255, 255, .72);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  align-self: center;
}

.hero-panel div {
  display: grid;
  gap: 3px;
  padding: 22px;
  border: 1px solid rgba(230, 216, 207, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
}

.hero-panel strong {
  font-size: clamp(1.3rem, 2rem, 2rem);
  line-height: 1.05;
}

.hero-panel span {
  color: rgba(21, 19, 18, .62);
  font-weight: 700;
}

.band {
  background: var(--white);
}

.intro,
.services,
.booking,
.visit,
.gallery {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 4vw, 58px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-copy h2,
.section-head h2,
.visit h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.7rem, 4.7rem);
  line-height: .98;
  letter-spacing: 0;
}

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

.intro-grid article,
.booking-flow article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.intro-grid h3,
.booking-flow h3,
.hours h3 {
  margin: 14px 0 8px;
  font-size: 1.12rem;
}

.intro-grid p,
.booking-flow p,
.section-head p,
.service-panel p,
.visit dd,
.site-footer {
  color: rgba(21, 19, 18, .68);
}

.num {
  color: var(--gold);
  font-weight: 900;
}

.section-head {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-head p {
  max-width: 660px;
  font-size: 1.05rem;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.service-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.service-tabs button.active {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}

.service-stage {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.service-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  min-height: 430px;
}

.service-panel.active {
  display: grid;
}

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

.service-panel div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 5vw, 58px);
  background: #fbf4ef;
}

.service-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3rem, 3.3rem);
  line-height: 1;
}

.service-panel a {
  align-self: flex-start;
  margin-top: 20px;
  color: var(--rose);
  font-weight: 900;
}

.gallery {
  display: grid;
  grid-template-columns: .62fr 1fr .85fr;
  gap: 18px;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery img,
.quote-block {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.quote-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--ink);
  color: var(--paper);
}

.quote-block p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.35rem, 2.35rem);
  line-height: 1.08;
}

.quote-block span {
  color: rgba(255, 250, 247, .68);
  font-size: .95rem;
}

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

.booking-flow span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 900;
}

.wide-cta {
  width: 100%;
  margin-top: 14px;
  border-radius: 8px;
  background: var(--rose);
  color: var(--white);
}

.wide-cta svg {
  margin-left: auto;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 76px);
}

dl {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
}

dt {
  color: var(--rose);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-size: 1.08rem;
  font-weight: 750;
}

.hours {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.hours ul {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.hours li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px) 92px;
  background: var(--ink);
  color: rgba(255, 250, 247, .72);
}

.site-footer span:first-child {
  color: var(--paper);
  font-weight: 900;
}

.mobile-actions {
  position: fixed;
  z-index: 40;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(230, 216, 207, .8);
  border-radius: 8px;
  background: rgba(255, 250, 247, .94);
  box-shadow: 0 18px 50px rgba(21, 19, 18, .22);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(115%);
  transition: opacity .2s ease, transform .2s ease;
}

.mobile-actions-visible .mobile-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-actions a {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 54px;
  border-radius: 6px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
}

.mobile-actions a:last-child {
  background: var(--rose);
  color: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .intro,
  .service-panel,
  .gallery,
  .booking-flow,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-media {
    width: 100%;
    height: 380px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .service-panel img {
    height: 310px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    padding: 10px 14px;
    gap: 8px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 92px 18px 34px;
  }

  .hero h1 {
    font-size: 4.45rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel div {
    padding: 14px 18px;
  }

  .hero-panel {
    gap: 8px;
  }

  .hero-panel strong {
    font-size: 1.38rem;
  }

  .intro,
  .services,
  .booking,
  .visit,
  .gallery {
    padding: 54px 18px;
  }

  .intro-grid article,
  .booking-flow article {
    min-height: 190px;
  }

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

  .service-tabs button {
    padding: 0 10px;
  }

  .service-panel h3,
  .intro-copy h2,
  .section-head h2,
  .visit h2 {
    font-size: 2.25rem;
  }

  .gallery img,
  .quote-block {
    min-height: 280px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 108px;
  }

  .mobile-actions {
    display: grid;
  }
}
