* {
  box-sizing: border-box;
}

:root {
  --bg: #f8f1e8;
  --bg-strong: #efe1cf;
  --surface: rgba(255, 250, 245, 0.9);
  --surface-soft: rgba(255, 253, 249, 0.78);
  --wine: #4b120f;
  --wine-deep: #2d0d0b;
  --wine-soft: #6d2b21;
  --ink: #171311;
  --muted: #6d5b52;
  --cream: #f7efe4;
  --gold: #bf8e5c;
  --line: rgba(75, 18, 15, 0.12);
  --shadow: 0 30px 80px rgba(23, 19, 17, 0.15);
  --radius-xl: 2rem;
  --radius-lg: 1.55rem;
  --radius-md: 1.15rem;
  --content-width: 1180px;
  --header-height: 5.4rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Instrument Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(191, 142, 92, 0.15), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #f8f3ed 44%, var(--bg-strong) 100%);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 1rem 1rem auto;
  z-index: 20;
}

.site-header__bar {
  width: min(calc(100vw - 2rem), var(--content-width));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 245, 236, 0.26);
  border-radius: 999px;
  background: rgba(64, 31, 27, 0.56);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 14px 34px rgba(23, 19, 17, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 240, 0.22);
  object-fit: cover;
  flex-shrink: 0;
}

.brand__copy {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.brand__copy small,
.brand__copy strong {
  white-space: nowrap;
}

.brand__copy small {
  color: rgba(247, 239, 228, 0.84);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand__copy strong {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: auto;
}

.site-nav a {
  color: rgba(247, 239, 228, 0.92);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--cream);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 248, 240, 0.14);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-3px);
}

.nav-toggle span:last-child {
  transform: translateY(3px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  display: flex;
  align-items: flex-end;
  padding: 7.4rem 1.5rem 1.5rem;
}

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

.hero__image img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.02) contrast(1.01) brightness(1.06);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(18, 10, 10, 0.72) 0%, rgba(18, 10, 10, 0.42) 42%, rgba(18, 10, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(18, 10, 10, 0.1) 0%, rgba(18, 10, 10, 0.32) 100%);
}

.hero__layout,
.section__inner,
.site-footer {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.3rem;
  align-items: end;
}

.hero__content {
  max-width: 41rem;
  color: var(--cream);
  text-shadow: 0 8px 28px rgba(18, 10, 10, 0.18);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.page-title,
.section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.94;
}

.hero h1 {
  font-size: clamp(4.5rem, 12vw, 8rem);
}

.page-title {
  font-size: clamp(3.6rem, 9vw, 6rem);
}

.hero__lede,
.lead,
.section p,
.photo-card__caption p,
.editorial-card__caption p,
.destination-card p,
.site-footer,
.detail-list {
  font-size: 1rem;
  line-height: 1.7;
}

.hero__lede {
  max-width: 32rem;
  margin: 1.35rem 0 0;
  color: rgba(247, 239, 228, 0.92);
  font-size: 1.06rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  color: var(--wine);
  background: var(--cream);
}

.button--ghost,
.button--ghost-dark {
  border: 1px solid rgba(247, 239, 228, 0.28);
}

.button--ghost {
  color: var(--cream);
  background: rgba(247, 239, 228, 0.08);
}

.button--ghost-dark {
  color: var(--wine);
  border-color: rgba(75, 18, 15, 0.16);
  background: rgba(255, 255, 255, 0.24);
}

.hero__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.1rem;
}

.hero__rail span {
  color: rgba(247, 239, 228, 0.94);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(247, 239, 228, 0.24);
  border-radius: 999px;
  background: rgba(247, 239, 228, 0.1);
  backdrop-filter: blur(12px);
}

.section,
.page-hero {
  padding: clamp(4.5rem, 10vw, 8rem) 1.5rem;
}

.section {
  scroll-margin-top: 6.75rem;
}

.section h2 {
  font-size: clamp(3rem, 7vw, 4.8rem);
  max-width: 46rem;
}

