/* =====================================================
   FLUFFY TITANS
   DEMO 1
   MAGICAL FOREST / STORYBOOK
===================================================== */


/* =========================
   ROOT
========================= */

:root {

  --forest: #0f4c3a;

  --forest-deep: #082f25;

  --forest-dark: #06271f;

  --moss: #5d8a66;

  --moss-light: #8cae8c;

  --gold: #f2c94c;

  --honey: #e2b13c;

  --navy: #1b263b;

  --sky: #e0fbfc;

  --cyan: #a9d6e5;

  --cream: #f8f3e8;

  --cream-soft: #fcf9f2;

  --paper: #f3ecdc;

  --white: #ffffff;

  --text: #25362f;

  --muted: #68776f;

  --border:
    rgba(15, 76, 58, 0.14);

  --shadow:
    0 24px 70px
    rgba(12, 48, 37, 0.16);

  --container: 1220px;

  --header-height: 88px;
}



/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  overflow-x: hidden;

  font-family:
    "DM Sans",
    sans-serif;

  color: var(--text);

  background:
    var(--cream-soft);
}


body.menu-open {
  overflow: hidden;
}


img {
  width: 100%;

  display: block;
}


a {
  color: inherit;

  text-decoration: none;
}


button,
input,
textarea,
select {
  font: inherit;
}


button {
  cursor: pointer;
}


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


.container {
  width:
    min(
      calc(100% - 48px),
      var(--container)
    );

  margin:
    0 auto;
}


.narrow-container {
  max-width: 940px;
}


.section {
  position: relative;

  padding:
    120px 0;
}



/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3,
.brand strong {

  font-family:
    "Fraunces",
    serif;
}


h2 {

  margin-bottom:
    24px;

  font-size:
    clamp(
      2.7rem,
      5vw,
      5.15rem
    );

  line-height:
    0.98;

  letter-spacing:
    -0.04em;

  color:
    var(--forest);
}


h2 em {

  font-weight:
    500;

  color:
    var(--moss);
}


.eyebrow {

  margin-bottom:
    20px;

  font-size:
    0.73rem;

  font-weight:
    700;

  letter-spacing:
    0.22em;

  text-transform:
    uppercase;

  color:
    var(--moss);
}


.eyebrow-light {
  color:
    var(--cyan);
}


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


.mini-label {

  margin-bottom:
    10px;

  font-size:
    0.72rem;

  font-weight:
    700;

  letter-spacing:
    0.16em;

  text-transform:
    uppercase;

  opacity:
    0.74;
}



/* =========================
   BUTTONS
========================= */

.button {

  min-height:
    52px;

  padding:
    0 27px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  border:
    1px solid transparent;

  border-radius:
    999px;

  font-size:
    0.93rem;

  font-weight:
    700;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}


.button:hover {

  transform:
    translateY(-2px);
}


.button-gold {

  color:
    var(--forest-dark);

  background:
    var(--gold);

  box-shadow:
    0 14px 35px
    rgba(242, 201, 76, 0.23);
}


.button-gold:hover {

  background:
    #f7d46b;
}


.button-green {

  color:
    var(--white);

  background:
    var(--forest);

  box-shadow:
    0 16px 35px
    rgba(15, 76, 58, 0.18);
}


.button-green:hover {

  background:
    var(--forest-deep);
}


.button-glass {

  color:
    var(--white);

  border-color:
    rgba(255, 255, 255, 0.48);

  background:
    rgba(255, 255, 255, 0.08);

  backdrop-filter:
    blur(10px);
}


.button-glass:hover {

  background:
    rgba(255, 255, 255, 0.16);
}


.button-outline-light {

  color:
    var(--white);

  border-color:
    rgba(255, 255, 255, 0.4);
}


.button-outline-light:hover {

  background:
    rgba(255, 255, 255, 0.1);
}


.button-outline-dark {

  color:
    var(--forest);

  border-color:
    rgba(15, 76, 58, 0.3);
}


.button-outline-dark:hover {

  background:
    rgba(15, 76, 58, 0.07);
}


.text-link {

  display:
    inline-flex;

  align-items:
    center;

  gap:
    10px;

  font-weight:
    700;

  color:
    var(--forest);
}


.text-link span {

  transition:
    transform 0.25s ease;
}


.text-link:hover span {

  transform:
    translateX(5px);
}



/* =====================================================
   DEMO SWITCHER
===================================================== */

.demo-switcher {

  position:
    fixed;

  top:
    0;

  left:
    0;

  z-index:
    99999;

  width:
    100%;

  min-height:
    38px;

  padding:
    6px 20px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  gap:
    25px;

  color:
    #ffffff;

  background:
    rgba(5, 20, 16, 0.98);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.12);

  font-family:
    Arial,
    sans-serif;

  font-size:
    0.72rem;

  font-weight:
    600;

  letter-spacing:
    0.03em;

  backdrop-filter:
    blur(12px);
}


.demo-switcher > span {

  opacity:
    0.65;
}


.demo-switcher-links {

  display:
    flex;

  align-items:
    center;

  gap:
    7px;
}


