:root {
  --ink: #171316;
  --soft-ink: #4b4249;
  --cream: #fbf7f0;
  --paper: #fffdf9;
  --line: #e7dccc;
  --gold: #b98d45;
  --gold-dark: #7b5a26;
  --plum: #66506c;
  --plum-soft: #f1eaf4;
  --shadow: 0 22px 70px rgba(23, 19, 22, 0.16);
  --radius: 8px;
  --max: 1160px;
  --header-offset: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

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

[id] {
  scroll-margin-top: var(--header-offset);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 220, 204, 0.8);
}

.nav {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(145deg, #efe2c8, #c69b52);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.05;
}

.brand small {
  color: var(--soft-ink);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--soft-ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-menu a {
  padding: 0.4rem 0;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 26px rgba(23, 19, 22, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #2a2228;
}

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

.button-small {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
}

.hero {
  width: min(var(--max), calc(100% - 2rem));
  min-height: clamp(610px, calc(100vh - 145px), 720px);
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3.25rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(1.75rem, 4vw, 4.25rem);
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

h1 {
  max-width: 10.5em;
  font-size: clamp(3rem, 6.2vw, 5.35rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 620px;
  margin: 1.25rem 0 0;
  color: var(--soft-ink);
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.hero-details span {
  padding: 0.5rem 0.7rem;
  color: var(--soft-ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-image {
  margin: 0;
  aspect-ratio: 4 / 4.8;
  height: clamp(440px, 62vh, 600px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
}

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

.quick-contact {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.quick-contact a {
  padding: 1rem;
  text-align: center;
  font-weight: 800;
}

.quick-contact a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-contact a:hover,
.quick-contact a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(3rem, 5vw, 4.5rem) max(1rem, calc((100vw - var(--max)) / 2));
}

.section-light {
  background: var(--cream);
}

.section-dark {
  color: white;
  background: #1d171b;
}

.section-dark .eyebrow {
  color: #d9b36f;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow),
.text-stack,
.feature-grid p,
.booking-card p,
.location-copy address,
.site-footer p,
.note {
  color: var(--soft-ink);
}

.section-dark .feature-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.compact {
  max-width: 760px;
}

#why-title {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2rem, 3.6vw, 3.05rem);
}

.services-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.services-grid article,
.feature-grid article,
.hours-card,
.booking-card {
  border-radius: var(--radius);
}

.services-grid article {
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.services-grid ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.services-grid li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.about-section h2 {
  max-width: 9.5em;
}

.about-section .text-stack {
  max-width: 680px;
}

.text-stack p {
  margin: 0;
  font-size: 1.04rem;
}

.text-stack p + p {
  margin-top: 1rem;
}

.feature-grid article {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 0.8rem;
}

.gallery-item {
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  cursor: pointer;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.gallery-wide {
  grid-column: span 2;
}

.info-section,
.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  background: var(--paper);
}

.hours-card,
.booking-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--cream);
}

.hours-list {
  margin: 1.4rem 0 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
  border-top: 1px solid var(--line);
}

.hours-list dt {
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
  color: var(--soft-ink);
}

.note {
  margin: 1rem 0 0;
  font-size: 0.94rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  background: var(--plum-soft);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9cce0;
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(185, 141, 69, 0.28);
  border-color: var(--gold);
}

.full-width,
.form-error,
.contact-form button {
  grid-column: 1 / -1;
}

.form-error {
  margin: 0;
  padding: 0.85rem 0.9rem;
  border: 1px solid #b54747;
  border-radius: var(--radius);
  color: #7a2424;
  background: #fff4f4;
  font-weight: 700;
}

.location-section {
  align-items: center;
  background: var(--ink);
  color: white;
}

.location-copy address {
  margin: 1rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.map-wrap {
  aspect-ratio: 4 / 3;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #2a2228;
}

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

.site-footer {
  padding: 2rem max(1rem, calc((100vw - var(--max)) / 2));
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.2rem;
  color: var(--soft-ink);
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 4rem 1rem 1rem;
  background: rgba(23, 19, 22, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 980px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 42px;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav-menu a {
    padding: 0.8rem;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .split-section,
  .info-section,
  .contact-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 1rem, var(--max));
  }

  h1 {
    font-size: 3rem;
  }

  .hero {
    width: min(100% - 1rem, var(--max));
    padding-bottom: 2rem;
  }

  .hero-actions,
  .contact-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-contact {
    width: min(100% - 1rem, var(--max));
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-contact a:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .quick-contact a:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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