.section p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.84fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split--reverse {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 0.9fr);
}

.stack-copy {
  align-self: center;
}

.stack-copy--light,
.stack-copy--light p {
  color: var(--cream);
}

.lead {
  color: var(--ink);
  font-size: 1.08rem;
}

.media-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: #fff;
}

.media-card img {
  height: 100%;
  object-fit: cover;
}

.media-card--portrait {
  aspect-ratio: 4 / 5.1;
}

.media-card--wide {
  aspect-ratio: 1.18;
}

.media-card figcaption {
  padding: 0.8rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section--dark {
  background:
    radial-gradient(circle at top right, rgba(232, 193, 150, 0.18), transparent 28%),
    linear-gradient(180deg, #6a2a20 0%, #4d1712 100%);
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.section-heading {
  display: grid;
  gap: 0.7rem;
  max-width: 44rem;
  margin-bottom: 2.2rem;
}

.section-heading p {
  margin-top: 0;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

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

.destination-card {
  display: grid;
  gap: 0.9rem;
  min-height: 14rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 246, 0.68);
  transition: transform 180ms ease, border-color 180ms ease;
}

.destination-card:hover,
.destination-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(75, 18, 15, 0.24);
}

.destination-card span,
.photo-card__caption span,
.editorial-card__caption span {
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.destination-card strong {
  font-size: 1.35rem;
  font-weight: 600;
}

.destination-card p {
  margin: 0;
}

.balanced-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr);
  gap: 1.15rem;
  align-items: stretch;
}

.photo-card,
.editorial-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.photo-card a,
.editorial-card a,
.photo-card > img,
.editorial-card > img {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.photo-card img,
.editorial-card img,
.photo-card > img,
.editorial-card > img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.photo-card:hover > img,
.photo-card:focus-within > img,
.editorial-card:hover > img,
.editorial-card:focus-within > img,
.photo-card a:hover img,
.photo-card a:focus-visible img,
.editorial-card a:hover img,
.editorial-card a:focus-visible img {
  transform: scale(1.03);
}

.photo-card--landscape a,
.photo-card--landscape > img {
  aspect-ratio: 1.34;
}

.photo-card--square a,
.photo-card--square > img {
  aspect-ratio: 1;
}

.photo-card--portrait a,
.photo-card--portrait > img {
  aspect-ratio: 4 / 5.4;
}

.photo-card__caption p,
.editorial-card__caption p {
  margin: 0.4rem 0 0;
}

.photo-card__caption,
.editorial-card__caption {
  padding-inline: 0.1rem;
}

.section-cta {
  margin-top: 1.8rem;
}

.page-hero {
  padding-top: 9rem;
}

.page-hero--compact {
  padding-bottom: 5rem;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.84fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.detail-list {
  margin: 1.5rem 0 0;
  padding-left: 1rem;
  color: var(--ink);
}

.detail-list li + li {
  margin-top: 0.55rem;
}

.quote-panel {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 246, 0.68);
}

.quote-panel p:last-child {
  max-width: 42rem;
}

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

.editorial-card {
  grid-column: span 4;
}

.editorial-card--wide {
  grid-column: span 7;
}

.editorial-card--square {
  grid-column: span 5;
}

.editorial-card--wide a,
.editorial-card--wide > img {
  aspect-ratio: 1.25;
}

.editorial-card--square a,
.editorial-card--square > img {
  aspect-ratio: 1;
}

.editorial-card--tall a,
.editorial-card--tall > img {
  aspect-ratio: 4 / 5.5;
}

.editorial-card--portrait a,
.editorial-card--portrait > img {
  aspect-ratio: 4 / 5;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 1.25rem;
  align-items: start;
}

.visit-panel,
.brand-panel {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 244, 0.68);
}

.brand-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.brand-panel img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
}

.brand-panel strong {
  display: block;
  font-size: 1.35rem;
}

