:root {
  color-scheme: light;
  --bg: #f4ecdf;
  --bg-deep: #e7dbc9;
  --paper: rgba(248, 242, 233, 0.78);
  --forest: #173124;
  --forest-soft: #243a2d;
  --ink: #1d1d18;
  --muted: #5f574d;
  --gold: #c5a464;
  --gold-soft: #dfc58c;
  --line: rgba(30, 38, 31, 0.12);
  --shadow: 0 30px 90px rgba(29, 35, 29, 0.12);
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(197, 164, 100, 0.16), transparent 26%),
    linear-gradient(180deg, #f7f1e8 0%, var(--bg) 34%, var(--bg-deep) 100%);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.1rem, 2vw, 2rem);
  background: linear-gradient(180deg, rgba(247, 241, 232, 0.92), rgba(247, 241, 232, 0.42));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(29, 29, 24, 0.08);
}

.brand {
  width: min(11.6rem, 38vw);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 29, 24, 0.88);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(29, 29, 24, 0.12);
  border-radius: 999px;
  background: rgba(248, 242, 233, 0.72);
  color: var(--forest);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(197, 164, 100, 0.48);
  background: rgba(248, 242, 233, 0.92);
  box-shadow: 0 12px 30px rgba(29, 35, 29, 0.08);
}

.language-toggle-flag {
  font-size: 1rem;
  line-height: 1;
}

.language-toggle-label {
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  background: var(--forest);
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-scale 8s ease-out forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 21, 16, 0.86) 0%, rgba(12, 21, 16, 0.64) 36%, rgba(12, 21, 16, 0.18) 100%),
    linear-gradient(180deg, rgba(12, 21, 16, 0.16) 0%, rgba(12, 21, 16, 0.62) 100%);
}

.hero-content {
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.52fr);
  align-content: end;
  align-items: end;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(6rem, 11vw, 9rem) clamp(1.25rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  max-width: min(76rem, 100%);
  color: #f6efe6;
}

.hero-copy-column {
  display: grid;
  gap: 1rem;
  max-width: 50rem;
}

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

h1,
h2,
h3,
strong {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.9;
  font-weight: 600;
  text-wrap: balance;
}

.hero-copy,
.section p,
.milestones p {
  font-size: 1.02rem;
  line-height: 1.8;
}

.hero-copy {
  max-width: 34rem;
  color: rgba(246, 239, 230, 0.86);
}

.hero-meta {
  display: grid;
  gap: 1rem;
  align-self: end;
  padding: 1.25rem 0 0 1.35rem;
  border-left: 1px solid rgba(226, 197, 135, 0.28);
}

.hero-meta p {
  margin: 0;
  color: rgba(246, 239, 230, 0.8);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: #102117;
}

.button-secondary {
  border-color: rgba(246, 239, 230, 0.34);
  color: #f6efe6;
  background: rgba(246, 239, 230, 0.08);
}

.section {
  width: min(calc(100% - 2.4rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.arrival {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.7fr);
  gap: 2rem;
  align-items: end;
  padding-bottom: 2.5rem;
}

.arrival-note {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.section-heading.narrow {
  max-width: 48rem;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 0.98;
  font-weight: 600;
  text-wrap: balance;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.intro-quote {
  width: min(100%, 42rem);
  margin-top: 2.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(197, 164, 100, 0.35);
}

.intro-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.04;
  color: var(--forest);
}

.story-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.story-band-copy {
  padding-right: 1rem;
}

.milestones {
  display: grid;
  gap: 1rem;
}

.milestones article {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.milestones span {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 600;
}

.intro-gallery {
  margin-top: 2rem;
}

.hotel-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: start;
}

.hotel-gallery-copy {
  display: grid;
  gap: 0.9rem;
  max-width: 28rem;
}

.hotel-gallery-copy p:last-child {
  color: var(--muted);
}

.hotel-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.hotel-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 18rem;
  background: rgba(255, 250, 244, 0.68);
  border: 1px solid rgba(30, 38, 31, 0.08);
  box-shadow: var(--shadow);
}

.hotel-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.hotel-shot:hover img,
.hotel-shot:focus-within img {
  transform: scale(1.04);
}

.hotel-shot-large {
  grid-row: span 2;
  min-height: 36rem;
}

.hotel-shot-tall {
  min-height: 24rem;
}

.founder {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) 1.2fr;
  gap: 2rem;
  align-items: stretch;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  background: linear-gradient(135deg, rgba(20, 38, 28, 0.96), rgba(28, 44, 35, 0.88));
  color: #f2ecdf;
  box-shadow: 0 32px 90px rgba(17, 25, 19, 0.24);
}

.founder-portrait {
  position: relative;
  min-height: 0;
  align-self: start;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1.3rem;
  background:
    radial-gradient(circle at 50% 24%, rgba(202, 170, 102, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(242, 236, 223, 0.06), rgba(242, 236, 223, 0.01));
  border: 1px solid rgba(226, 197, 135, 0.16);
  overflow: hidden;
}

.founder-image {
  position: relative;
  display: block;
  width: min(100%, 34rem);
  height: auto;
  justify-self: center;
  align-self: end;
  filter: saturate(0.95) contrast(1.02);
}

.portrait-frame {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 197, 135, 0.24);
}

.portrait-frame span {
  color: rgba(226, 197, 135, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portrait-frame strong {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
}

.founder-copy {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.founder-copy .eyebrow {
  color: var(--gold-soft);
}

.founder-copy p {
  color: rgba(242, 236, 223, 0.82);
}

.closing {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding-bottom: 6rem;
}

.closing p {
  max-width: 44rem;
}

@keyframes hero-scale {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1.04);
  }
}

@media (max-width: 920px) {
  .site-header {
    gap: 1rem;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .site-nav {
    display: none;
  }

  .hero-content,
  .arrival,
  .intro-grid,
  .story-band,
  .hotel-gallery,
  .hotel-gallery-grid,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .hero-meta,
  .arrival-note {
    padding-left: 0;
    border-left: 0;
  }

  .hotel-gallery-copy {
    max-width: none;
  }

  .hotel-shot-large,
  .hotel-shot-tall {
    min-height: 24rem;
  }

  .founder-portrait {
    padding: 1rem 1rem 1.2rem;
  }

  .founder-image {
    width: min(100%, 28rem);
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.9rem 1rem;
  }

  .brand {
    width: min(9.6rem, 42vw);
  }

  .hero-content {
    padding: 6.2rem 1rem 1.5rem;
  }

  .button {
    width: 100%;
  }

  .hotel-shot,
  .hotel-shot-large,
  .hotel-shot-tall {
    min-height: 19rem;
  }

  .section {
    width: min(calc(100% - 1.4rem), var(--max-width));
  }

  .milestones article,
  .offering,
  .hotel-shot,
  .founder-card {
    box-shadow: none;
  }

  .founder-portrait {
    gap: 0.85rem;
    padding: 0.85rem 0.85rem 1rem;
  }

  .founder-image {
    width: 100%;
  }

  .portrait-frame strong {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }
}

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

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