.demo-switcher-links a {

  padding:
    5px 11px;

  border:
    1px solid
    rgba(255, 255, 255, 0.22);

  border-radius:
    50px;

  color:
    #ffffff;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}


.demo-switcher-links a:hover,
.demo-switcher-links .current-demo {

  color:
    #173d31;

  background:
    var(--gold);

  border-color:
    var(--gold);
}



/* =====================================================
   HEADER
   ALWAYS LIGHT
===================================================== */

.site-header {

  position:
    fixed;

  top:
    38px;

  left:
    0;

  z-index:
    1000;

  width:
    100%;

  height:
    var(--header-height);

  display:
    flex;

  align-items:
    center;

  color:
    var(--forest-dark);

  background:
    rgba(248, 243, 232, 0.98);

  border-bottom:
    1px solid
    rgba(15, 76, 58, 0.12);

  box-shadow:
    0 8px 28px
    rgba(8, 47, 37, 0.08);

  backdrop-filter:
    blur(18px);

  -webkit-backdrop-filter:
    blur(18px);

  transition:
    height 0.3s ease,
    box-shadow 0.3s ease;
}


.site-header.scrolled {

  height:
    76px;

  background:
    rgba(248, 243, 232, 0.99);

  box-shadow:
    0 12px 35px
    rgba(8, 47, 37, 0.13);
}


.header-inner {

  width:
    min(
      calc(100% - 48px),
      1320px
    );

  height:
    100%;

  margin:
    0 auto;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    30px;
}



/* HEADER BRAND */

.brand {

  display:
    inline-flex;

  align-items:
    center;

  gap:
    13px;

  color:
    var(--forest-dark);
}


.brand-mark {

  width:
    45px;

  height:
    45px;

  display:
    grid;

  place-items:
    center;

  border:
    1px solid
    rgba(15, 76, 58, 0.22);

  border-radius:
    50%;

  color:
    var(--forest);

  background:
    rgba(242, 201, 76, 0.16);

  font-family:
    "Fraunces",
    serif;

  font-size:
    0.88rem;
}


.brand-copy {

  display:
    flex;

  flex-direction:
    column;
}


.brand strong {

  color:
    var(--forest-dark);

  font-size:
    1.12rem;

  line-height:
    1;
}


.brand small {

  margin-top:
    4px;

  color:
    var(--moss);

  font-size:
    0.6rem;

  font-weight:
    700;

  letter-spacing:
    0.16em;

  text-transform:
    uppercase;
}



/* HEADER NAV */

.main-nav {

  display:
    flex;

  align-items:
    center;

  gap:
    29px;
}


.main-nav > a {

  position:
    relative;

  color:
    var(--forest-dark);

  font-size:
    0.82rem;

  font-weight:
    600;
}


.main-nav > a:not(.nav-button)::after {

  content:
    "";

  position:
    absolute;

  left:
    0;

  bottom:
    -8px;

  width:
    0;

  height:
    2px;

  background:
    var(--gold);

  transition:
    width 0.25s ease;
}


.main-nav > a:not(.nav-button):hover::after,
.main-nav > a.active:not(.nav-button)::after {

  width:
    100%;
}


.main-nav > a:hover {

  color:
    var(--forest);
}


.nav-button {

  padding:
    12px 19px;

  border:
    1px solid
    rgba(15, 76, 58, 0.28);

  border-radius:
    999px;

  background:
    rgba(255, 255, 255, 0.3);
}


.nav-button:hover {

  color:
    var(--forest-dark);

  background:
    var(--gold);

  border-color:
    var(--gold);
}



/* MOBILE MENU */

.mobile-menu-button {

  width:
    44px;

  height:
    44px;

  padding:
    0;

  display:
    none;

  flex-direction:
    column;

  align-items:
    center;

  justify-content:
    center;

  gap:
    5px;

  border:
    0;

  background:
    transparent;
}


.mobile-menu-button span {

  width:
    23px;

  height:
    2px;

  background:
    var(--forest-dark);

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}



/* =====================================================
   HERO
===================================================== */

.hero {

  position:
    relative;

  min-height:
    860px;

  height:
    100svh;

  display:
    flex;

  align-items:
    center;

  overflow:
    hidden;

  background:
    var(--forest-dark);
}


.hero-forest {

  position:
    absolute;

  inset:
    0;

  background-image:
    url("forest-hero.jpg");

  background-size:
    cover;

  background-position:
    center;

  transform:
    scale(1.035);

  transition:
    transform 8s ease;
}


.hero:hover
.hero-forest {

  transform:
    scale(1.065);
}


.hero-overlay {

  position:
    absolute;

  inset:
    0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 28, 22, 0.94) 0%,
      rgba(4, 28, 22, 0.78) 38%,
      rgba(4, 28, 22, 0.35) 67%,
      rgba(4, 28, 22, 0.15) 100%
    );
}


.hero-overlay::after {

  content:
    "";

  position:
    absolute;

  inset:
    0;

  background:
    linear-gradient(
      180deg,
      rgba(2, 20, 15, 0.18),
      transparent 30%,
      transparent 65%,
      rgba(4, 31, 24, 0.55)
    );
}


.forest-light {

  position:
    absolute;

  border-radius:
    50%;

  filter:
    blur(60px);

  pointer-events:
    none;
}


.forest-light-one {

  top:
    8%;

  right:
    20%;

  width:
    320px;

  height:
    320px;

  background:
    rgba(242, 201, 76, 0.17);
}


.forest-light-two {

  right:
    -5%;

  bottom:
    10%;

  width:
    400px;

  height:
    400px;

  background:
    rgba(169, 214, 229, 0.13);
}



/* =========================
   HERO TEXT
========================= */

.hero-content {

  position:
    relative;

  z-index:
    5;
}


.hero-copy {

  width:
    min(
      600px,
      51%
    );

  padding-top:
    120px;
}


.hero-eyebrow {

  color:
    var(--gold);
}


