/* ============================================================
   CHAWABA
   GLOBAL CREATIVE PLATFORM
   Premium • Editorial • Responsive
   ============================================================ */

:root {

  --background: #fff8ef;
  --background-soft: #fff0df;
  --surface: #ffffff;

  --foreground: #17110d;
  --foreground-soft: #46382f;
  --muted: #75665b;

  --primary: #e84923;
  --primary-bright: #ff6036;
  --primary-dark: #b92f14;

  --gold: #efa900;
  --gold-bright: #ffc84d;

  --coral: #ef6849;
  --purple: #7040bf;

  --border: rgba(23,17,13,.12);

  --font-display:
    "Outfit",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}


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

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;

  margin: 0;
  padding: 0;

  overflow-x: hidden;

  color: var(--foreground);

  font-family: var(--font-display);

  background:
    radial-gradient(
      circle at 76% 22%,
      rgba(239,169,0,.13),
      transparent 28%
    ),
    radial-gradient(
      circle at 16% 78%,
      rgba(112,64,191,.055),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #fffaf4 0%,
      #fff4e7 52%,
      #ffe9d5 100%
    );

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font-family: inherit;
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {

  position: sticky;
  top: 0;

  z-index: 100;

  width: 100%;

  background:
    rgba(255,250,244,.88);

  border-bottom:
    1px solid rgba(23,17,13,.10);

  box-shadow:
    0 5px 24px rgba(90,50,20,.06);

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

.header-inner {

  width: min(
    100%,
    1200px
  );

  min-height: 70px;

  margin: 0 auto;

  padding:
    10px
    clamp(16px,3vw,28px);

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 16px;
}


/* ============================================================
   BRAND
   ============================================================ */

.brand {
  display: flex;
  flex-direction: column;

  min-width: 0;

  line-height: 1;
}

.brand-row {
  display: flex;

  align-items: center;

  gap: 8px;
}

.brand-mark {

  width: 29px;
  height: 29px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border:
    3px solid var(--primary);

  border-radius: 50%;

  background: #fff;

  box-shadow:
    0 2px 0 rgba(185,47,20,.15);
}

.brand-mark span {

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--primary);
}


