:root {
    --orange: #f16522;
    --brown: #5a3727;
    --white: #ffffff;
  
    --container: 1440px;
    --shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }
  
  /* RESET */
  * {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
  }
  
  /* DEFAULT FONT = SNIGLET */
  body {
    font-family: "Sniglet", cursive;
    background: #fff;
    color: var(--white);
  }
  
  /* CONTAINER */
  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
  }
  
  /* ============================
     NAVBAR
     ============================ */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
  }
  
  .navbar {
    height: 84px;
    background: var(--orange);
    box-shadow: var(--shadow);
  
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  
    padding: 0 40px;
  }
  
  /* PHONE */
  .nav-phone {
    justify-self: start;
  
    display: flex;
    align-items: center;
    gap: 10px;
  
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 600;
  
    color: var(--brown);
    text-decoration: none;
  }
  
  .nav-phone-icon {
    width: 22px;
    height: 22px;
  }
  
  /* LOGO */
  .nav-logo {
    justify-self: center;
  }
  
  .nav-logo img {
    height: 50px;
  }
  
  /* BUTTON BASE */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 999px;
    border: 2px solid var(--white);
  
    background: var(--white);
    color: var(--orange);
  
    font-family: "Manrope", sans-serif;
    font-weight: 700;
  
    text-decoration: none;
    transition: 0.15s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  /* NAV BUTTON */
  .btn--nav {
    justify-self: end;
    font-size: 20px;
    padding: 10px 18px;
  }
  
  /* ============================
     HERO SECTION
     ============================ */
  .hero {
    position: relative;
    overflow: hidden;
  
    background: url("images/hero-bg.png") center/cover no-repeat;
    min-height: 760px;
  }
  
  /* HERO STAGE */
  .hero-inner {
    position: relative;
    min-height: 760px;
    padding: 90px 0 140px;
  }
  
  /* HERO IMAGE LAYER */
  .hero-art {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }
  
  .hero-art img {
    position: absolute;
    right: -40px;
    bottom: -30px;
  
    width: 940px;
    height: 541px;
    object-fit: contain;
  
    filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.35));
  }
  
  /* HERO TEXT */
  .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 640px;
  }
  
  .hero-copy h1 {
    font-size: 53px;
    font-weight: 400;
    margin: 0 0 18px;
  }
  
  .hero-copy p {
    font-size: 30px;
    line-height: 1.25;
    margin: 0;
  }
  
  /* ACCENT WORDS */
  .accent {
    color: var(--orange);
    font-weight: 400;
  }
  
  /* HERO BUTTON */
  .btn--hero {
    margin-top: 28px;
    font-size: 30px;
    padding: 14px 28px;
  }
  
  /* ============================
     ABOUT / PRODUCT SECTION
     ============================ */
  .about {
    background: #ffffff;
    color: var(--orange);
    padding: 90px 0;
  }
  
  .about-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 70px;
  }
  
  /* IMAGE */
  .about-media img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.18));
  }
  
  /* TEXT */
  .about-copy h2 {
    font-size: 53px;
    font-weight: 400;
    margin: 0 0 18px;
    color: var(--orange);
  }
  
  .about-copy p {
    font-size: 32px;
    font-weight: 400;
    line-height: 49.398px;
    margin: 0 0 28px;
    max-width: 560px;
  }
  
  /* ABOUT BUTTON */
  .about-btn {
    width: 215.977px;
    height: 53.994px;
  
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    background: var(--orange);
    color: var(--white);
  
    border-radius: 999px;
    border: none;
  
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    font-weight: 700;
  
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
  }
  
  .about-btn:hover {
    transform: translateY(-2px);
  }
  
  /* ============================
     RESPONSIVE: 900px ↓
     Screenshot 1 Style
     ============================ */
  @media (max-width: 900px) {
    .container {
      padding: 0 24px;
    }
  
    /* HERO TEXT SHRINK */
    .hero-copy h1 {
      font-size: 44px;
    }
  
    .hero-copy p {
      font-size: 24px;
      line-height: 1.3;
    }
  
    /* HERO IMAGE → Bottom Right */
    .hero-art img {
      width: 700px;
      right: -60px;
      bottom: -10px;
    }
  
    /* ABOUT STACKS */
    .about-inner {
      grid-template-columns: 1fr;
    }
  
    .about-media img {
      max-width: 520px;
      margin: 0 auto;
    }
  }
  
  /* ============================
     RESPONSIVE: 400px ↓
     Screenshot 2 Style
     ============================ */
  @media (max-width: 400px) {
    .navbar {
      padding: 0 16px;
    }
  
    /* Hide phone number */
    .nav-phone span {
      display: none;
    }
  
    .btn--nav {
      font-size: 16px;
      padding: 8px 14px;
    }
  
    /* HERO */
    .hero-copy h1 {
      font-size: 38px;
    }
  
    .hero-copy p {
      font-size: 22px;
    }
  
    /* HERO IMAGE CENTERED */
    .hero-art img {
      width: 520px;
      right: 50%;
      transform: translateX(50%);
      bottom: -40px;
    }
  
    /* ABOUT TEXT BIGGER */
    .about-copy h2 {
      font-size: 42px;
    }
  
    .about-copy p {
      font-size: 24px;
      line-height: 1.4;
    }
  
    .about-btn {
      font-size: 22px;
      width: 190px;
      height: 52px;
    }
  }
  