.hero h1 {

  margin:
    0;

  color:
    var(--white);

  font-size:
    clamp(
      5.3rem,
      9.5vw,
      10rem
    );

  line-height:
    0.73;

  letter-spacing:
    -0.055em;
}


.hero h1 span {

  display:
    block;

  margin-left:
    0.43em;

  color:
    var(--gold);
}


.hero-subtitle {

  max-width:
    535px;

  margin:
    42px 0 32px;

  color:
    rgba(255, 255, 255, 0.86);

  font-size:
    clamp(
      1rem,
      1.5vw,
      1.22rem
    );

  line-height:
    1.75;
}


.hero-actions {

  display:
    flex;

  flex-wrap:
    wrap;

  gap:
    13px;
}



/* =====================================================
   NEW HEAD-CAT HERO PHOTO
===================================================== */

.hero-head-photo {

  position:
    absolute;

  z-index:
    4;

  right:
    3.5%;

  bottom:
    95px;

  width:
    min(
      570px,
      43vw
    );

  aspect-ratio:
    4 / 3;

  overflow:
    hidden;

  border:
    8px solid
    rgba(248, 243, 232, 0.18);

  border-radius:
    46% 46% 26px 26px;

  background:
    var(--forest);

  box-shadow:
    0 30px 80px
    rgba(0, 0, 0, 0.28);
}


.hero-head-photo::before {

  content:
    "";

  position:
    absolute;

  z-index:
    2;

  inset:
    0;

  border:
    1px solid
    rgba(242, 201, 76, 0.24);

  border-radius:
    inherit;

  pointer-events:
    none;
}


.hero-head-photo img {

  width:
    100%;

  height:
    100%;

  object-fit:
    cover;

  object-position:
    center;

  transition:
    transform 0.6s ease;
}


.hero-head-photo:hover img {

  transform:
    scale(1.025);
}


.hero-head-glow {

  position:
    absolute;

  z-index:
    -1;

  right:
    -50px;

  top:
    -50px;

  width:
    300px;

  height:
    300px;

  border-radius:
    50%;

  background:
    rgba(242, 201, 76, 0.25);

  filter:
    blur(55px);
}


.hero-head-label {

  position:
    absolute;

  z-index:
    5;

  right:
    22px;

  bottom:
    22px;

  padding:
    12px 18px;

  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-end;

  border:
    1px solid
    rgba(255, 255, 255, 0.18);

  border-radius:
    14px 4px 14px 14px;

  color:
    var(--white);

  background:
    rgba(6, 39, 31, 0.78);

  backdrop-filter:
    blur(12px);

  box-shadow:
    0 12px 30px
    rgba(0, 0, 0, 0.18);
}


.hero-head-label span {

  margin-bottom:
    3px;

  color:
    var(--gold);

  font-size:
    0.55rem;

  font-weight:
    700;

  letter-spacing:
    0.16em;

  text-transform:
    uppercase;
}


.hero-head-label strong {

  font-family:
    "Fraunces",
    serif;

  font-size:
    1.3rem;
}



/* =========================
   HERO SCROLL
========================= */

.scroll-indicator {

  position:
    absolute;

  z-index:
    6;

  left:
    50%;

  bottom:
    53px;

  display:
    flex;

  flex-direction:
    column;

  align-items:
    center;

  gap:
    9px;

  transform:
    translateX(-50%);

  color:
    rgba(255, 255, 255, 0.72);

  font-size:
    0.59rem;

  font-weight:
    700;

  letter-spacing:
    0.2em;

  text-transform:
    uppercase;
}


.scroll-line {

  width:
    1px;

  height:
    34px;

  background:
    linear-gradient(
      var(--gold),
      transparent
    );
}


.hero-bottom-wave {

  position:
    absolute;

  z-index:
    7;

  left:
    0;

  bottom:
    -1px;

  width:
    100%;

  height:
    105px;

  pointer-events:
    none;
}


.hero-bottom-wave svg {

  width:
    100%;

  height:
    100%;
}


.hero-bottom-wave path {

  fill:
    var(--cream-soft);
}



/* =====================================================
   WELCOME
===================================================== */

.welcome-section {

  overflow:
    hidden;

  text-align:
    center;

  background:
    var(--cream-soft);
}


.centered-heading {

  max-width:
    800px;

  margin:
    0 auto;

  text-align:
    center;
}


.large-intro {

  max-width:
    830px;

  margin:
    35px auto 0;

  color:
    #46574f;

  font-size:
    clamp(
      1.15rem,
      2.1vw,
      1.6rem
    );

  line-height:
    1.75;
}


.home-quote {

  position:
    relative;

  max-width:
    760px;

  margin:
    75px auto 0;

  padding:
    38px 55px;

  border-top:
    1px solid
    var(--border);

  border-bottom:
    1px solid
    var(--border);
}


.home-quote p {

  margin:
    0;

  color:
    var(--forest);

  font-family:
    "Fraunces",
    serif;

  font-size:
    clamp(
      1.55rem,
      3vw,
      2.5rem
    );

  line-height:
    1.35;
}


.quote-mark {

  position:
    absolute;

  top:
    -41px;

  left:
    50%;

  padding:
    0 20px;

  transform:
    translateX(-50%);

  color:
    var(--gold);

  background:
    var(--cream-soft);

  font-family:
    "Fraunces",
    serif;

  font-size:
    5rem;

  line-height:
    1;
}