.brand-name {
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand-black {
  color: #17110d;
}

.brand-blue {
  color: #ff892b;
}



.brand-tag {

  margin-top: 4px;
  padding-left: 37px;

  font-size: .59rem;

  font-weight: 700;

  letter-spacing: .04em;

  color: #75665b;
}


/* ============================================================
   HEADER ACTIONS
   ============================================================ */

.header-actions {

  display: flex;

  align-items: center;

  gap: 10px;
}


/* ============================================================
   HEADER START
   ============================================================ */

.btn-shop-sm {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 42px;

  padding:
    0 18px;

  border-radius: 9px;

  background:
    linear-gradient(
      135deg,
      #f25a2e,
      #d83b18
    );

  color: #fff;

  font-size: .85rem;

  font-weight: 800;

  box-shadow:
    0 3px 0 #9d2910,
    0 8px 18px rgba(211,55,19,.18);

  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.btn-shop-sm:hover {

  transform: translateY(-2px);

  box-shadow:
    0 5px 0 #9d2910,
    0 12px 22px rgba(211,55,19,.24);
}


/* ============================================================
   MENU BUTTON
   ============================================================ */

.menu-btn {

  position: relative;

  width: 42px;
  height: 42px;

  padding: 0;

  border:
    1.5px solid rgba(23,17,13,.8);

  border-radius: 9px;

  background: #fff;

  cursor: pointer;

  box-shadow:
    0 2px 0 rgba(23,17,13,.10);
}

.menu-btn .bar {

  position: absolute;

  left: 50%;
  top: 50%;

  width: 18px;
  height: 2px;

  margin-left: -9px;

  border-radius: 5px;

  background: #17110d;

  transition:
    transform .25s ease,
    opacity .2s ease;
}

.menu-btn .bar:nth-child(1) {
  transform: translateY(-6px);
}

.menu-btn .bar:nth-child(3) {
  transform: translateY(6px);
}

.menu-btn[aria-expanded="true"]
.bar:nth-child(1) {
  transform: rotate(45deg);
}

.menu-btn[aria-expanded="true"]
.bar:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"]
.bar:nth-child(3) {
  transform: rotate(-45deg);
}


/* ============================================================
   MENU
   ============================================================ */

.menu {

  width: min(
    100%,
    1200px
  );

  margin: 0 auto;

  border-top:
    1px solid rgba(23,17,13,.09);

  animation:
    chawaba-menu-in
    .22s ease both;
}

.menu-item {

  display: flex;

  align-items: center;
  justify-content: space-between;

  min-height: 58px;

  padding:
    0 clamp(16px,3vw,28px);

  border-bottom:
    1px solid rgba(23,17,13,.08);

  background: #fffaf4;

  font-size: 1rem;

  font-weight: 700;
}

.menu-item.is-active {

  background: var(--primary);

  color: #fff;
}

@keyframes chawaba-menu-in {

  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}


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

.hero {

  position: relative;

  width: 100%;

  min-height:
    calc(100svh - 70px);

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #fffaf4 0%,
      #fff4e7 52%,
      #ffe8d2 100%
    );
}

.hero-mist {

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:

    radial-gradient(
      circle at 78% 45%,
      rgba(232,73,35,.14),
      transparent 31%
    ),

    radial-gradient(
      circle at 25% 18%,
      rgba(239,169,0,.12),
      transparent 26%
    ),

    radial-gradient(
      circle at 58% 88%,
      rgba(112,64,191,.055),
      transparent 27%
    );
}


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

.hero-inner {

  position: relative;

  z-index: 5;

  width: min(
    100%,
    1200px
  );

  min-height:
    calc(100svh - 70px);

  margin: 0 auto;

  padding:
    clamp(28px,5vw,70px)
    clamp(18px,4vw,42px);

  display: grid;

  grid-template-columns:
    minmax(0,.88fr)
    minmax(0,1.12fr);

  align-items: center;

  gap:
    clamp(20px,4vw,65px);
}


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

.hero-copy {

  position: relative;

  z-index: 10;

  max-width: 540px;

  text-align: left;
}


/* ============================================================
   EYEBROW
   ============================================================ */

.hero-eyebrow {

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 18px;

  color: #75665b;

  font-size: .68rem;

  font-weight: 800;

  letter-spacing: .16em;
}

.eyebrow-line {

  width: 34px;
  height: 2px;

  flex: 0 0 auto;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--gold)
    );
}


/* ============================================================
   HEADLINE
   ============================================================ */

.hero-copy h1 {

  margin: 0;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  line-height: .91;

  letter-spacing: -.055em;
}

.headline-brand {

  margin-bottom: 9px;

  font-size:
    clamp(
      1.2rem,
      2vw,
      1.65rem
    );

  line-height: 1;

  font-weight: 800;

  letter-spacing: .08em;

  color: var(--primary);
}

.headline-main {

  font-size:
    clamp(
      3.6rem,
      6.2vw,
      6.2rem
    );

  font-weight: 800;

  color: #17110d;
}

