:root {
  --bg: #f4f0ea;
  --bg-deep: #ebe4dc;
  --surface: rgba(255, 250, 245, 0.82);
  --text: #1f1b19;
  --muted: #6f645c;
  --line: rgba(68, 57, 50, 0.12);
  --gold: #c7a11f;
  --brown: #855543;
  --charcoal: #171717;
  --shadow: 0 24px 60px rgba(37, 29, 25, 0.14);
  --radius-large: 40px;
  --container: min(1080px, calc(100vw - 2rem));
  --header-height: 72px;
  --transition: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #f6f2ec 0%, #f1ebe3 100%);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
}

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

.site-header {
  position: sticky;
  top: 36px;
  z-index: 100;
  padding: 0.9rem 0 0;
}

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 120;
  background: #232323;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-bar p {
  padding: 0.75rem 1rem;
}

.header-bar {
  width: var(--container);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(43, 34, 28, 0.18);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}

.brand-mark,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand-mark {
  font-size: 2.1rem;
  line-height: 0.85;
  color: #fff7e8;
}

.menu-toggle {
  display: inline-flex;
  width: 2.9rem;
  height: 2.9rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 1.15rem;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.site-nav {
  position: fixed;
  inset: calc(36px + var(--header-height) + 1rem) 1rem auto 1rem;
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(28, 24, 22, 0.92);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity var(--transition), transform var(--transition);
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

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

.hero {
  position: relative;
  min-height: calc(100svh - 36px);
  margin-top: calc(var(--header-height) * -1 - 36px);
  padding: calc(var(--header-height) + 36px + 3rem) 0 2.5rem;
  overflow: clip;
}



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

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

.hero-backdrop {
  background:
    linear-gradient(180deg, rgba(28, 22, 18, 0.26) 0%, rgba(28, 22, 18, 0.42) 46%, rgba(28, 22, 18, 0.58) 100%),
    linear-gradient(90deg, rgba(28, 22, 18, 0.4) 0%, rgba(28, 22, 18, 0.14) 45%, rgba(28, 22, 18, 0.08) 100%);
}

.hero-content,
.editorial-grid,
.signature-grid,
.gallery-mosaic,
.contact-shell,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.hero-content,
.editorial-grid,
.contact-shell {
  display: grid;
  gap: 2rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-items: end;
  min-height: calc(100svh - 36px - 3rem);
}

.hero-copy {
  max-width: 28rem;
  color: #fff;
  padding: 0 0 2rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.97;
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1;
}

.hero-text,
.contact-details p {
  color: var(--muted);
}

.hero-text {
  max-width: 20rem;
  margin-top: 1rem;
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

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

.button-primary {
  color: var(--charcoal);
  background: rgba(255, 251, 246, 0.96);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.editorial-photo,
.mosaic-item,
.contact-shell {
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  background: #ddd4ca;
}

.editorial-photo img,
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 2rem 0 5rem;
}

.note-label,
.signature-index,
.contact-details span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signature-grid,
.gallery-mosaic {
  display: grid;
  gap: 1rem;
}

.booking-shell {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 250, 245, 0.92), rgba(235, 228, 220, 0.96));
  box-shadow: var(--shadow);
}

.maps-cta {
  width: var(--container);
  margin: -5.5rem auto 6.5rem;
  display: flex;
  justify-content: center;
}

.maps-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 4rem;
  padding: 0.95rem 1.5rem;
  border: 1px solid rgba(31, 27, 25, 0.12);
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.94);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(71, 54, 43, 0.1);
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.maps-button:hover,
.maps-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(31, 27, 25, 0.22);
  background: rgba(255, 248, 241, 1);
  box-shadow: 0 18px 34px rgba(71, 54, 43, 0.14);
}

.maps-button img {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
}

.booking-copy p:last-child,
.booking-note,
.signature-item p {
  color: var(--muted);
}

.booking-actions {
  display: grid;
  gap: 0.9rem;
  align-content: end;
}

.booking-note {
  font-weight: 700;
}

.signature-item {
  padding: 1.1rem 1rem;
  border-top: 1px solid rgba(31, 27, 25, 0.12);
  text-align: center;
}

.gallery-mosaic {
  grid-auto-rows: minmax(13rem, auto);
}

.editorial-grid {
  align-items: end;
}

.editorial-photo-main {
  min-height: 26rem;
}

.editorial-photo-side {
  min-height: 20rem;
}

.editorial-copy {
  padding: 1rem 0;
  text-align: center;
}

.mosaic-item {
  min-height: 15rem;
}

.mosaic-item-large {
  min-height: 24rem;
}

.mosaic-item-wide {
  min-height: 19rem;
}

.contact-shell {
  padding: 2rem;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 250, 245, 0.88), rgba(235, 228, 220, 0.92));
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-details p {
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 27, 25, 0.1);
}

.contact-details a,
.contact-details strong {
  color: var(--text);
  font-weight: 700;
}

.contact-copy .eyebrow {
  color: rgba(71, 54, 43, 0.72);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(31, 27, 25, 0.1);
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  min-width: 3.6rem;
  height: 3.6rem;
  min-height: 3.6rem;
  padding: 0.9rem;
  border: 1px solid rgba(31, 27, 25, 0.12);
  border-radius: 50%;
  background: rgba(255, 251, 246, 0.92);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(71, 54, 43, 0.08);
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.social-button:hover,
.social-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(31, 27, 25, 0.22);
  background: rgba(255, 248, 241, 1);
  box-shadow: 0 16px 30px rgba(71, 54, 43, 0.12);
}

.social-button img {
  width: 3.6rem;
  height: 3.6rem;
  object-fit: contain;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 2rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 700ms ease, translate 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (min-width: 760px) {
  .editorial-grid {
    grid-template-columns: 1fr 0.62fr;
    gap: 1.4rem;
  }

  .editorial-copy {
    align-self: center;
    text-align: left;
  }

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

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

}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 0.7rem 0.95rem;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .editorial-grid {
    grid-template-columns: 1.1fr 0.55fr 0.85fr;
    gap: 1.25rem;
  }

  .gallery-mosaic {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .booking-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .mosaic-item-large {
    grid-row: span 2;
    min-height: 100%;
  }

  .mosaic-item-wide {
    grid-column: 2;
  }

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

  .contact-shell {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 22rem);
    gap: 3rem;
    align-items: end;
  }

  .site-header {
    top: 36px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    translate: 0 0;
  }
}