.floating-leaf {

  position:
    absolute;

  width:
    130px;

  height:
    210px;

  border:
    1px solid
    rgba(93, 138, 102, 0.16);

  border-radius:
    100% 0 100% 0;

  transform:
    rotate(28deg);

  pointer-events:
    none;
}


.leaf-one {

  top:
    80px;

  left:
    -45px;
}


.leaf-two {

  right:
    -55px;

  bottom:
    60px;

  transform:
    rotate(200deg);
}



/* =====================================================
   TITANS PREVIEW
===================================================== */

.titans-preview {

  background:
    #f1eadb;
}


.split-heading {

  margin-bottom:
    65px;

  display:
    grid;

  grid-template-columns:
    1.1fr 0.7fr;

  align-items:
    end;

  gap:
    80px;
}


.split-heading h2 {

  margin-bottom:
    0;
}


.split-heading-copy {

  padding-bottom:
    8px;
}


.split-heading-copy p {

  margin-bottom:
    22px;

  color:
    var(--muted);

  line-height:
    1.8;
}


.featured-titans {

  display:
    grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap:
    22px;
}


.titan-feature {

  position:
    relative;

  min-height:
    650px;

  overflow:
    hidden;

  display:
    flex;

  flex-direction:
    column;

  border-radius:
    30px;

  box-shadow:
    var(--shadow);
}


.titan-feature-dark {

  color:
    var(--white);

  background:
    linear-gradient(
      145deg,
      var(--forest-deep),
      var(--forest)
    );
}


.titan-feature-light {

  color:
    var(--forest);

  background:
    linear-gradient(
      145deg,
      #dcebdc,
      #f5ecd8
    );
}


.titan-feature-photo {

  position:
    relative;

  height:
    400px;

  overflow:
    hidden;
}


.titan-feature-photo img {

  width:
    100%;

  height:
    100%;

  object-fit:
    cover;

  transition:
    transform 0.5s ease;
}



/* JIRAIYA
   Shift framing upward so his head and ears remain visible
*/

.titan-feature-dark
.titan-feature-photo img {

  object-position:
    center 18%;
}



/* JUVIA */

.titan-feature-light
.titan-feature-photo img {

  object-position:
    47% 37%;
}


.titan-feature:hover
.titan-feature-photo img {

  transform:
    scale(1.025);
}


.titan-role {

  position:
    absolute;

  z-index:
    2;

  top:
    22px;

  left:
    22px;

  padding:
    9px 14px;

  border:
    1px solid
    rgba(255, 255, 255, 0.28);

  border-radius:
    999px;

  background:
    rgba(255, 255, 255, 0.12);

  backdrop-filter:
    blur(12px);

  font-size:
    0.65rem;

  font-weight:
    700;

  letter-spacing:
    0.14em;

  text-transform:
    uppercase;
}


.titan-feature-light
.titan-role {

  border-color:
    rgba(15, 76, 58, 0.18);

  background:
    rgba(255, 255, 255, 0.42);
}


.titan-feature-content {

  padding:
    38px 40px 42px;
}


.titan-feature-content h3 {

  margin:
    0 0 17px;

  font-size:
    clamp(
      2.5rem,
      4vw,
      4.3rem
    );

  line-height:
    1;
}


.titan-feature-content
p:not(.mini-label) {

  max-width:
    500px;

  margin-bottom:
    26px;

  line-height:
    1.75;

  opacity:
    0.8;
}


.poly-badge {

  width:
    fit-content;

  margin:
    -5px 0 18px;

  padding:
    8px 13px;

  border:
    1px solid
    rgba(15, 76, 58, 0.18);

  border-radius:
    999px;

  color:
    var(--forest);

  background:
    rgba(255, 255, 255, 0.42);

  font-size:
    0.62rem;

  font-weight:
    700;

  letter-spacing:
    0.08em;

  text-transform:
    uppercase;
}



/* =====================================================
   COUNTRY
===================================================== */

.country-section {

  overflow:
    hidden;

  color:
    var(--white);

  background:
    var(--forest-deep);
}


.country-section::before {

  content:
    "";

  position:
    absolute;

  inset:
    0;

  background-image:
    radial-gradient(
      rgba(255, 255, 255, 0.035)
      1px,
      transparent 1px
    );

  background-size:
    26px 26px;

  opacity:
    0.5;
}


.country-glow {

  position:
    absolute;

  top:
    -200px;

  right:
    -200px;

  width:
    650px;

  height:
    650px;

  border-radius:
    50%;

  background:
    rgba(242, 201, 76, 0.07);

  filter:
    blur(30px);
}


.country-heading {

  position:
    relative;

  z-index:
    1;

  margin-bottom:
    65px;
}


.country-heading h2 {

  color:
    var(--white);
}


.country-heading h2 em {

  color:
    var(--gold);
}


.country-grid {

  position:
    relative;

  z-index:
    1;

  display:
    grid;

  grid-template-columns:
    1.4fr 1fr;

  gap:
    22px;
}


.country-photo {

  position:
    relative;

  min-height:
    350px;

  margin:
    0;

  overflow:
    hidden;

  border-radius:
    27px;
}


.country-photo-large {

  grid-row:
    span 2;

  min-height:
    720px;
}


.country-photo > img {

  position:
    absolute;

  inset:
    0;

  width:
    100%;

  height:
    100%;

  object-fit:
    cover;

  transition:
    transform 0.7s ease;
}


.country-photo:hover > img {

  transform:
    scale(1.045);
}


.country-photo::after {

  content:
    "";

  position:
    absolute;

  inset:
    0;

  background:
    linear-gradient(
      transparent 45%,
      rgba(3, 25, 19, 0.85)
    );
}