.headline-accent {

  margin-top: 5px;

  font-size:
    clamp(
      3.6rem,
      6.2vw,
      6.2rem
    );

  font-weight: 800;

  color: var(--primary);

  background:
    linear-gradient(
      110deg,
      #e84923 10%,
      #ff6638 52%,
      #efa900 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}


/* ============================================================
   DESCRIPTION
   ============================================================ */

.hero-description {

  max-width: 500px;

  margin:
    25px
    0
    0;

  color: #57493f;

  font-size:
    clamp(
      .95rem,
      1.3vw,
      1.08rem
    );

  line-height: 1.7;

  font-weight: 500;
}


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

.hero-actions {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 28px;
}

.btn-start {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 11px;

  min-height: 56px;

  padding:
    0 21px;

  border-radius: 10px;

  background:
    linear-gradient(
      145deg,
      #ff6638 0%,
      #e84923 48%,
      #c92f13 100%
    );

  color: #fff;

  font-size: 1rem;

  font-weight: 800;

  box-shadow:
    0 5px 0 #96230f,
    0 11px 26px rgba(201,47,19,.25);

  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.btn-start:hover {

  transform: translateY(-3px);

  box-shadow:
    0 8px 0 #96230f,
    0 16px 31px rgba(201,47,19,.30);
}

.btn-start:active {

  transform: translateY(3px);

  box-shadow:
    0 2px 0 #96230f,
    0 6px 15px rgba(201,47,19,.18);
}

.btn-icon {

  width: 31px;
  height: 31px;

  display: grid;
  place-items: center;

  border-radius: 8px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.38),
      rgba(255,255,255,.10)
    );

  border:
    1px solid rgba(255,255,255,.48);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 3px 0 rgba(100,22,10,.38);
}

.btn-icon svg {
  display: block;
}

.hero-note {

  color: #88786b;

  font-size: .72rem;

  font-weight: 700;

  letter-spacing: .04em;
}


/* ============================================================
   GLOBE
   ============================================================ */

.hero-globe {

  min-width: 0;

  display: flex;

  align-items: center;
  justify-content: center;
}

.globe-stage {

  position: relative;

  width: 100%;

  display: grid;

  place-items: center;
}

.globe-sphere {

  position: relative;

  width:
    min(
      100%,
      590px
    );

  aspect-ratio: 1;

  isolation: isolate;

  overflow: visible;
}


/* ============================================================
   CANVAS
   ============================================================ */

.globe-canvas {

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  border-radius: 50%;

  box-shadow:

    0 30px 70px
      rgba(75,42,17,.20),

    0 7px 25px
      rgba(75,42,17,.11);
}


/* ============================================================
   GLOBE LIGHT
   ============================================================ */

.globe-sphere::before,
.globe-sphere::after {

  content: "";

  position: absolute;

  inset: 7%;

  z-index: 6;

  pointer-events: none;

  border-radius: 50%;

  opacity: .10;

  mix-blend-mode: screen;
}

.globe-sphere::before {

  border-top:
    2px solid
    rgba(242,169,0,.55);

  border-left:
    1px solid
    rgba(255,194,71,.28);

  filter: blur(.8px);

  animation:
    chawabaLightOne
    18s
    linear
    infinite;
}

.globe-sphere::after {

  inset: 13%;

  border-bottom:
    1px solid
    rgba(232,73,35,.38);

  border-right:
    1px solid
    rgba(240,106,75,.25);

  filter: blur(1px);

  animation:
    chawabaLightTwo
    23s
    linear
    infinite;
}

@keyframes chawabaLightOne {

  0% {
    transform:
      rotate(0deg)
      scale(.985);
  }

  50% {
    transform:
      rotate(180deg)
      scale(1.01);
  }

  100% {
    transform:
      rotate(360deg)
      scale(.985);
  }
}

@keyframes chawabaLightTwo {

  0% {
    transform:
      rotate(360deg)
      scale(1.01);
  }

  50% {
    transform:
      rotate(180deg)
      scale(.985);
  }

  100% {
    transform:
      rotate(0deg)
      scale(1.01);
  }
}


/* ============================================================
   ARTIST NODES
   ============================================================ */

.artist-node {

  position: absolute;

  left: 50%;
  top: 50%;

  width: 42%;
  height: 54%;

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  overflow: visible;

  will-change:
    transform,
    opacity,
    filter;

  mix-blend-mode: screen;
}

.artist-img {

  width: 100%;
  height: 100%;

  object-fit: contain;

  -webkit-mask-image:
    radial-gradient(
      ellipse 55% 62% at 50% 45%,
      #000 0%,
      #000 34%,
      rgba(0,0,0,.90) 52%,
      rgba(0,0,0,.48) 68%,
      transparent 88%
    );

  mask-image:
    radial-gradient(
      ellipse 55% 62% at 50% 45%,
      #000 0%,
      #000 34%,
      rgba(0,0,0,.90) 52%,
      rgba(0,0,0,.48) 68%,
      transparent 88%
    );
}


/* ============================================================
   LARGE DESKTOP
   ============================================================ */

@media (min-width: 1400px) {

  .hero-inner {

    max-width: 1380px;

    grid-template-columns:
      .9fr
      1.1fr;

    gap: 40px;
  }

  .globe-sphere {
    max-width: 650px;
  }

  .headline-main,
  .headline-accent {

    font-size:
      clamp(
        5rem,
        5.3vw,
        6.8rem
      );
  }
}


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

@media (min-width: 701px)
       and (max-width: 1023px) {

  .hero-inner {

    grid-template-columns:
      minmax(0,.85fr)
      minmax(0,1.15fr);

    gap: 18px;

    padding:
      42px
      28px;
  }

  .headline-main,
  .headline-accent {

    font-size:
      clamp(
        3.2rem,
        7vw,
        4.7rem
      );
  }

  .hero-description {
    font-size: .95rem;
  }

  .globe-sphere {
    width: min(52vw,500px);
  }

  .btn-shop-sm {
    display: inline-flex;
  }
}


/* ============================================================
   MOBILE LANDSCAPE / SMALL TABLET
   ============================================================ */

@media (max-width: 700px) {

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 64px;
  }

  .btn-shop-sm {
    display: none;
  }

  .hero {

    min-height:
      calc(100svh - 64px);
  }

  .hero-inner {

    min-height:
      calc(100svh - 64px);

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 0;

    padding:
      24px
      18px
      34px;
  }

  .hero-globe {

    order: 1;

    width: 100%;

    margin-bottom: -4px;
  }

  .globe-sphere {

    width:
      min(
        82vw,
        430px
      );
  }

  .hero-copy {

    order: 2;

    width: 100%;

    max-width: 560px;

    text-align: center;
  }

  .hero-eyebrow {

    justify-content: center;

    margin-bottom: 13px;

    font-size: .58rem;
  }

  .eyebrow-line {
    width: 25px;
  }

  .hero-copy h1 {

    align-items: center;
  }

  .headline-brand {

    margin-bottom: 7px;

    font-size: 1.05rem;
  }

  .headline-main,
  .headline-accent {

    font-size:
      clamp(
        3rem,
        12.5vw,
        4.1rem
      );
  }

  .headline-accent {
    margin-top: 3px;
  }

  .hero-description {

    max-width: 500px;

    margin:
      18px
      auto
      0;

    font-size: .92rem;

    line-height: 1.6;
  }

  .hero-actions {

    justify-content: center;

    margin-top: 21px;

    gap: 13px;
  }

  .btn-start {

    min-height: 52px;

    padding:
      0 18px;
  }

  .hero-note {
    display: none;
  }
}


