  /* Rajdhani (self-hosted) - main typeface */
  @font-face {
    font-family: 'Rajdhani';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/rajdhani-500.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Rajdhani';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/rajdhani-600.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Rajdhani';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/rajdhani-700.woff2') format('woff2');
  }

  /* Poppins (self-hosted) - navbar + CTAs only */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/poppins-500.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/poppins-600.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/poppins-700.woff2') format('woff2');
  }

  :root {
    --orange: #FF8C1A;
    --orange-deep: #E07814;
    --orange-soft: #FFE6C9;
    --orange-mist: #FFF4E6;
    --peach: #FFDAB0;
    --ink: #1A1A1A;
    --ink-sub: #5C5048;
    --hair: #EFE7DC;
    --paper: #FFF9F0;
    --paper-2: #FFF4E6;
    --white: #FFFFFF;

    --nav-h: 72px;
    --pad-x: clamp(24px, 5vw, 64px);
    --max-w: 1240px;

    --t: 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }
  body {
    margin: 0; background: var(--paper);
    font-family: 'Rajdhani', system-ui, sans-serif;
    color: var(--ink); font-weight: 500;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; }
  :focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 2px; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

  /* ───── Nav ───── */
  .nav {
    position: sticky; top: 0; z-index: 50; height: var(--nav-h);
    font-family: 'Poppins', system-ui, sans-serif;
    background: rgba(255,249,240,0.88);
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
    border-bottom: 1px solid var(--hair);
  }
  .nav-inner {
    max-width: var(--max-w); margin: 0 auto; height: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 var(--pad-x);
  }
  .brand {
    display: flex; align-items: center; gap: 12px;
    font-weight: 700; letter-spacing: 0.14em; font-size: 13px;
  }
  .brand-logo { display: block; height: 48px; width: auto; }
  .nav-links { display: flex; gap: 36px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
  .nav-links a { color: var(--ink-sub); transition: color var(--t); }
  .nav-links a:hover { color: var(--orange-deep); }

  /* Hamburger toggle — hidden on desktop, shown on phones (see media queries) */
  .nav-toggle {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; padding: 0; margin-right: -8px;
    background: none; border: none; cursor: pointer;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px; border-radius: 2px;
    background: var(--ink);
    transition: transform var(--t), opacity var(--t);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* CTAs use Poppins (gentler than Rajdhani); rest of site stays Rajdhani */
  .btn, .btn-pill, .link { font-family: 'Poppins', system-ui, sans-serif; }

  /* ───── Sections ───── */
  section { padding: clamp(40px, 6vw, 72px) var(--pad-x); }
  .container { max-width: var(--max-w); margin: 0 auto; }
  .eyebrow {
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--orange-deep); font-weight: 700; margin: 0 0 32px;
  }
  .title {
    font-size: clamp(40px, 5.4vw, 64px);
    line-height: 1.02; margin: 0;
    font-weight: 700; letter-spacing: -0.015em;
  }
  .body {
    font-size: 17px; line-height: 1.7; color: var(--ink-sub);
    max-width: 540px; margin: 32px 0 0; font-weight: 500;
  }

  /* ───── Hero ───── */
  #home {
    padding: clamp(48px, 8vw, 112px) var(--pad-x) clamp(72px, 11vw, 144px);
    position: relative; overflow: hidden;
  }
  #home::before {
    content: ""; position: absolute; top: -10%; right: -8%;
    width: 56vw; height: 56vw; max-width: 720px; max-height: 720px;
    background: radial-gradient(circle at 50% 50%, var(--peach) 0%, var(--orange-soft) 30%, var(--paper) 65%);
    filter: blur(10px); opacity: 0.85; z-index: 0;
    pointer-events: none;
  }
  #home::after {
    content: ""; position: absolute; bottom: -20%; left: -10%;
    width: 40vw; height: 40vw; max-width: 540px; max-height: 540px;
    background: radial-gradient(circle at 50% 50%, var(--orange-mist) 0%, var(--paper) 70%);
    filter: blur(10px); z-index: 0; pointer-events: none;
  }
  .hero { max-width: 1000px; margin: 0 auto; text-align: left; position: relative; z-index: 1; }
  .hero h1 {
    font-size: clamp(64px, 11vw, 156px);
    line-height: 0.86;
    letter-spacing: -0.03em;
    font-weight: 700; margin: 0;
  }
  .hero h1 .fire { color: var(--orange); }
  .hero .sub {
    font-size: clamp(18px, 1.5vw, 21px);
    line-height: 1.55; color: var(--ink-sub);
    margin: 40px 0 0; max-width: 560px; font-weight: 500;
  }
  .hero .cta-row { margin-top: 56px; display: flex; gap: 28px; align-items: center; flex-wrap: nowrap; }
  .btn {
    display: inline-block;
    background: var(--orange); color: var(--ink);
    padding: 16px 34px; border-radius: 999px;
    font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700;
    white-space: nowrap;
    border: none; cursor: pointer;
    box-shadow: 0 8px 20px -6px rgba(255,140,26,0.4);
    transition: background var(--t), transform var(--t), box-shadow var(--t);
  }
  .btn:hover { background: var(--ink); color: var(--orange); transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(26,26,26,0.35); }
  .btn:active { transform: translateY(0); }
  .link {
    font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
    color: var(--ink-sub); padding: 6px 0;
    border-bottom: 1px solid var(--orange-soft);
    transition: color var(--t), border-color var(--t);
  }
  .link:hover { color: var(--orange-deep); border-bottom-color: var(--orange); }
  .hero-art {
    position: absolute;
    right: 0; bottom: 0;
    width: clamp(220px, 34vw, 500px);
    height: auto;
    z-index: 0;
    pointer-events: none;
  }

  /* ───── About ───── */
  #about { background: var(--white); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding-bottom: 0; }
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
  .img {
    display: flex; align-items: flex-end; padding: 18px;
    color: rgba(255,255,255,0.45); font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; font-weight: 700;
    overflow: hidden;
    border-radius: 2px;
  }
  .img.mascot {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: none;
    padding: 0;
    margin-top: 32px;
  }
  /* shorter art — landscape */
  .img.art {
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    background: none;
    padding: 0;
    border: none;
    margin: 0 auto;
  }

  /* ───── Our Vision ───── */
  #vision { background: var(--paper); padding-bottom: 0; }

  /* ───── Contact (sunfltd-pattern: centered, full-width form, pill submit) ───── */
  #contact {
    background:
      radial-gradient(circle at 80% 20%, var(--peach) 0%, rgba(255,218,176,0) 50%),
      radial-gradient(circle at 10% 90%, var(--orange-mist) 0%, rgba(255,244,230,0) 55%),
      var(--paper-2);
    border-top: 1px solid var(--hair);
  }
  .contact-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
  .contact-head .eyebrow { display: block; }
  .contact-head .title { margin: 0 0 24px; }
  .contact-head .intro {
    font-size: 17px; line-height: 1.65; color: var(--ink-sub);
    max-width: 540px; margin: 0 auto; font-weight: 500;
  }
  .contact-form { max-width: 880px; margin: 0 auto; }
  .field-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px;
    margin-bottom: 18px;
  }
  .contact-form .field { margin: 0; }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--hair);
    border-radius: 6px;
    padding: 18px 20px;
    font-family: inherit; font-size: 16px; font-weight: 500;
    color: var(--ink);
    transition: border-color var(--t), box-shadow var(--t);
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder { color: #a08d80; font-weight: 500; }
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none; border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255,140,26,0.18);
  }
  .contact-form textarea {
    width: 100%; min-height: 160px; resize: vertical;
    font-family: inherit; line-height: 1.55;
    margin-bottom: 32px;
  }
  .submit-row { display: flex; justify-content: center; }
  .btn-pill {
    background: var(--orange); color: var(--white);
    border: none; cursor: pointer;
    padding: 16px 56px; border-radius: 999px;
    font-family: inherit; font-size: 16px; font-weight: 600; letter-spacing: 0.05em;
    box-shadow: 0 10px 24px -8px rgba(255,140,26,0.5);
    transition: background var(--t), transform var(--t), box-shadow var(--t), color var(--t);
  }
  .btn-pill:hover { background: var(--ink); color: var(--orange); transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgba(26,26,26,0.35); }
  .btn-pill:active { transform: translateY(0); }
  .btn-pill:disabled { opacity: 0.7; cursor: progress; }
  .form-status {
    margin-top: 24px; text-align: center;
    font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--orange-deep); font-weight: 700;
    opacity: 0; transition: opacity var(--t);
  }
  .form-status.show { opacity: 1; }
  .form-status[data-state="error"] {
    color: #B23A1A;
  }
  .form-status[data-state="success"] {
    color: var(--orange-deep);
  }

  /* ───── Footer ───── */
  footer { background: var(--paper); border-top: 1px solid var(--hair); padding: 48px var(--pad-x) 36px; }
  .footer-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  }
  .footer-inner .brand { justify-self: start; }
  .footer-inner .footer-credit { justify-self: end; }
  .footer-policies { display: flex; justify-self: center; gap: 28px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; }
  .footer-policies a { color: var(--ink-sub); transition: color var(--t); }
  .footer-policies a:hover { color: var(--orange-deep); }
  .footer-credit { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-sub); font-weight: 600; }
  .footer-credit .tag { color: var(--orange-deep); }

  /* ───── Legal / policy pages (privacy, terms) ───── */
  #legal { background: var(--paper); }
  .legal { max-width: 760px; margin: 0 auto; }
  .legal-head {
    padding-bottom: clamp(28px, 4vw, 44px);
    margin-bottom: clamp(32px, 4vw, 48px);
    border-bottom: 1px solid var(--hair);
  }
  .legal-head .eyebrow { display: block; margin-bottom: 20px; }
  .legal-head h1 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.03; letter-spacing: -0.015em;
    font-weight: 700; margin: 0; color: var(--ink);
  }
  .legal-meta {
    margin: 20px 0 0;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-sub); font-weight: 600;
  }
  .legal-intro {
    font-size: 17px; line-height: 1.7; color: var(--ink-sub);
    margin: 26px 0 0; font-weight: 500;
  }

  .legal-body { font-size: 16px; line-height: 1.75; color: var(--ink-sub); font-weight: 500; }
  .legal-body h2 {
    font-size: clamp(21px, 2.4vw, 25px);
    line-height: 1.2; letter-spacing: -0.01em;
    color: var(--ink); font-weight: 700;
    margin: clamp(38px, 5vw, 52px) 0 0;
    scroll-margin-top: calc(var(--nav-h) + 16px);
  }
  .legal-body p { margin: 16px 0 0; }
  .legal-body h2 + p { margin-top: 16px; }
  .legal-body .sublabel { margin-top: 24px; color: var(--ink); font-weight: 600; }
  /* dense all-caps legal clauses (warranties, liability): ease the reading */
  .legal-body p.caps { font-size: 14px; letter-spacing: 0.005em; line-height: 1.7; }

  .legal-body ul { margin: 14px 0 0; padding: 0; list-style: none; }
  .legal-body .sublabel + ul { margin-top: 12px; }
  .legal-body li { position: relative; padding-left: 22px; margin: 11px 0 0; }
  .legal-body li::before {
    content: ""; position: absolute; left: 3px; top: 10px;
    width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  }

  .legal-body a {
    color: var(--orange-deep);
    border-bottom: 1px solid var(--orange-soft);
    transition: color var(--t), border-color var(--t);
    overflow-wrap: anywhere;
  }
  .legal-body a:hover { color: var(--ink); border-bottom-color: var(--orange); }

  .legal-contact { margin-top: 16px; line-height: 1.8; }
  .legal-back {
    display: inline-block; margin-top: clamp(44px, 6vw, 64px);
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    color: var(--ink-sub);
    border-bottom: 1px solid var(--orange-soft); padding-bottom: 4px;
    transition: color var(--t), border-color var(--t);
  }
  .legal-back:hover { color: var(--orange-deep); border-bottom-color: var(--orange); }

  @media (max-width: 880px) {
    .two-col { grid-template-columns: 1fr; gap: 48px; }
    .field-row { grid-template-columns: 1fr; gap: 14px; }
    .nav-links { gap: 20px; }
    .footer-inner { grid-template-columns: 1fr; justify-items: start; }
    .footer-inner .footer-policies,
    .footer-inner .footer-credit { justify-self: start; }
    #about .img.mascot {
      order: 1;
      width: 112%;
      max-width: none;
      margin-left: -6%;
      margin-top: 0;
    }
  }
  @media (max-width: 640px) {
    /* phones: nav links collapse into a hamburger dropdown */
    .nav-toggle { display: inline-flex; }
    .nav-links {
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; gap: 0;
      padding: 4px var(--pad-x) 12px;
      background: var(--paper);
      border-bottom: 1px solid var(--hair);
      box-shadow: 0 18px 30px -22px rgba(26,26,26,0.5);
      /* hidden until toggled open via .open */
      display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
      padding: 15px 2px; font-size: 13px; letter-spacing: 0.18em;
      border-bottom: 1px solid var(--hair);
    }
    .nav-links a:last-child { border-bottom: none; }

    /* on phones the hero art drops out of the corner and flows below the CTAs
       so it never overlaps them; the hero grows taller to fit it */
    #home { padding-bottom: 0; }
    .hero-art {
      position: static;
      display: block;
      width: 88%;
      max-width: 360px;
      height: auto;
      margin: 36px auto 0;
    }
    .img.art { max-width: 300px; }
  }
  @media (max-width: 520px) {
    .nav-inner { padding: 0 18px; }
    .hero .cta-row { gap: 16px; }
    .btn-pill { padding: 14px 36px; width: 100%; }
    .brand-logo { height: 30px; }
  }