.country-photo figcaption {

  position:
    absolute;

  z-index:
    2;

  right:
    27px;

  bottom:
    27px;

  left:
    27px;

  display:
    flex;

  align-items:
    flex-start;

  gap:
    17px;
}


.country-photo figcaption > span {

  width:
    38px;

  height:
    38px;

  flex:
    0 0 auto;

  display:
    grid;

  place-items:
    center;

  border:
    1px solid
    rgba(255, 255, 255, 0.25);

  border-radius:
    50%;

  color:
    var(--gold);

  font-size:
    0.65rem;
}


.country-photo figcaption strong {

  display:
    block;

  margin-bottom:
    5px;

  font-family:
    "Fraunces",
    serif;

  font-size:
    1.45rem;
}


.country-photo figcaption p {

  max-width:
    390px;

  margin:
    0;

  color:
    rgba(255, 255, 255, 0.7);

  font-size:
    0.88rem;

  line-height:
    1.55;
}



/* =====================================================
   NURSERY
===================================================== */

.nursery-section {

  overflow:
    hidden;

  background:
    linear-gradient(
      180deg,
      #edf5e9,
      #f8f3e8
    );
}


.nursery-layout {

  display:
    grid;

  grid-template-columns:
    1fr 0.9fr;

  align-items:
    center;

  gap:
    90px;
}


.nursery-photo-wrap {

  position:
    relative;
}


.nursery-photo {

  position:
    relative;

  height:
    625px;

  overflow:
    hidden;

  border-radius:
    48% 48% 28px 28px;

  box-shadow:
    var(--shadow);
}


.nursery-photo img {

  width:
    100%;

  height:
    100%;

  object-fit:
    cover;
}


.photo-note {

  position:
    absolute;

  right:
    -25px;

  bottom:
    50px;

  max-width:
    230px;

  padding:
    17px 20px;

  display:
    flex;

  align-items:
    center;

  gap:
    10px;

  border:
    1px solid
    rgba(15, 76, 58, 0.08);

  border-radius:
    16px;

  color:
    var(--forest);

  background:
    rgba(255, 255, 255, 0.91);

  box-shadow:
    0 17px 40px
    rgba(15, 76, 58, 0.12);

  font-size:
    0.78rem;

  font-weight:
    600;

  line-height:
    1.4;
}


.photo-note span {

  color:
    var(--honey);
}


.nursery-copy {

  max-width:
    510px;
}


.nursery-copy >
p:not(.eyebrow) {

  margin-bottom:
    24px;

  color:
    var(--muted);

  font-size:
    1.03rem;

  line-height:
    1.8;
}


.nursery-status {

  margin:
    32px 0;

  padding:
    18px 20px;

  display:
    flex;

  align-items:
    center;

  gap:
    14px;

  border:
    1px solid
    rgba(15, 76, 58, 0.11);

  border-radius:
    18px;

  background:
    rgba(255, 255, 255, 0.55);
}


.status-dot {

  width:
    10px;

  height:
    10px;

  flex:
    0 0 auto;

  border-radius:
    50%;

  background:
    var(--gold);

  box-shadow:
    0 0 0 7px
    rgba(242, 201, 76, 0.17);
}


.nursery-status strong {

  display:
    block;

  margin-bottom:
    3px;

  color:
    var(--forest);
}


.nursery-status small {

  color:
    var(--muted);
}


.nursery-decor {

  position:
    absolute;

  width:
    270px;

  height:
    420px;

  border:
    1px solid
    rgba(93, 138, 102, 0.14);

  border-radius:
    100% 0 100% 0;

  pointer-events:
    none;
}


.nursery-decor-left {

  left:
    -150px;

  bottom:
    -100px;

  transform:
    rotate(25deg);
}


.nursery-decor-right {

  top:
    20px;

  right:
    -180px;

  transform:
    rotate(210deg);
}



/* =====================================================
   STORY
   ENDO + ELLE SEPARATE
===================================================== */

.story-section {

  position:
    relative;

  overflow:
    hidden;

  background:
    var(--paper);
}


.story-section::before {

  content:
    "";

  position:
    absolute;

  top:
    45px;

  right:
    -180px;

  width:
    500px;

  height:
    500px;

  border-radius:
    50%;

  background:
    radial-gradient(
      circle,
      rgba(242, 201, 76, 0.12),
      transparent 68%
    );

  pointer-events:
    none;
}


.story-layout {

  position:
    relative;

  z-index:
    2;

  display:
    grid;

  grid-template-columns:
    0.82fr 1.18fr;

  align-items:
    center;

  gap:
    90px;
}


.story-copy {

  max-width:
    530px;
}


.story-copy >
p:not(.eyebrow) {

  line-height:
    1.85;

  color:
    var(--muted);
}


.story-link {

  margin-top:
    12px;
}



/* ENDO + ELLE PAIR */

.story-pair {

  position:
    relative;

  min-height:
    680px;
}


.story-cat {

  position:
    absolute;

  width:
    55%;

  margin:
    0;

  transition:
    transform 0.35s ease;
}


.story-cat-photo {

  position:
    relative;

  height:
    540px;

  overflow:
    hidden;

  background:
    #d9e4d7;

  box-shadow:
    0 28px 65px
    rgba(12, 48, 37, 0.18);
}


.story-cat-photo img {

  width:
    100%;

  height:
    100%;

  object-fit:
    cover;

  transition:
    transform 0.5s ease;
}



