@font-face {
  font-family: "Luniel Serif";
  src: url("fonts/cormorant-garamond-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Luniel Sans";
  src: url("fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --ivory: #fffaf2;
  --cream: #f8eee1;
  --rose: #d8aa9a;
  --rose-deep: #9e6256;
  --gold: #b98229;
  --gold-light: #e8c98b;
  --ink: #49362f;
  --muted: #80675f;
  --font-display: "Luniel Serif", "Iowan Old Style", Georgia, serif;
  --font-body: "Luniel Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #f6eadc;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  object-fit: cover;
  object-position: 66% center;
  scale: 1.015;
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 1) 0%, rgba(255, 250, 242, .98) 27%, rgba(255, 249, 240, .91) 42%, rgba(255, 247, 232, .4) 61%, rgba(87, 49, 22, .04) 100%),
    linear-gradient(180deg, rgba(255, 250, 242, .8) 0%, transparent 24%, transparent 72%, rgba(79, 45, 25, .2) 100%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 52vw;
  aspect-ratio: 1;
  right: 5vw;
  top: 47%;
  translate: 0 -50%;
  border: 1px solid rgba(232, 201, 139, .42);
  border-radius: 50%;
  box-shadow: 0 0 110px rgba(255, 244, 204, .25), inset 0 0 90px rgba(255, 247, 221, .18);
}

.hero-glow::before,
.hero-glow::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(232, 201, 139, .24);
  border-radius: inherit;
  inset: 5.5%;
}

.hero-glow::after { inset: 11%; }

.site-header {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(24px, 5vw, 82px);
}

.brand {
  display: block;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  overflow: hidden;
  mix-blend-mode: multiply;
  filter: saturate(.85) contrast(1.04);
}

.brand img,
footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-note {
  margin: 0;
  color: rgba(92, 61, 47, .86);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .31em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 48vw);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 152px 0 116px clamp(28px, 7vw, 124px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }

.hero h1 {
  margin: 0;
  max-width: 620px;
  color: #4b342b;
  font-family: var(--font-display);
  font-size: clamp(64px, 6.2vw, 106px);
  font-weight: 380;
  letter-spacing: -.055em;
  line-height: .83;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  margin: 17px 0 0 clamp(16px, 3vw, 50px);
  color: var(--rose-deep);
  font-size: .68em;
  font-weight: 430;
  letter-spacing: -.025em;
  line-height: 1;
}

.hero-copy {
  max-width: 550px;
  margin: 34px 0 0;
  padding-left: 20px;
  border-left: 1px solid rgba(185, 130, 41, .5);
  color: #6f554b;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 430;
  line-height: 1.55;
}

.discover {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
  padding: 13px 18px 13px 22px;
  border: 1px solid rgba(185, 130, 41, .4);
  border-radius: 999px;
  background: rgba(255, 252, 247, .56);
  box-shadow: 0 12px 35px rgba(98, 57, 34, .07);
  color: #805d43;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.discover svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  transition: translate .25s ease;
}

.discover:hover,
.discover:focus-visible {
  border-color: rgba(185, 130, 41, .72);
  background: rgba(255, 253, 248, .87);
  outline: none;
  transform: translateY(-2px);
}

.discover:hover svg,
.discover:focus-visible svg { translate: 0 3px; }

.coming-soon {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4.5vw, 76px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 250, 238, .93);
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  letter-spacing: .06em;
  text-shadow: 0 2px 16px rgba(56, 31, 14, .38);
}

.coming-soon-star {
  color: #f6dca0;
  font-size: 12px;
  animation: star-pulse 3s ease-in-out infinite;
}

.particles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.particles span {
  position: absolute;
  border-radius: 50%;
  background: #fff4cd;
  box-shadow: 0 0 12px 4px rgba(255, 226, 151, .65);
  opacity: .35;
  animation: drift 6s ease-in-out infinite;
}

.story {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 170px) clamp(24px, 7vw, 118px);
  background:
    radial-gradient(circle at 80% 35%, rgba(229, 183, 160, .18), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #f8ede2 100%);
}

.story-inner {
  position: relative;
  z-index: 1;
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.story-copy h2,
.promise h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 390;
  letter-spacing: -.035em;
}

.story-copy h2 {
  color: #5c3f35;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .98;
}

.story-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 32px 0 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.65;
}

.values {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 36px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.values i {
  color: var(--gold-light);
  font-size: 8px;
  font-style: normal;
}

.world-card {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(188, 136, 66, .28);
  border-radius: 44% 44% 24px 24px;
  background: rgba(255, 250, 243, .65);
  box-shadow: 0 35px 90px rgba(111, 69, 43, .14);
  transform: rotate(1.1deg);
}

.world-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 2;
  border: 1px solid rgba(255, 248, 227, .72);
  border-radius: inherit;
  pointer-events: none;
}

.world-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(44% - 10px) calc(44% - 10px) 14px 14px;
}

