/* =========================================================
   HARI ROOTED — COMING SOON
   Desktop + Tablet + Mobile
========================================================= */

:root {
  --green: #35402f;
  --green-dark: #263125;
  --green-mid: #495442;

  --cream: #f2eee4;
  --paper: #f5efe4;

  --rose: #c97874;
  --sage: #7f8878;
  --clay: #b96b43;

  --black: #161716;
}


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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


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

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

  background: var(--green);

  color: var(--cream);

  overflow-x: hidden;
}


/* =========================================================
   MAIN BACKGROUND
========================================================= */

.hero {
  position: relative;

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

  display: flex;
  flex-direction: column;
  align-items: center;

  padding:
    38px
    40px
    26px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(255, 255, 255, 0.07),
      transparent 32%
    ),

    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.035),
      transparent 35%
    ),

    linear-gradient(
      135deg,
      #3d4936,
      #303b2c
    );
}


/* =========================================================
   TEXTURE
========================================================= */

.texture {
  position: fixed;

  inset: 0;

  z-index: 20;

  pointer-events: none;

  opacity: 0.16;

  mix-blend-mode: soft-light;

  background-image:
    repeating-radial-gradient(
      circle at 0 0,
      rgba(255, 255, 255, 0.5) 0,
      rgba(255, 255, 255, 0.5) 1px,
      transparent 1px,
      transparent 4px
    );

  background-size: 6px 6px;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
  position: relative;

  z-index: 5;

  width: min(1110px, 100%);

  display: flex;

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

  text-transform: uppercase;

  letter-spacing: 0.14em;

  font-size: 15px;

  font-weight: 500;

  color: #f7f3e9;
}


/* =========================================================
   LOCATION
========================================================= */

.location {
  display: flex;

  align-items: center;

  gap: 14px;
}


.location-pin {
  position: relative;

  display: block;

  width: 18px;
  height: 18px;

  flex-shrink: 0;

  background: var(--rose);

  border-radius:
    50%
    50%
    50%
    0;

  transform: rotate(-45deg);
}


.location-pin::after {
  content: "";

  position: absolute;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--green);

  left: 6px;
  top: 6px;
}


/* =========================================================
   LARGE BACKGROUND "COMING SOON"
========================================================= */

.background-text {
  position: absolute;

  z-index: 0;

  top: 87px;
  left: 50%;

  transform: translateX(-50%);

  width: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  pointer-events: none;

  opacity: 0.56;

  will-change: transform;
}


.background-text span {
  display: block;

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

  font-size: clamp(
    100px,
    13vw,
    205px
  );

  font-weight: 900;

  line-height: 0.98;

  letter-spacing: -0.07em;

  white-space: nowrap;

  color:
    rgba(
      24,
      33,
      22,
      0.62
    );
}


/* =========================================================
   MAIN COMING SOON CARD
========================================================= */

.coming-card {
  position: relative;

  z-index: 4;

  width: min(670px, 94vw);

  min-height: 660px;

  margin-top: 78px;

  padding:
    40px
    60px
    35px;

  border-radius: 13px;

  color: var(--black);

  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(255, 255, 255, 0.55),
      transparent 40%
    ),
    var(--paper);

  box-shadow:
    0 25px 55px
    rgba(10, 15, 10, 0.32);

  text-align: center;

  animation:
    cardEntrance
    0.9s
    cubic-bezier(.2, .8, .2, 1)
    both;

  will-change: transform;
}


/* PAPER TEXTURE */

.coming-card::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  border-radius: inherit;

  opacity: 0.09;

  background-image:
    repeating-radial-gradient(
      circle,
      rgba(70, 55, 40, 0.4) 0,
      rgba(70, 55, 40, 0.4) 0.5px,
      transparent 0.8px,
      transparent 4px
    );
}


/* =========================================================
   REAL HARI ROOTED SVG LOGO
========================================================= */

.logo-wrapper {
  position: relative;

  z-index: 2;

  display: flex;

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

  margin-bottom: 24px;
}


.logo {
  display: block;

  width: 235px;

  max-width: 72%;

  height: auto;

  object-fit: contain;
}


/* =========================================================
   DIVIDER
========================================================= */

.divider {
  position: relative;

  z-index: 2;

  width: 135px;
  height: 1px;

  margin:
    0
    auto
    22px;

  background: var(--rose);
}


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

