:root {
  --gold: #c99b3f;
  --gold-dark: #7d5819;
  --cream: #fbf7ed;
  --white: #ffffff;
  --ink: #17130d;
  --muted: #726858;
  --line: rgba(201, 155, 63, 0.28);
  --shadow: 0 28px 80px rgba(44, 32, 13, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--white);
  border: 2px solid var(--gold);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 4vw;
  color: var(--white);
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 42px rgba(40, 30, 13, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  animation: markPulse 3s ease-in-out infinite;
}

.is-scrolled .brand-mark,
.menu-active .brand-mark {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.72rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav .is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.button-gold {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 18px 44px rgba(125, 88, 25, 0.26);
}

.button-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.header-cta::after,
.button-gold::after {
  content: "";
  position: absolute;
  inset: -50% auto -50% -70%;
  width: 55%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: sheen 3.2s ease-in-out infinite;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-3px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.menu-active .menu-button span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-active .menu-button span:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 70;
  inset: 76px 4vw auto;
  display: none;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-nav.is-open {
  display: grid;
  animation: menuReveal 220ms ease both;
}

.mobile-nav a {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 0.9rem;
  border-radius: var(--radius);
  font-weight: 850;
}

.mobile-nav a:hover {
  background: var(--cream);
}

.home-hero {
  min-height: 100dvh;
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  transform: scale(1.08);
  animation: heroZoom 15s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 13, 7, 0.82), rgba(18, 13, 7, 0.26)),
    linear-gradient(0deg, rgba(251, 247, 237, 0.98), transparent 24%);
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 9rem 0 7rem;
  color: var(--white);
}

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

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 1000px;
  font-size: clamp(3.8rem, 10vw, 9.5rem);
  animation: textLift 860ms ease both, goldGleam 4.8s ease-in-out 900ms infinite;
  background: linear-gradient(100deg, #fff, #fff, #ead09a, #fff, #fff);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(2.3rem, 6vw, 5.2rem);
}

h3,
p {
  margin-top: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 660px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
  animation: textLift 860ms ease 140ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  animation: textLift 860ms ease 260ms both;
}

.hero-metrics {
  position: absolute;
  right: 4vw;
  bottom: 4rem;
  display: grid;
  gap: 0.7rem;
  color: var(--white);
}

.hero-metrics span {
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  animation: chipFloat 3.5s ease-in-out infinite;
}

.hero-metrics span:nth-child(2) {
  animation-delay: 220ms;
}

.hero-metrics span:nth-child(3) {
  animation-delay: 440ms;
}

.moving-strip {
  overflow: hidden;
  padding: 1.2rem 0;
  color: var(--gold);
  background: var(--ink);
}

.strip-track {
  width: max-content;
  display: flex;
  gap: 2.2rem;
  padding-left: 100%;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.strip-track span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4vw, 3.4rem);
}

.split-section,
.feature-grid,
.services-preview,
.booking-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 7rem 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.split-copy p,
.services-preview p,
.booking-panel p {
  color: var(--muted);
  font-size: 1.06rem;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: var(--gold-dark);
  font-weight: 900;
}

.text-link::after {
  content: ">";
  margin-left: 0.5rem;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(6px);
}

.image-stack {
  min-height: 600px;
  position: relative;
}

.stack-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stack-card img {
  transition: transform 900ms ease;
}

.stack-card:hover img {
  transform: scale(1.08);
}

.stack-card figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: var(--white);
  font-weight: 900;
}

.stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 13, 7, 0.58), transparent 50%);
}

.stack-large {
  inset: 0 14% 8% 0;
  animation: imageDrift 5s ease-in-out infinite;
}

.stack-small {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 42%;
  border: 8px solid var(--cream);
  animation: imageDrift 4.5s ease-in-out infinite reverse;
}

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

.feature-grid article {
  min-height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(44, 32, 13, 0.12);
}

.feature-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 13, 7, 0.76), transparent 56%);
}

.feature-grid article img {
  transition: transform 900ms ease;
}

.feature-grid article:hover img {
  transform: scale(1.1);
}

.feature-grid article div {
  position: absolute;
  z-index: 2;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  color: var(--white);
}

.feature-grid span {
  color: var(--gold);
  font-weight: 900;
}

.feature-grid h3 {
  margin: 0.35rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.feature-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.services-preview {
  display: grid;
  grid-template-columns: 1fr 0.8fr auto;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
}

.booking-photo {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-photo img {
  animation: slowPan 10s ease-in-out infinite alternate;
}

.booking-panel {
  padding: clamp(1.25rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgba(44, 32, 13, 0.1);
}

.booking-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.booking-form label {
  display: grid;
  gap: 0.42rem;
  font-weight: 850;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(114, 104, 88, 0.28);
  border-radius: var(--radius);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(201, 155, 63, 0.38);
  outline-offset: 3px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 155, 63, 0.1);
}

.form-note {
  min-height: 1.5rem;
  margin: 0;
  color: var(--gold-dark);
  font-weight: 850;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  min-height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.site-footer span {
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  gap: 1rem;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes textLift {
  from { opacity: 0; transform: translateY(42px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes goldGleam {
  0%, 35% { background-position: 115% 0; }
  70%, 100% { background-position: -35% 0; }
}

@keyframes sheen {
  0%, 35% { left: -70%; }
  70%, 100% { left: 120%; }
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes marquee {
  to { transform: translateX(-100%); }
}

@keyframes imageDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

@keyframes slowPan {
  from { transform: scale(1.05) translateX(-1.5%); }
  to { transform: scale(1.14) translateX(1.5%); }
}

@keyframes markPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(201, 155, 63, 0); }
  50% { box-shadow: 0 0 34px rgba(201, 155, 63, 0.42); }
}

@keyframes menuReveal {
  from { opacity: 0; transform: translateY(-12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-metrics {
    display: none;
  }

  .split-section,
  .booking-section,
  .services-preview {
    grid-template-columns: 1fr;
  }

  .image-stack,
  .booking-photo {
    min-height: 520px;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding-inline: 1rem;
  }

  .brand small {
    display: none;
  }

  .mobile-nav {
    inset: 68px 1rem auto;
  }

  .hero-content {
    padding: 7rem 0 4.8rem;
  }

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

  .split-section,
  .feature-grid,
  .services-preview,
  .booking-section {
    padding: 4.5rem 0;
  }

  .image-stack {
    min-height: 430px;
  }

  .stack-large {
    inset: 0 0 18% 0;
  }

  .stack-small {
    width: 52%;
    height: 36%;
  }

  .feature-grid article {
    min-height: 340px;
  }

  .site-footer {
    min-height: 170px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

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