.world-card figcaption {
  position: absolute;
  right: 40px;
  bottom: -43px;
  color: var(--rose-deep);
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
}

.story-orbit {
  position: absolute;
  width: 640px;
  aspect-ratio: 1;
  right: -230px;
  top: -170px;
  border: 1px solid rgba(195, 139, 64, .14);
  border-radius: 50%;
}

.story-orbit::before,
.story-orbit::after {
  content: "";
  position: absolute;
  inset: 60px;
  border: inherit;
  border-radius: inherit;
}

.story-orbit::after { inset: 120px; }

.promise {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 170px) 24px;
  text-align: center;
  background: #71514a;
  color: #fff6e8;
}

.promise::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(232, 201, 139, .15) 0, transparent 32%);
}

.promise-mark {
  position: relative;
  color: var(--gold-light);
  font-size: 20px;
  text-shadow: 0 0 24px rgba(255, 223, 155, .55);
}

.promise p {
  position: relative;
  margin: 24px 0 8px;
  color: #e8cfc4;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.2vw, 30px);
  font-style: italic;
}

.promise h2 {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  color: #fff9ef;
  font-size: clamp(44px, 5.6vw, 82px);
  line-height: 1;
  text-wrap: balance;
}

.promise-line {
  position: relative;
  width: 170px;
  height: 1px;
  margin: 48px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.promise-line span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-light);
  background: #71514a;
  transform: translate(-50%, -50%) rotate(45deg);
}

footer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(24px, 5vw, 74px);
  border-top: 1px solid rgba(185, 130, 41, .16);
  background: #fffaf2;
  color: #8d7469;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .19em;
  text-transform: uppercase;
}

footer img {
  flex: 0 0 auto;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

footer p { margin: 0; }

.domain-note { margin-left: auto; color: var(--gold); }

@keyframes hero-breathe {
  from { transform: scale(1.015); }
  to { transform: scale(1.055); }
}

@keyframes drift {
  0%, 100% { opacity: .18; transform: translate3d(0, 7px, 0) scale(.8); }
  50% { opacity: .85; transform: translate3d(4px, -12px, 0) scale(1.2); }
}

@keyframes star-pulse {
  0%, 100% { opacity: .55; transform: scale(.88); }
  50% { opacity: 1; transform: scale(1.18); }
}

@media (max-width: 900px) {
  .header-note { display: none; }
  .hero-image { object-position: 71% center; }

  .hero-veil {
    background: linear-gradient(180deg, rgba(255, 250, 242, .75) 0%, rgba(255, 250, 242, .12) 26%, rgba(75, 41, 25, .08) 54%, rgba(255, 248, 237, .96) 77%, #fffaf2 100%);
  }

  .hero-glow { width: 90vw; right: -12vw; top: 35%; }

  .hero-content {
    width: 100%;
    min-height: 100svh;
    justify-content: flex-end;
    padding: 360px 28px 88px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(58px, 13.5vw, 88px);
    text-shadow: 0 2px 18px rgba(255, 249, 237, .8);
  }

  .hero h1 em { margin-left: 0; }
  .hero-copy { max-width: 600px; }
  .coming-soon { display: none; }

  .story-inner { grid-template-columns: 1fr; gap: 82px; }
  .story-copy { max-width: 680px; }

  .world-card {
    width: min(700px, 100%);
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .site-header { padding: 14px 16px; }
  .brand { width: 78px; height: 78px; }
  .hero-image { object-position: 70% 23%; }
  .hero-content { padding: 320px 21px 58px; }

  .eyebrow {
    gap: 8px;
    margin-bottom: 15px;
    font-size: 8px;
    letter-spacing: .23em;
  }

  .eyebrow span { width: 19px; }
  .hero h1 { font-size: clamp(51px, 15vw, 72px); }
  .hero h1 em { margin-top: 11px; }

  .hero-copy {
    margin-top: 23px;
    padding-left: 14px;
    font-size: 17px;
    line-height: 1.42;
  }

  .discover {
    margin-top: 24px;
    padding: 11px 14px 11px 16px;
    font-size: 8px;
    letter-spacing: .14em;
  }

  .story { padding: 78px 21px 110px; }
  .story-copy h2 { font-size: 45px; }

  .story-copy > p:not(.eyebrow) {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.55;
  }

  .values { gap: 9px; font-size: 8px; letter-spacing: .18em; }

  .world-card {
    padding: 8px;
    border-radius: 40% 40% 16px 16px;
  }

  .world-card img { border-radius: calc(40% - 5px) calc(40% - 5px) 10px 10px; }

  .world-card figcaption {
    right: 18px;
    bottom: -38px;
    font-size: 19px;
  }

  .promise { padding: 94px 20px; }

  footer {
    flex-direction: column;
    gap: 10px;
    padding: 28px 20px;
    text-align: center;
  }

  footer img { width: 62px; height: 62px; }
  .domain-note { margin-left: 0; }
}

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

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
