:root {
  --color-cream: #f8f1e8;
  --color-dark: #25211d;
  --color-ivory: #f8f3ea;
  --color-sand: #ddd0bd;
  --color-stone: #b8b0a3;
  --color-cacao: #7c6556;
  --color-bamboo: #6f7a5e;
  --color-ink: #211d19;
  --color-white: #fffaf2;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
  --header-height: 76px;
  --max-width: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-ivory);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 22px clamp(20px, 5vw, 60px);
  color: var(--color-cream);
  background: transparent;
  transition: background 300ms ease, border-color 300ms ease, color 300ms ease, box-shadow 300ms ease, min-height 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 66px;
  color: var(--color-dark);
  background: rgba(248, 241, 232, 0.94);
  border-bottom: 1px solid rgba(37, 33, 29, 0.12);
  box-shadow: 0 10px 24px rgba(37, 33, 29, 0.06);
  backdrop-filter: blur(12px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 48px;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(96%) sepia(10%) saturate(180%) hue-rotate(340deg);
  transition: filter 300ms ease;
}

.site-header.is-scrolled .brand-logo img,
.site-header.is-open .brand-logo img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(10%) saturate(554%) hue-rotate(350deg) brightness(95%) contrast(90%);
}

.brand-logo--footer {
  height: 58px;
  margin-bottom: 12px;
}

.brand-logo--footer img {
  height: 58px;
  filter: brightness(0) invert(96%) sepia(10%) saturate(180%) hue-rotate(340deg);
}

.site-nav {
  display: flex;
  align-items: center;
}

.mobile-menu-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu-watermark {
  display: none;
}

.site-nav a,
.footer-links a {
  position: relative;
}

.site-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.site-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 260ms ease;
}

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

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

.hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  overflow: hidden;
  color: var(--color-white);
  place-items: end start;
}

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

.hero-picture {
  display: block;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(33, 29, 25, 0.68), rgba(33, 29, 25, 0.24) 52%, rgba(33, 29, 25, 0.08)),
    linear-gradient(180deg, rgba(33, 29, 25, 0.15), rgba(33, 29, 25, 0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin: 0 clamp(20px, 7vw, 92px) clamp(56px, 10vw, 100px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--color-bamboo);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--color-sand);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 0.96;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 12vw, 9rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 7vw, 5.9rem);
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.05;
}

.hero-content p:not(.eyebrow),
.story-copy p,
.kelly-copy p,
.final-panel p {
  max-width: 620px;
  color: rgba(33, 29, 25, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.hero-content p:not(.eyebrow),
.final-panel p {
  color: rgba(255, 250, 242, 0.82);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 12px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 260ms var(--ease), background 260ms ease, color 260ms ease, border-color 260ms ease;
}

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

.button-light {
  background: var(--color-white);
  color: var(--color-ink);
}

.button-light:hover {
  background: var(--color-sand);
}

.button-dark {
  background: var(--color-ink);
  color: var(--color-white);
}

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

.button-outline {
  border-color: rgba(255, 250, 242, 0.62);
  color: var(--color-white);
}

.button-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 250, 242, 0.12);
}

.section-padding {
  padding: clamp(76px, 10vw, 150px) clamp(20px, 5vw, 64px);
}

.story,
.kelly {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  max-width: calc(var(--max-width) + 128px);
  margin: 0 auto;
}

.story-collage,
.kelly-image,
.universe-image {
  min-height: 520px;
  overflow: hidden;
}

.story-collage {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(12px, 1.8vw, 22px);
  aspect-ratio: 5 / 6;
  overflow: visible;
}

.story-photo {
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.story-photo-main {
  grid-row: 1 / 3;
}

.kelly {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  background: var(--color-white);
}

.kelly-image {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: clamp(12px, 1.8vw, 22px);
  aspect-ratio: 5 / 6;
  overflow: visible;
}

.kelly-main-photo,
.kelly-secondary-photos figure {
  margin: 0;
  overflow: hidden;
}

.kelly-secondary-photos {
  display: grid;
  gap: clamp(12px, 1.8vw, 22px);
}

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

.section-heading {
  max-width: var(--max-width);
  margin: 0 auto 48px;
}

.section-heading h2 {
  max-width: 820px;
}

.details-intro {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(33, 29, 25, 0.68);
}

.details-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.details-item {
  margin: 0;
  border-radius: 7px;
}

.details-item--image {
  height: clamp(320px, 34vw, 500px);
  overflow: hidden;
}

.details-item--image img {
  object-fit: cover;
}

.details-item--tall {
  height: clamp(430px, 48vw, 650px);
}

.details-item--text {
  min-height: clamp(300px, 31vw, 460px);
  padding: clamp(30px, 4vw, 54px);
  border-top: 1px solid rgba(124, 101, 86, 0.24);
  background: rgba(248, 243, 234, 0.78);
}

.details-item--text:last-of-type {
  margin-top: clamp(24px, 4vw, 58px);
}

.details-item--text h3 {
  margin-bottom: 16px;
}

.details-item--text p {
  color: rgba(33, 29, 25, 0.68);
}

.universe {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: stretch;
  max-width: calc(var(--max-width) + 128px);
  margin: 0 auto;
}

.universe-image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 7px;
}