/* ENDO */

.story-cat-endo {

  z-index:
    2;

  top:
    0;

  left:
    0;

  transform:
    rotate(-3deg);
}


.story-cat-endo
.story-cat-photo {

  border-radius:
    155px 28px 28px 28px;
}



/* ELLE */

.story-cat-elle {

  z-index:
    3;

  right:
    0;

  bottom:
    0;

  transform:
    rotate(3deg);
}


.story-cat-elle
.story-cat-photo {

  border-radius:
    28px 155px 28px 28px;
}


.story-cat:hover {

  z-index:
    6;

  transform:
    rotate(0deg)
    translateY(-7px);
}


.story-cat:hover
.story-cat-photo img {

  transform:
    scale(1.035);
}



/* PHOTO LABELS */

.story-cat figcaption {

  position:
    absolute;

  z-index:
    5;

  bottom:
    22px;

  padding:
    13px 17px;

  display:
    flex;

  flex-direction:
    column;

  color:
    var(--white);

  background:
    rgba(6, 39, 31, 0.86);

  box-shadow:
    0 14px 32px
    rgba(0, 0, 0, 0.18);

  backdrop-filter:
    blur(10px);
}


.story-cat-endo
figcaption {

  left:
    18px;

  border-radius:
    5px 14px 14px 14px;
}


.story-cat-elle
figcaption {

  right:
    18px;

  align-items:
    flex-end;

  text-align:
    right;

  border-radius:
    14px 5px 14px 14px;
}


.story-cat
figcaption span {

  margin-bottom:
    4px;

  color:
    var(--gold);

  font-size:
    0.54rem;

  font-weight:
    700;

  letter-spacing:
    0.16em;

  text-transform:
    uppercase;
}


.story-cat
figcaption strong {

  font-family:
    "Fraunces",
    serif;

  font-size:
    1.7rem;

  line-height:
    1;
}



/* CENTER BADGE */

.story-pair-badge {

  position:
    absolute;

  z-index:
    8;

  left:
    50%;

  top:
    50%;

  width:
    148px;

  height:
    148px;

  display:
    flex;

  flex-direction:
    column;

  align-items:
    center;

  justify-content:
    center;

  transform:
    translate(-50%, -50%);

  border:
    7px solid
    var(--paper);

  border-radius:
    50%;

  text-align:
    center;

  color:
    var(--forest-dark);

  background:
    var(--gold);

  box-shadow:
    0 18px 45px
    rgba(15, 76, 58, 0.21);
}


.story-pair-badge span {

  margin-bottom:
    1px;

  font-size:
    0.5rem;

  font-weight:
    700;

  letter-spacing:
    0.13em;

  text-transform:
    uppercase;
}


.story-pair-badge strong {

  font-family:
    "Fraunces",
    serif;

  font-size:
    2.4rem;

  line-height:
    0.92;
}


.story-pair-badge small {

  margin-top:
    7px;

  font-size:
    0.57rem;

  font-weight:
    700;

  letter-spacing:
    0.08em;

  text-transform:
    uppercase;
}



/* =====================================================
   JOURNEY
===================================================== */

.journey-section {

  color:
    var(--white);

  background:
    var(--navy);
}


.journey-section::before {

  content:
    "";

  position:
    absolute;

  inset:
    0;

  pointer-events:
    none;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(169, 214, 229, 0.1),
      transparent 24%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(242, 201, 76, 0.08),
      transparent 25%
    );
}


.journey-heading {

  position:
    relative;

  z-index:
    1;

  max-width:
    840px;
}


.journey-heading h2 {

  color:
    var(--white);
}


.journey-heading h2 em {

  color:
    var(--gold);
}


.journey-heading >
p:last-child {

  max-width:
    690px;

  margin:
    25px auto 0;

  color:
    rgba(255, 255, 255, 0.68);

  line-height:
    1.8;
}


.journey-path {

  position:
    relative;

  z-index:
    1;

  margin-top:
    80px;

  display:
    grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  gap:
    25px;
}


.journey-line {

  position:
    absolute;

  z-index:
    -1;

  top:
    42px;

  left:
    12.5%;

  right:
    12.5%;

  height:
    1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(242, 201, 76, 0.42),
      transparent
    );
}


.journey-step {

  padding:
    0 13px;

  text-align:
    center;
}


.journey-number {

  display:
    block;

  margin-bottom:
    10px;

  color:
    rgba(255, 255, 255, 0.42);

  font-size:
    0.58rem;

  font-weight:
    700;

  letter-spacing:
    0.16em;
}


.journey-icon {

  width:
    64px;

  height:
    64px;

  margin:
    0 auto 24px;

  display:
    grid;

  place-items:
    center;

  border:
    1px solid
    rgba(242, 201, 76, 0.36);

  border-radius:
    50%;

  color:
    var(--gold);

  background:
    var(--navy);

  box-shadow:
    0 0 0 10px
    rgba(242, 201, 76, 0.035);

  font-size:
    1.2rem;
}


.journey-step h3 {

  margin-bottom:
    13px;

  font-size:
    1.55rem;

  font-weight:
    600;
}


.journey-step p {

  margin:
    0;

  color:
    rgba(255, 255, 255, 0.61);

  font-size:
    0.9rem;

  line-height:
    1.7;
}



/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {

  position:
    relative;

  min-height:
    620px;

  display:
    flex;

  align-items:
    center;

  overflow:
    hidden;

  text-align:
    center;

  background:
    var(--forest);
}