/* ============================================================
   VERY SMALL PHONES
   ============================================================ */

@media (max-width: 390px) {

  .header-inner {
    padding-inline: 13px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-tag {
    padding-left: 33px;

    font-size: .52rem;
  }

  .brand-mark {

    width: 26px;
    height: 26px;
  }

  .brand-mark span {

    width: 7px;
    height: 7px;
  }

  .menu-btn {

    width: 39px;
    height: 39px;
  }

  .hero-inner {

    padding:
      18px
      14px
      28px;
  }

  .globe-sphere {

    width:
      min(
        86vw,
        350px
      );
  }

  .headline-brand {

    font-size: .95rem;
  }

  .headline-main,
  .headline-accent {

    font-size:
      clamp(
        2.7rem,
        13.5vw,
        3.5rem
      );
  }

  .hero-description {

    font-size: .87rem;

    line-height: 1.55;
  }

  .hero-actions {

    margin-top: 18px;
  }

  .btn-start {

    min-height: 49px;

    padding:
      0 16px;

    font-size: .92rem;
  }

  .btn-icon {

    width: 28px;
    height: 28px;
  }
}


/* ============================================================
   SHORT MOBILE SCREENS
   ============================================================ */

@media (max-width: 700px)
       and (max-height: 720px) {

  .hero-inner {

    justify-content: flex-start;

    padding-top: 14px;
  }

  .globe-sphere {

    width:
      min(
        67vh,
        340px
      );
  }

  .hero-globe {

    margin-bottom: -8px;
  }

  .hero-description {

    margin-top: 13px;
  }

  .hero-actions {

    margin-top: 15px;
  }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .globe-sphere::before,
  .globe-sphere::after {

    animation: none;
  }

  .btn-start,
  .btn-shop-sm,
  .menu-btn .bar {

    transition: none;
  }
}


/* =========================================
   CHAWABA ROTATING TALENT BLOCK
========================================= */

.talent-rotator {
  width: 100%;
  min-height: 220px;

  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;

  position: relative;
  overflow: hidden;

  background: #fff;
  color: #080808;

  font-family: Arial, Helvetica, sans-serif;
}

/* -----------------------------------------
   SIDE TEXT
----------------------------------------- */

.talent-side {
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.talent-left {
  text-align: right;
  padding-right: 30px;
}

.talent-right {
  text-align: left;
  padding-left: 30px;
}

/* -----------------------------------------
   CENTER AREA
----------------------------------------- */

.talent-center {
  height: 220px;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

/* -----------------------------------------
   WORD CONTAINER
----------------------------------------- */

.talent-word-wrap {
  position: relative;

  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

/* -----------------------------------------
   ROTATING WORDS
----------------------------------------- */

.talent-word {
  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%)
    translateY(45px);

  opacity: 0;

  color: #ffb703;

  font-size: clamp(28px, 4vw, 58px);
  font-weight: 800;

  white-space: nowrap;

  filter: blur(2px);

  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.22, 1, .36, 1),
    filter .65s ease;
}

/* ACTIVE WORD */

.talent-word.active {
  opacity: 1;

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

  filter: blur(0);

  z-index: 2;
}

/* -----------------------------------------
   WORD ENTER / EXIT
----------------------------------------- */

.talent-word.exit {
  opacity: 0;

  transform:
    translate(-50%, -50%)
    translateY(-45px);

  filter: blur(3px);
}

/* -----------------------------------------
   SUBTLE CENTER GLOW
----------------------------------------- */

.talent-center::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  left: 50%;
  top: 50%;

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

  background: radial-gradient(
    circle,
    rgba(255, 183, 3, 0.12),
    transparent 70%
  );

  pointer-events: none;
}

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

@media (max-width: 800px) {

  .talent-rotator {
    grid-template-columns: 0.8fr 1.2fr 0.8fr;
    min-height: 180px;
  }

  .talent-center {
    height: 180px;
  }

  .talent-left {
    padding-right: 15px;
  }

  .talent-right {
    padding-left: 15px;
  }

  .talent-side {
    font-size: clamp(18px, 3vw, 30px);
  }

  .talent-word {
    font-size: clamp(22px, 4vw, 40px);
  }
}

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

@media (max-width: 600px) {

  .talent-rotator {
    min-height: 150px;

    grid-template-columns:
      0.75fr
      1.5fr
      0.75fr;
  }

  .talent-center {
    height: 150px;
  }

  .talent-left {
    padding-right: 8px;
  }

  .talent-right {
    padding-left: 8px;
  }

  .talent-side {
    font-size: 16px;
    white-space: normal;
  }

  .talent-word {
    font-size: 23px;
  }
}

/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 380px) {

  .talent-rotator {
    grid-template-columns:
      0.65fr
      1.7fr
      0.65fr;
  }

  .talent-side {
    font-size: 14px;
  }

  .talent-word {
    font-size: 19px;
  }
}