.universe-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
  background: var(--color-white);
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(124, 101, 86, 0.08);
}

.universe-copy h2 {
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
}

.universe-copy p {
  max-width: 560px;
  color: rgba(33, 29, 25, 0.76);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  color: var(--color-white);
  place-items: center;
  padding: clamp(32px, 5vw, 64px);
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    url("images/kelly-2.png");
  background-position: center 22%;
  background-size: cover;
}

.final-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  text-align: center;
}

.final-panel .section-kicker {
  color: var(--color-sand);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
  padding: 42px clamp(20px, 5vw, 64px);
  background: var(--color-dark);
  color: var(--color-cream);
}

.site-footer p {
  margin-bottom: 6px;
  color: rgba(248, 241, 232, 0.72);
}

.site-footer a {
  color: var(--color-cream);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

@media (max-width: 900px) {
  .menu-toggle {
    position: relative;
    z-index: 10001;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 9999;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 112px 24px 40px;
    background: var(--color-cream);
    color: var(--color-dark);
    font-size: 1.6rem;
    letter-spacing: 0.14em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .mobile-menu-nav {
    position: relative;
    z-index: 2;
    flex-direction: column;
    gap: 34px;
  }

  .site-nav a {
    position: relative;
    z-index: 2;
    color: var(--color-dark) !important;
  }

  .mobile-menu-watermark {
    display: block;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 0;
    width: 220px;
    height: 120px;
    margin-top: 56px;
    background-image: url("images/BAMBU-LOGO-ORIGINAL.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.06;
    pointer-events: none;
  }

  .site-header.is-open .menu-toggle {
    color: var(--color-dark);
    border-color: var(--color-dark);
  }

  .site-header.is-open {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

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

  .story,
  .kelly,
  .universe {
    grid-template-columns: 1fr;
  }

  .kelly-copy {
    order: 2;
  }

  .kelly-image {
    order: 1;
  }

  .story-collage,
  .kelly-image,
  .universe-image {
    min-height: 0;
  }

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

@media (max-width: 768px) {
  .details {
    background: var(--color-ivory);
  }

  .details-header {
    margin-bottom: 40px;
  }

  .details-title {
    max-width: 96%;
    font-size: clamp(2.85rem, 12vw, 4.15rem);
    line-height: 1;
  }

  .details-intro {
    max-width: 90%;
    margin-top: 24px;
    font-size: 0.98rem;
  }

  .details-editorial-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .details-item {
    order: initial;
  }

  .details-item--image,
  .details-item--tall {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .details-item--text {
    min-height: 0;
    margin: 6px 0 18px;
    padding: 30px 24px 32px;
    border-top: 0;
    background: rgba(248, 243, 234, 0.78);
    box-shadow: inset 0 0 0 1px rgba(124, 101, 86, 0.08);
  }

  .details-item--text h3 {
    margin-bottom: 16px;
  }

  .details-item--image-1 {
    order: 1;
  }

  .details-item--text-1 {
    order: 2;
  }

  .details-item--image-2 {
    order: 3;
  }

  .details-item--image-3 {
    order: 4;
  }

  .details-item--text-2 {
    order: 5;
  }

  .details-item--image-4 {
    order: 6;
  }

  .details-item--text-3 {
    order: 7;
  }

  .details-item--image-5 {
    order: 8;
  }

  .details-item--image-6 {
    order: 9;
  }

  .universe {
    gap: 24px;
  }

  .universe-copy {
    padding: 34px 24px 38px;
  }

  .universe-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .final-cta {
    background:
      linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
      url("images/kelly-2.png");
    background-position: center center;
    background-size: cover;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding: 16px 18px;
  }

  .brand-logo {
    height: 42px;
  }

  .brand-logo img {
    height: 42px;
  }

  .brand-logo--footer {
    height: 54px;
  }

  .brand-logo--footer img {
    height: 54px;
  }

  .hero {
    min-height: 92svh;
    place-items: end start;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(33, 29, 25, 0.22), rgba(33, 29, 25, 0.7)),
      linear-gradient(90deg, rgba(33, 29, 25, 0.36), rgba(33, 29, 25, 0.06));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 46px;
  }

  h1 {
    font-size: clamp(3.4rem, 19vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 4.1rem);
    line-height: 1;
  }

  .section-padding {
    padding: 68px 18px;
  }

  .universe-image {
    aspect-ratio: 4 / 5;
  }

  .story-collage,
  .kelly-image {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    aspect-ratio: auto;
  }

  .story-photo-main {
    grid-row: auto;
  }

  .story-photo,
  .kelly-main-photo,
  .kelly-secondary-photos figure {
    aspect-ratio: 4 / 5;
  }

  .kelly-secondary-photos {
    grid-template-columns: repeat(3, 1fr);
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-right: 18px;
    padding-left: 18px;
    text-align: center;
  }

  .button-row {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 18px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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