:root {
  --color-primary: #c19a6b;
  --color-primary-dark: #a67b5b;
  --color-background: #faf9f6;
  --color-surface: #ffffff;
  --color-text: #2c2c2c;
  --color-text-light: #666666;
  --color-border: rgba(44, 44, 44, 0.08);
  --color-shadow: rgba(28, 23, 18, 0.08);
  --header-height: 88px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section {
  padding: 6rem 0;
}

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

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

.section-heading {
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.booking-card h3,
.hero h1,
.site-footer h4,
.service-card h3,
.gallery-card__content h3,
.contact-item h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
}

.section-heading h2,
.about-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.12;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  position: relative;
  transition: background-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(31, 24, 19, 0.08);
  backdrop-filter: blur(14px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.brand,
.footer-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a :not(#book-now-btn) {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.footer-links a:hover,
.contact-item a:hover,
.booking-card__footnote a:hover {
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(44, 44, 44, 0.06);
  box-shadow: 0 20px 40px rgba(20, 15, 11, 0.08);
}

.mobile-menu__content {
  display: grid;
  padding: 1rem 0 1.6rem;
}

.mobile-menu__content a {
  padding: 0.95rem 0.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu__cta {
  color: var(--color-primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

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

.button--solid {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(193, 154, 107, 0.24);
}

.button--solid:hover {
  background: var(--color-primary-dark);
}

.button--dark {
  background: var(--color-text);
  color: #fff;
}

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

.button--outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

#book-now-btn:hover,
.button--outline:hover,
.button--outline-accent:hover {
  background: var(--color-primary);
  color: #fff;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.button--ghost:hover {
  background: #fff;
  color: var(--color-text);
}

#book-now-btn,
.button--outline-accent {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}

.hero {
  position: relative;
  min-height: calc(100vh - 1rem);
  display: grid;
  place-items: center;
  overflow: clip;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  background: linear-gradient(180deg, rgba(9, 7, 7, 0.25), rgba(9, 7, 7, 0.52));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 5rem;
}

.hero__copy {
  max-width: 860px;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.98;
  margin-bottom: 1.5rem;
}

.hero h1 span,
.about-copy h2 span {
  color: var(--color-primary);
  font-style: italic;
}

.hero__description {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.services-grid,
.contact-grid,
.footer-grid,
.about-grid {
  display: grid;
  gap: 1.5rem;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px var(--color-shadow);
}

.service-card__subtitle {
  margin: 0 0 0.5rem;
  color: var(--color-primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
}

.service-card h3 {
  font-size: 1.8rem;
  line-height: 1.2;
}

.service-card p:last-of-type {
  color: var(--color-text-light);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover {
  color: var(--color-primary);
}

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

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 3.5rem;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-quote {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  max-width: 260px;
  margin: 0;
  padding: 1.4rem;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.45;
  box-shadow: 0 18px 40px rgba(193, 154, 107, 0.22);
}

.about-copy__text p,
.contact-item p,
.booking-card p,
.site-footer p,
.footer-links,
.contact-item a {
  color: var(--color-text-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2rem 0 2.3rem;
  border-top: 1px solid rgba(44, 44, 44, 0.08);
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
}

.stats-grid div {
  padding: 1.3rem 0.75rem;
  text-align: center;
}

.stats-grid div:nth-child(2) {
  border-inline: 1px solid rgba(44, 44, 44, 0.08);
}

.stats-grid strong {
  display: block;
  color: var(--color-primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stats-grid span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

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

.gallery-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #1a1816;
}

.gallery-card--large {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.05), rgba(8, 7, 6, 0.72));
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card__content {
  position: absolute;
  inset-inline: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  color: #fff;
}

.gallery-card__content span {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.84);
}

.gallery-card__content h3 {
  font-size: 1.45rem;
  margin-bottom: 0.2rem;
}

.gallery-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-footer {
  text-align: center;
  margin-top: 2.5rem;
}

.gallery-footer p {
  color: var(--color-text-light);
}

.contact-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1.5rem;
}

.contact-item,
.booking-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 32px var(--color-shadow);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.contact-item__icon {
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-background);
  color: var(--color-primary);
}

.contact-item__icon svg {
  width: 24px;
  height: 24px;
}

.booking-card {
  background: var(--color-background);
  text-align: center;
}

.booking-card h3 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.booking-card__footnote {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.site-footer {
  padding: 4.5rem 0 1.6rem;
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  grid-template-columns: 1.15fr 0.8fr 1fr;
  gap: 2rem;
  padding-bottom: 2.2rem;
}

.site-footer h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom a:hover,
.footer-brand:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.no-scroll {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .gallery-card img,
  .button,
  .text-link::after,
  .menu-toggle span,
  .navbar {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .services-grid,
  .footer-grid,
  .about-grid,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card--large {
    grid-row: span 1;
  }

  .about-grid {
    gap: 2.5rem;
  }

  .about-quote {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .contact-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 840px) {
  .nav-links--desktop {
    display: none;
  }

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

  .section {
    padding: 5rem 0;
  }

  .hero__content {
    padding-top: 6rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container-width));
  }

  .hero {
    min-height: 92vh;
  }

  .hero__actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .service-card,
  .contact-item,
  .booking-card {
    padding: 1.4rem;
  }

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

  .stats-grid div:nth-child(2) {
    border-inline: 0;
    border-top: 1px solid rgba(44, 44, 44, 0.08);
    border-bottom: 1px solid rgba(44, 44, 44, 0.08);
  }

  .contact-item {
    flex-direction: column;
  }
}
