:root {
  --ink: #16110e;
  --ink-soft: #241c16;
  --espresso: #3a2f26;
  --cream: #f6f0e7;
  --cream-deep: #ebe2d4;
  --paper: #fdfaf5;
  --gold: #c4a574;
  --gold-bright: #d9bf93;
  --gold-deep: #9c7d4f;
  --text: #2f2721;
  --muted: #6d6156;
  --line: rgba(196, 165, 116, 0.28);
  --shadow: 0 18px 50px rgba(22, 17, 14, 0.12);
  --shadow-soft: 0 10px 30px rgba(22, 17, 14, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --claim-h: 42px;
  --nav-h: 76px;
  --header-offset: 118px;
  --max: 1180px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10000;
  background: var(--ink);
  color: var(--cream);
  padding: 0.7rem 1rem;
  border-radius: 8px;
}

.skip-link:focus {
  top: calc(var(--claim-h) + 8px);
}

.claim-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  min-height: 42px;
  padding: 0.45rem 1rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.claim-bar a {
  color: var(--ink);
  background: var(--gold-bright);
  text-decoration: none;
  font-weight: 600;
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.claim-bar a:hover {
  background: #ead7b5;
  transform: translateY(-1px);
}

.site-header {
  padding-top: var(--claim-h);
}

.site-nav {
  position: sticky;
  top: var(--claim-h);
  z-index: 80;
  background: rgba(253, 250, 245, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-nav.is-scrolled {
  background: rgba(253, 250, 245, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(22, 17, 14, 0.06);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--ink);
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.2rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--espresso);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(22, 17, 14, 0.18);
}

.btn-primary:hover {
  background: #2a211b;
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246, 240, 231, 0.35);
}

.btn-ghost:hover {
  background: rgba(246, 240, 231, 0.1);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-bright);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(58, 47, 38, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold-deep);
  background: rgba(196, 165, 116, 0.1);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-offset) 0 0 0;
  z-index: 70;
  background: rgba(253, 250, 245, 0.97);
  padding: 1.5rem 1.25rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.mobile-nav a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
}

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

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 17, 14, 0.18) 0%, rgba(22, 17, 14, 0.55) 48%, rgba(22, 17, 14, 0.88) 100%),
    linear-gradient(90deg, rgba(22, 17, 14, 0.55) 0%, rgba(22, 17, 14, 0.12) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.25rem 4.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.7rem, 7vw, 6.2rem);
  line-height: 0.92;
  margin: 0 0 1.1rem;
  max-width: 11ch;
}

.hero-lead {
  max-width: 38rem;
  font-size: 1.05rem;
  color: rgba(246, 240, 231, 0.86);
  margin: 0 0 1.8rem;
}

.hero-meta,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero-meta {
  margin-bottom: 1.6rem;
}

.chip {
  border: 1px solid rgba(196, 165, 116, 0.35);
  background: rgba(22, 17, 14, 0.28);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
}

.section {
  padding: 5.5rem 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.7rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 1rem;
  color: var(--ink);
}

.lede {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 0 2.4rem;
}

.about {
  display: grid;
  gap: 2.4rem;
}

.about-copy p {
  margin: 0 0 1rem;
}

.about-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.about-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.about-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(253, 250, 245, 0.86);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.about-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
}

.grid-3,
.grid-2,
.service-grid,
.feature-grid,
.amenity-grid,
.specialty-grid {
  display: grid;
  gap: 1.1rem;
}

.card {
  background: #fff;
  border: 1px solid rgba(58, 47, 38, 0.06);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.55rem;
  font-weight: 600;
}

.card p,
.card li {
  color: var(--muted);
}

.why {
  background:
    radial-gradient(circle at top right, rgba(196, 165, 116, 0.16), transparent 36%),
    var(--cream);
}

.icon-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(196, 165, 116, 0.16);
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
}

.services {
  background: var(--paper);
}

.service-block {
  margin-bottom: 2.4rem;
}

.service-block h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 1rem;
}

.service-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(58, 47, 38, 0.06);
}

.service-list span {
  color: var(--gold-deep);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.featured {
  background: var(--ink);
  color: var(--cream);
}

.featured h2,
.featured .section-kicker {
  color: var(--cream);
}

.featured .lede {
  color: rgba(246, 240, 231, 0.72);
}

.feature-card {
  overflow: hidden;
  padding: 0;
  background: #211a15;
  color: var(--cream);
  border: 1px solid rgba(196, 165, 116, 0.14);
}

.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.feature-card:hover img {
  transform: scale(1.07);
}

.feature-card div {
  padding: 1.2rem 1.25rem 1.4rem;
}

.feature-card h3 {
  color: var(--cream);
}

.feature-card p {
  color: rgba(246, 240, 231, 0.72);
  margin: 0;
}

.reviews {
  background: var(--cream);
}

.review-card {
  min-height: 100%;
}

.review-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.faq {
  background: var(--paper);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 1.2rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::after {
  content: "+";
  color: var(--gold-deep);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: "–";
}

.faq-answer {
  padding: 0 0 1.15rem;
  color: var(--muted);
}

.experience {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink-soft);
}

.experience-bg {
  position: absolute;
  inset: 0;
}

.experience-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.experience .section-inner {
  position: relative;
}

.experience h2,
.experience .section-kicker {
  color: var(--cream);
}

.experience .lede,
.experience p {
  color: rgba(246, 240, 231, 0.78);
}

.amenities {
  background: var(--cream);
}

.amenity {
  text-align: center;
}

.specialty-card {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.local {
  background: var(--paper);
}

.local-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-list li {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(58, 47, 38, 0.06);
}

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

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

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(196, 165, 116, 0.18), transparent 48%),
    var(--ink);
  color: var(--cream);
}

.final-cta h2 {
  color: var(--cream);
}

.final-cta p {
  margin: 0 auto 1.8rem;
  max-width: 34rem;
  color: rgba(246, 240, 231, 0.76);
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  background: #110d0b;
  color: rgba(246, 240, 231, 0.72);
  padding: 2.4rem 1.25rem 7.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.footer-inner a {
  color: var(--gold-bright);
}

.mobile-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 85;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(253, 250, 245, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="1"] { transition-delay: 0.05s; }
[data-reveal="2"] { transition-delay: 0.12s; }
[data-reveal="3"] { transition-delay: 0.18s; }
[data-reveal="4"] { transition-delay: 0.24s; }
[data-reveal="5"] { transition-delay: 0.3s; }
[data-reveal="6"] { transition-delay: 0.36s; }

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@media (min-width: 760px) {
  .nav-toggle,
  .mobile-nav,
  .mobile-cta {
    display: none;
  }

  .nav-links,
  .nav-cta {
    display: flex;
  }

  .about,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .grid-3,
  .service-grid,
  .specialty-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .site-footer {
    padding-bottom: 2.4rem;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding-bottom: 5.5rem;
  }

  .about-panel {
    min-height: 460px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero-media img {
    transform: none;
  }
}