.brand-panel p {
  margin: 0.25rem 0 0;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.text-link {
  display: inline-flex;
  margin-top: 1.4rem;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem 2rem;
  color: rgba(23, 19, 17, 0.72);
}

.site-footer__links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

body.has-motion [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.has-motion [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.is-ready .hero__content {
  animation: hero-rise 850ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

body.is-ready .hero__rail {
  animation: hero-fade 1200ms ease both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(2.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-header__bar {
    border-radius: 1.5rem;
    padding: 0.78rem 0.95rem;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    padding: 1rem;
    border: 1px solid rgba(255, 248, 240, 0.22);
    border-radius: 1.5rem;
    background: rgba(64, 31, 27, 0.86);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.6rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    width: 100%;
    padding: 0.2rem 0;
  }

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

  .site-header.is-open .nav-toggle span:first-child {
    transform: rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .hero,
  .page-hero {
    padding-inline: 1rem;
  }

  .section {
    padding-inline: 1rem;
  }

  .hero__layout,
  .split,
  .split--reverse,
  .page-hero__grid,
  .balanced-gallery,
  .destination-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 7.2rem;
    padding-bottom: 2rem;
  }

  .hero__layout {
    gap: 1.4rem;
  }

  .destination-card {
    min-height: auto;
  }

  .visit-panel,
  .brand-panel,
  .quote-panel {
    padding: 1.25rem;
  }

  .hero__rail {
    margin-top: 0;
  }

  .editorial-card,
  .editorial-card--wide,
  .editorial-card--square {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .site-header {
    inset: 0.8rem 0.8rem auto;
  }

  .site-header__bar {
    width: calc(100vw - 1.6rem);
    min-height: 4.7rem;
    padding: 0.7rem 0.85rem;
  }

  .brand img {
    width: 2.9rem;
    height: 2.9rem;
  }

  .brand__copy small {
    display: none;
  }

  .brand__copy strong {
    font-size: 0.94rem;
  }

  .hero,
  .section,
  .page-hero {
    padding-inline: 0.9rem;
  }

  .hero {
    padding-top: 6.8rem;
    padding-bottom: 1.35rem;
  }

  .section,
  .page-hero {
    padding-block: 3.6rem;
  }

  .page-hero {
    padding-top: 7.5rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.4rem);
  }

  .page-title,
  .section h2 {
    font-size: clamp(2.65rem, 12vw, 3.8rem);
  }

  .button {
    width: 100%;
  }

  .hero__content {
    max-width: none;
  }

  .hero__lede,
  .lead,
  .section p,
  .photo-card__caption p,
  .editorial-card__caption p,
  .destination-card p,
  .site-footer,
  .detail-list {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .hero__actions {
    margin-top: 1.35rem;
    gap: 0.65rem;
  }

  .section-heading {
    margin-bottom: 1.5rem;
    gap: 0.55rem;
  }

  .balanced-gallery,
  .editorial-grid,
  .destination-grid,
  .visit-grid {
    gap: 0.9rem;
  }

  .editorial-grid {
    gap: 1.2rem;
  }

  .editorial-card {
    gap: 0.65rem;
    padding: 0.55rem 0.55rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 1.35rem;
    background: rgba(255, 251, 246, 0.72);
    box-shadow: 0 16px 38px rgba(23, 19, 17, 0.08);
  }

  .editorial-card > img {
    border-radius: 1rem;
  }

  .editorial-card--wide > img,
  .editorial-card--square > img {
    aspect-ratio: 1.16;
  }

  .editorial-card--tall > img,
  .editorial-card--portrait > img {
    aspect-ratio: 4 / 4.9;
  }

  .editorial-card__caption {
    padding-inline: 0.2rem;
  }

  .destination-card {
    padding: 1.1rem;
    gap: 0.7rem;
  }

  .visit-panel,
  .brand-panel,
  .quote-panel {
    padding: 1.1rem;
    border-radius: 1.2rem;
  }

  .brand-panel {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.85rem;
  }

  .brand-panel img {
    width: 4.7rem;
    height: 4.7rem;
  }

  .map-card {
    aspect-ratio: 1 / 1.02;
  }

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

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

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

  body.has-motion [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