.final-cta-background {

  position:
    absolute;

  inset:
    0;

  background-image:
    url("forest-hero.jpg");

  background-position:
    center 60%;

  background-size:
    cover;
}


.final-cta-overlay {

  position:
    absolute;

  inset:
    0;

  background:
    rgba(5, 41, 31, 0.76);
}


.final-cta-content {

  position:
    relative;

  z-index:
    2;

  max-width:
    930px;
}


.final-cta h2 {

  color:
    var(--white);
}


.final-cta h2 em {

  color:
    var(--gold);
}


.final-cta-actions {

  margin-top:
    35px;

  display:
    flex;

  flex-wrap:
    wrap;

  justify-content:
    center;

  gap:
    13px;
}



/* =====================================================
   FOOTER
===================================================== */

.site-footer {

  padding:
    80px 0 26px;

  color:
    var(--white);

  background:
    var(--forest-dark);
}


.footer-top {

  padding-bottom:
    65px;

  display:
    grid;

  grid-template-columns:
    1.2fr 1fr;

  gap:
    100px;
}


.footer-brand {

  max-width:
    410px;
}


.footer-logo {

  width:
    56px;

  height:
    56px;

  margin-bottom:
    21px;

  display:
    grid;

  place-items:
    center;

  border:
    1px solid
    rgba(255, 255, 255, 0.28);

  border-radius:
    50%;

  color:
    var(--gold);

  font-family:
    "Fraunces",
    serif;
}


.footer-brand h2 {

  margin-bottom:
    15px;

  color:
    var(--white);

  font-size:
    2.5rem;
}


.footer-brand p {

  color:
    rgba(255, 255, 255, 0.61);

  line-height:
    1.7;
}


.footer-links {

  display:
    grid;

  grid-template-columns:
    repeat(
      2,
      1fr
    );

  gap:
    50px;
}


.footer-links h3 {

  margin-bottom:
    22px;

  color:
    var(--gold);

  font-family:
    "DM Sans",
    sans-serif;

  font-size:
    0.7rem;

  letter-spacing:
    0.16em;

  text-transform:
    uppercase;
}


.footer-links a {

  width:
    fit-content;

  margin-bottom:
    12px;

  display:
    block;

  color:
    rgba(255, 255, 255, 0.68);

  font-size:
    0.9rem;
}


.footer-links a:hover {

  color:
    var(--white);
}


.footer-bottom {

  padding-top:
    25px;

  display:
    flex;

  justify-content:
    space-between;

  gap:
    25px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.09);

  color:
    rgba(255, 255, 255, 0.45);

  font-size:
    0.72rem;
}


.footer-bottom p {

  margin:
    0;
}


.footer-bottom a {

  color:
    var(--gold);
}