.eyebrow {
  position: relative;

  z-index: 2;

  margin-bottom: 12px;

  color: var(--green);

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 0.28em;
}


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

.coming-card h1 {
  position: relative;

  z-index: 2;

  margin-bottom: 21px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      43px,
      4vw,
      61px
    );

  font-weight: 600;

  line-height: 0.96;

  letter-spacing: -0.035em;

  color: var(--green);
}


.coming-card h1 span {
  display: block;
}


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

.intro {
  position: relative;

  z-index: 2;

  font-size: 16px;

  line-height: 1.62;

  color: #282b27;
}


/* =========================================================
   WARNING TEXT
========================================================= */

.warning {
  position: relative;

  z-index: 2;

  margin-top: 20px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 15px;

  font-weight: 600;

  font-style: italic;

  color: var(--rose);
}


/* =========================================================
   BRAND COLOUR PALETTE
========================================================= */

.palette {
  position: relative;

  z-index: 2;

  width: min(445px, 100%);

  margin:
    29px
    auto
    0;

  display: flex;

  align-items: center;

  gap: 24px;
}


.circle {
  display: block;

  width: 49px;
  height: 49px;

  flex-shrink: 0;

  border-radius: 50%;
}


.rose {
  background:
    linear-gradient(
      145deg,
      #ce807b,
      #b96966
    );
}


.sage {
  background:
    linear-gradient(
      145deg,
      #8b9584,
      #737d6d
    );
}


.clay {
  background:
    linear-gradient(
      145deg,
      #c67a51,
      #aa5c34
    );
}


.green-pill {
  flex: 1;

  height: 65px;

  min-width: 120px;

  margin-left: 2px;

  border-radius: 100px;

  background:
    linear-gradient(
      145deg,
      #384532,
      #293526
    );
}


/* =========================================================
   EXPERIENCES
========================================================= */

.experiences {
  position: relative;

  z-index: 4;

  width: 100%;

  margin-top: 36px;

  text-align: center;

  color: #eeeadd;
}


.experience-row {
  display: flex;

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

  flex-wrap: wrap;

  gap: 17px;

  margin-bottom: 10px;
}


.experience-row span {
  font-size: 14px;

  font-weight: 400;

  letter-spacing: 0.11em;

  text-transform: uppercase;
}


.experience-row i {
  font-style: normal;

  color: var(--rose);

  opacity: 0.75;
}


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

.footer {
  position: relative;

  z-index: 4;

  margin-top: auto;

  padding-top: 24px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 24px;

  color: #e8e5da;
}


.footer a {
  color: inherit;

  text-decoration: none;

  font-size: 14px;

  transition:
    opacity
    0.2s ease;
}


.footer a:hover {
  opacity: 0.65;
}