/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {

  opacity:
    0;

  transform:
    translateY(30px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}


.reveal.visible {

  opacity:
    1;

  transform:
    translateY(0);
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {


  .section {

    padding:
      95px 0;
  }



  /* HEADER */

  .mobile-menu-button {

    display:
      flex;

    position:
      relative;

    z-index:
      20;
  }


  .main-nav {

    position:
      fixed;

    top:
      0;

    right:
      -100%;

    width:
      min(
        390px,
        88vw
      );

    height:
      100svh;

    padding:
      125px 35px 40px;

    flex-direction:
      column;

    align-items:
      stretch;

    gap:
      8px;

    background:
      var(--forest-dark);

    box-shadow:
      -25px 0 50px
      rgba(0, 0, 0, 0.18);

    transition:
      right 0.35s ease;
  }


  .main-nav.open {

    right:
      0;
  }


  .main-nav > a {

    padding:
      15px 2px;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.08);

    color:
      var(--white);

    font-size:
      1rem;
  }


  .main-nav >
  a:not(.nav-button)::after {

    display:
      none;
  }


  .nav-button {

    margin-top:
      15px;

    justify-content:
      center;

    border-color:
      rgba(255, 255, 255, 0.35);

    color:
      var(--white);
  }



  /* HERO */

  .hero-copy {

    width:
      55%;
  }


  .hero-head-photo {

    right:
      2%;

    width:
      43vw;
  }



  /* TITANS */

  .split-heading {

    grid-template-columns:
      1fr;

    gap:
      30px;
  }



  /* NURSERY */

  .nursery-layout {

    gap:
      55px;
  }



  /* STORY */

  .story-layout {

    grid-template-columns:
      1fr;

    gap:
      60px;
  }


  .story-copy {

    max-width:
      750px;
  }


  .story-pair {

    width:
      min(
        760px,
        100%
      );

    min-height:
      670px;

    margin:
      0 auto;
  }



  /* JOURNEY */

  .journey-path {

    grid-template-columns:
      repeat(
        2,
        1fr
      );

    gap:
      60px 25px;
  }


  .journey-line {

    display:
      none;
  }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {


  :root {

    --header-height:
      74px;
  }



  /* SWITCHER */

  .demo-switcher {

    min-height:
      46px;

    padding:
      6px 10px;
  }


  .demo-switcher > span {

    display:
      none;
  }


  .demo-switcher-links {

    width:
      100%;

    justify-content:
      center;
  }


  .demo-switcher-links a {

    flex:
      1;

    max-width:
      110px;

    text-align:
      center;
  }



  /* HEADER */

  .site-header {

    top:
      46px;

    height:
      74px;
  }


  .site-header.scrolled {

    height:
      70px;
  }


  .container {

    width:
      min(
        calc(100% - 34px),
        var(--container)
      );
  }


  .section {

    padding:
      78px 0;
  }


  h2 {

    font-size:
      clamp(
        2.55rem,
        11vw,
        4.3rem
      );
  }


  .header-inner {

    width:
      calc(100% - 32px);
  }


  .brand-mark {

    width:
      40px;

    height:
      40px;
  }


  .brand strong {

    font-size:
      1rem;
  }



  /* HERO */

  .hero {

    min-height:
      920px;

    height:
      auto;

    padding-bottom:
      120px;

    align-items:
      flex-start;
  }


  .hero-forest {

    background-position:
      58% center;
  }


  .hero-overlay {

    background:
      linear-gradient(
        180deg,
        rgba(4, 28, 22, 0.87) 0%,
        rgba(4, 28, 22, 0.68) 55%,
        rgba(4, 28, 22, 0.58) 100%
      );
  }


  .hero-copy {

    width:
      100%;

    padding-top:
      170px;

    text-align:
      center;
  }


  .hero h1 {

    font-size:
      clamp(
        4.8rem,
        23vw,
        7.4rem
      );

    line-height:
      0.78;
  }


  .hero h1 span {

    margin-left:
      0;
  }


  .hero-subtitle {

    max-width:
      500px;

    margin:
      30px auto 27px;

    font-size:
      0.98rem;

    line-height:
      1.65;
  }


  .hero-actions {

    justify-content:
      center;
  }



  /* NEW HERO PHOTO */

  .hero-head-photo {

    position:
      absolute;

    right:
      50%;

    bottom:
      70px;

    width:
      min(
        470px,
        calc(100% - 38px)
      );

    transform:
      translateX(50%);

    border-width:
      6px;

    border-radius:
      40% 40% 22px 22px;
  }


  .hero-head-label {

    right:
      15px;

    bottom:
      15px;

    padding:
      10px 14px;
  }


  .scroll-indicator {

    display:
      none;
  }



  /* WELCOME */

  .home-quote {

    margin-top:
      65px;

    padding:
      34px 12px;
  }



  /* TITANS */

  .featured-titans {

    grid-template-columns:
      1fr;
  }


  .titan-feature {

    min-height:
      auto;

    border-radius:
      22px;
  }


  .titan-feature-photo {

    height:
      390px;
  }


  .titan-feature-dark
  .titan-feature-photo img {

    object-position:
      center 14%;
  }


  .titan-feature-content {

    padding:
      30px 25px 34px;
  }



  /* COUNTRY */

  .country-grid {

    grid-template-columns:
      1fr;
  }


  .country-photo,
  .country-photo-large {

    min-height:
      420px;

    grid-row:
      auto;
  }



  /* NURSERY */

  .nursery-layout {

    grid-template-columns:
      1fr;

    gap:
      55px;
  }


  .nursery-photo {

    height:
      470px;

    border-radius:
      42% 42% 22px 22px;
  }


  .photo-note {

    right:
      10px;

    bottom:
      15px;
  }



  /* STORY */

  .story-layout {

    grid-template-columns:
      1fr;

    gap:
      55px;
  }


  .story-pair {

    min-height:
      auto;

    display:
      flex;

    flex-direction:
      column;

    gap:
      25px;
  }


  .story-cat {

    position:
      relative;

    width:
      88%;

    transform:
      none;
  }


  .story-cat-endo {

    top:
      auto;

    left:
      0;

    align-self:
      flex-start;
  }


  .story-cat-elle {

    right:
      0;

    bottom:
      auto;

    align-self:
      flex-end;
  }


  .story-cat-endo:hover,
  .story-cat-elle:hover {

    transform:
      translateY(-5px);
  }


  .story-cat-photo {

    height:
      460px;
  }


  .story-cat-endo
  .story-cat-photo {

    border-radius:
      115px 22px 22px 22px;
  }


  .story-cat-elle
  .story-cat-photo {

    border-radius:
      22px 115px 22px 22px;
  }


  .story-pair-badge {

    top:
      50%;

    width:
      120px;

    height:
      120px;
  }


  .story-pair-badge strong {

    font-size:
      2rem;
  }



  /* JOURNEY */

  .journey-path {

    grid-template-columns:
      1fr;

    gap:
      50px;
  }


  .journey-step {

    max-width:
      400px;

    margin:
      0 auto;
  }



  /* FINAL CTA */

  .final-cta {

    min-height:
      560px;

    padding:
      80px 0;
  }



  /* FOOTER */

  .footer-top {

    grid-template-columns:
      1fr;

    gap:
      45px;
  }


  .footer-bottom {

    flex-direction:
      column;
  }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {


  .hero {

    min-height:
      870px;
  }


  .hero-copy {

    padding-top:
      150px;
  }


  .hero h1 {

    font-size:
      4.65rem;
  }


  .hero-actions,
  .final-cta-actions {

    flex-direction:
      column;

    align-items:
      stretch;
  }


  .hero-actions .button,
  .final-cta-actions .button {

    width:
      100%;
  }


  .hero-head-photo {

    bottom:
      65px;

    width:
      calc(100% - 28px);
  }


  .hero-head-label {

    display:
      none;
  }


  .story-cat {

    width:
      94%;
  }


  .story-cat-photo {

    height:
      400px;
  }


  .story-pair-badge {

    width:
      105px;

    height:
      105px;
  }


  .story-pair-badge strong {

    font-size:
      1.7rem;
  }


  .story-pair-badge small {

    font-size:
      0.48rem;
  }


  .footer-links {

    gap:
      25px;
  }

}