.footer-line {
  width: 1px;
  height: 28px;

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


/* =========================================================
   CARD ENTRANCE
========================================================= */

@keyframes cardEntrance {

  from {
    opacity: 0;

    transform:
      translateY(35px)
      scale(0.985);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }

}


/* =========================================================
   TABLET
   601px — 850px
========================================================= */

@media (max-width: 850px) {

  .hero {
    padding:
      28px
      25px
      25px;
  }


  .coming-card {
    width: min(620px, 94vw);

    margin-top: 70px;

    padding:
      38px
      40px
      32px;

    min-height: auto;
  }


  .background-text span {
    font-size: 115px;
  }


  .experience-row {
    gap: 11px;
  }


  .experience-row span {
    font-size: 11px;
  }

}


/* =========================================================
   MOBILE
   600px AND BELOW
========================================================= */

@media (max-width: 600px) {

  body {
    overflow-x: hidden;
  }


  /* MAIN PAGE */

  .hero {
    min-height: 100svh;

    padding:
      18px
      14px
      22px;

    justify-content: flex-start;

    overflow: hidden;
  }


  /* -----------------------
     TOP BAR
  ----------------------- */

  .top-bar {
    width: 100%;

    font-size: 10px;

    letter-spacing: 0.12em;
  }


  .location {
    gap: 7px;
  }


  .location-pin {
    width: 13px;
    height: 13px;
  }


  .location-pin::after {
    width: 4px;
    height: 4px;

    left: 4.5px;
    top: 4.5px;
  }


  /* -----------------------
     BACKGROUND WORDS
  ----------------------- */

  .background-text {
    top: 88px;

    width: 100%;

    overflow: hidden;

    opacity: 0.42;

    transform:
      translateX(-50%) !important;
  }


  .background-text span {
    font-size: 64px;

    line-height: 0.95;

    letter-spacing: -0.07em;

    white-space: nowrap;
  }


  /* -----------------------
     CARD
  ----------------------- */

  .coming-card {
    width: 100%;

    min-height: auto;

    margin-top: 58px;

    padding:
      26px
      18px
      24px;

    border-radius: 12px;

    box-shadow:
      0 18px 38px
      rgba(10, 15, 10, 0.28);

    transform: none !important;
  }


  /* -----------------------
     LOGO
  ----------------------- */

  .logo-wrapper {
    margin-bottom: 18px;
  }


  .logo {
    width: 165px;

    max-width: 65%;

    height: auto;
  }


  /* -----------------------
     DIVIDER
  ----------------------- */

  .divider {
    width: 80px;

    margin:
      0
      auto
      16px;
  }


  /* -----------------------
     EYEBROW
  ----------------------- */

  .eyebrow {
    margin-bottom: 10px;

    font-size: 10px;

    letter-spacing: 0.21em;
  }


  /* -----------------------
     HEADLINE
  ----------------------- */

  .coming-card h1 {
    margin-bottom: 17px;

    font-size:
      clamp(
        36px,
        10vw,
        43px
      );

    line-height: 0.98;
  }


  /* -----------------------
     DESCRIPTION
  ----------------------- */

  .intro {
    max-width: 300px;

    margin:
      0
      auto;

    font-size: 13px;

    line-height: 1.55;
  }


  .desktop-break {
    display: none;
  }


  /* -----------------------
     WARNING
  ----------------------- */

  .warning {
    max-width: 285px;

    margin:
      16px
      auto
      0;

    font-size: 12px;

    line-height: 1.4;
  }


  /* -----------------------
     PALETTE
  ----------------------- */

  .palette {
    width: 100%;

    margin-top: 22px;

    gap: 9px;
  }


  .circle {
    width: 30px;
    height: 30px;
  }


  .green-pill {
    min-width: 80px;

    height: 40px;

    margin-left: 0;
  }


  /* -----------------------
     EXPERIENCES
  ----------------------- */

  .experiences {
    width: 100%;

    margin-top: 24px;

    padding:
      0
      4px;
  }


  .experience-row {
    display: flex;

    flex-wrap: wrap;

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

    gap:
      5px
      8px;

    margin-bottom: 4px;
  }


  .experience-row span {
    font-size: 8px;

    line-height: 1.65;

    letter-spacing: 0.075em;
  }


  .experience-row i {
    font-size: 7px;
  }


  /* -----------------------
     FOOTER
  ----------------------- */

  .footer {
    width: 100%;

    margin-top: 18px;

    padding-top: 0;

    gap: 12px;
  }


  .footer a {
    font-size: 10px;
  }


  .footer-line {
    height: 18px;
  }

}


/* =========================================================
   SMALL MOBILE
   400px AND BELOW
========================================================= */

@media (max-width: 400px) {

  .hero {
    padding:
      16px
      10px
      20px;
  }


  .coming-card {
    margin-top: 52px;

    padding:
      24px
      15px
      22px;
  }


  .logo {
    width: 145px;

    max-width: 65%;
  }


  .coming-card h1 {
    font-size: 35px;
  }


  .intro {
    font-size: 12.5px;
  }


  .warning {
    font-size: 11.5px;
  }


  .circle {
    width: 27px;
    height: 27px;
  }


  .green-pill {
    min-width: 70px;

    height: 37px;
  }


  .experience-row span {
    font-size: 7.5px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
   340px AND BELOW
========================================================= */

@media (max-width: 340px) {

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


  .coming-card {
    padding:
      22px
      12px;
  }


  .coming-card h1 {
    font-size: 32px;
  }


  .logo {
    width: 135px;
  }


  .palette {
    gap: 7px;
  }


  .circle {
    width: 25px;
    height: 25px;
  }


  .green-pill {
    min-width: 60px;

    height: 34px;
  }


  .footer {
    gap: 9px;
  }


  .footer a {
    font-size: 9px;
  }

}


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

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

  html {
    scroll-behavior: auto;
  }


  .coming-card {
    animation: none;
  }

}