*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #001B44;
      --white:  #ffffff;
      --cream:  #F5F0E8;
      --navy-light: #001b44;
    }

    html, body {
      height: 100%;
      background: var(--navy);
      color: var(--white);
      font-family: 'Manrope', sans-serif;
      overflow-x: hidden;
    }

    /* ── Background texture & decorative blobs ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(201,168,76,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 90% 80%, rgba(255,255,255,0.04) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(0,42,107,0.6) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* Grain overlay */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.5;
    }

    /* ── Floating paw prints ── */
    .paws {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      overflow: hidden;
    }

    .paw {
      position: absolute;
      opacity: 0;
      animation: floatPaw linear infinite;
    }

    .paw svg { fill: rgba(201,168,76,0.12); }

    @keyframes floatPaw {
      0%   { transform: translateY(110vh) rotate(var(--rot)) scale(var(--sc)); opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 0.6; }
      100% { transform: translateY(-20vh)  rotate(calc(var(--rot) + 30deg)) scale(var(--sc)); opacity: 0; }
    }

    /* ── Layout ── */
    .wrapper {
      position: relative;
      z-index: 2;
      min-height: 100vh;
      display: grid;
      grid-template-rows: auto 1fr auto;
      padding: clamp(24px, 5vw, 56px);
    }

    /* ── Header ── */
    header {
      animation: fadeDown 1s ease both;
      justify-items: center;
      padding-bottom: 20px;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .logo-img {
      height: clamp(150px, 8vw, 72px);
      width: auto;
    }

    .brand-name {
      font-family: 'Noto Serif', serif;
      font-weight: 500;
      font-size: clamp(1.8rem, 2.5vw, 1.6rem);
      letter-spacing: 0.04em;
      color: var(--white);
    }

    .brand-name span {
      display: block;
      font-family: 'Manrope', sans-serif;
      font-weight: 200;
      font-size: 0.23em;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white);
      margin-top: 2px;
    }

    /* ── Main hero ── */
    main {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: clamp(10px, 8vh, 10px) 0;
      gap: clamp(20px, 4vh, 40px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: clamp(0.65rem, 1.5vw, 0.78rem);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--white);
      animation: fadeUp 1s 0.3s ease both;
    }

    .eyebrow::before, .eyebrow::after {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--white);
      opacity: 0.6;
    }

    h1 {
      font-family: 'Noto Serif', serif;
      font-weight: 300;
      font-size: clamp(2.8rem, 9vw, 7.5rem);
      line-height: 1.02;
      letter-spacing: -0.01em;
      color: var(--white);
      animation: fadeUp 1s 0.5s ease both;
      max-width: 20ch;
    }

    h1 em {
      font-style: italic;
      color: var(--white);
    }

    .tagline {
      font-family: 'Manrope', sans-serif;
      font-weight: 300;
      font-size: clamp(0.9rem, 2vw, 1.1rem);
      line-height: 1.7;
      color: rgba(255,255,255,0.65);
      max-width: 65ch;
      animation: fadeUp 1s 0.7s ease both;
    }

    /* ── Divider paw ── */
    .divider {
      display: flex;
      align-items: center;
      gap: 16px;
      width: min(360px, 80vw);
      animation: fadeUp 1s 0.85s ease both;
    }

    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
    }

    .divider svg { fill: var(--white); opacity: 0.7; flex-shrink: 0; }

    /* ── Products pill list ── */
    .products {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      max-width: 580px;
      animation: fadeUp 1s 1s ease both;
    }

    .pill {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(0.62rem, 1.3vw, 0.72rem);
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 6px 14px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 100px;
      color: rgba(255,255,255,0.6);
      transition: border-color 0.3s, color 0.3s, background 0.3s;
      cursor: default;
    }

    .pill:hover {
      border-color: var(--white);
      color: var(--white);
      background: rgba(201,168,76,0.06);
    }

    /* ── Custom orders badge ── */
    .custom-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 100px;
      font-family: 'Manrope', sans-serif;
      font-size: clamp(0.7rem, 1.4vw, 0.8rem);
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      animation: fadeUp 1s 1.1s ease both;
    }

    .custom-badge::before {
      content: '✦';
      font-size: 0.7em;
    }

    /* ── Notify form ── */
    .notify-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      width: 100%;
      animation: fadeUp 1s 1.2s ease both;
    }

    .notify-label {
      font-family: 'Manrope', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    .notify-form {
      display: flex;
      gap: 0;
      width: min(440px, 90vw);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 100px;
      overflow: hidden;
      background: rgba(255,255,255,0.04);
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .notify-form:focus-within {
      border-color: rgba(255, 255, 255, 0.5);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
    }

    .notify-form input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      padding: 14px 22px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.85rem;
      color: var(--white);
    }

    .notify-form input::placeholder { color: rgba(255,255,255,0.3); }

    .notify-form button {
      background: var(--white);
      border: none;
      padding: 14px 24px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy);
      cursor: pointer;
      border-radius: 0 100px 100px 0;
      transition: background 0.25s, transform 0.15s;
      white-space: nowrap;
    }

    .notify-form button:hover  { background: #ffffff; }
    .notify-form button:active { transform: scale(0.97); }

    .success-msg {
      display: none;
      font-family: 'Manrope', sans-serif;
      font-size: 0.82rem;
      color: var(--white);
      letter-spacing: 0.05em;
    }

    /* ── Socials ── */
    .socials {
      display: flex;
      align-items: center;
      gap: 8px;
      animation: fadeUp 1s 1.35s ease both;
    }

    .social-label {
      font-family: 'Manrope', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-right: 4px;
    }

    .social-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.25s;
      position: relative;
      overflow: hidden;
    }

    .social-btn svg { width: 18px; height: 18px; fill: currentColor; position: relative; z-index: 1; }

    .social-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--white);
      border-radius: 50%;
      transform: scale(0);
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    }

    .social-btn:hover { border-color: var(--white); color: var(--navy); transform: translateY(-3px); }
    .social-btn:hover::before { transform: scale(1); }

/* ── Footer ── */
footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 1s 1.5s ease both;
    padding: 40px;
  
}

.footer-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

.footer-note {
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

    /* ── Keyframes ── */
    @keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }

    /* ── Responsive ── */
    @media (max-width: 520px) {
      .brand-name { display: none; }
      footer { justify-content: center; text-align: center; }
      .footer-text { display: none; }
      .corner { width: 40px; height: 40px; }
    }

    /* ================================================
   RESPONSIVE — LARGE TABLET (≤1024px)
   ================================================ */
@media (max-width: 1024px) {
    .header-inner {
        padding: 0 28px;
    }

    .body-inner {
        padding: 0 28px;
        gap: 44px;
        grid-template-columns: 130px 1fr;
    }

    .page-hero {
        padding: 44px 28px 36px;
    }

    .footer-inner {
        padding: 40px 28px 36px;
        grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
        gap: 28px;
    }

    .section-dark {
        padding: 30px 32px 34px;
    }
}


/* ================================================
   RESPONSIVE — TABLET (≤768px)
   ================================================ */
@media (max-width: 768px) {

    /* Nav collapses */
    #nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-inner {
        padding: 0 20px;
    }

    /* Hero */
    .page-hero {
        padding: 36px 20px 28px;
    }

    .page-hero h1 {
        font-size: 40px;
    }

    .hero-sub br {
        display: none;
    }

    /* Body: stack sidebar above content */
    .body-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 20px;
    }

    /* Sidebar: horizontal scrolling TOC bar */
    .sidebar {
        position: static;
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        padding: 16px 0 20px;
        border-bottom: 1px solid var(--border);
        margin-bottom: 32px;
    }

    .sidebar-title {
        flex-shrink: 0;
        margin-bottom: 0;
        font-size: 10px;
    }

    .toc {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px 16px;
        margin-bottom: 0;
    }

    .toc-link {
        font-size: 12px;
        padding: 3px 0;
    }

    .effective-date {
        display: none;
    }

    /* Info cards */
    .info-cards {
        grid-template-columns: 1fr 1fr;
    }

    /* Section dark */
    .section-dark {
        padding: 28px 24px 32px;
        border-radius: 10px;
    }

    /* Inquiries */
    .inquiries-section {
        padding: 52px 0 60px;
    }

    .inquiries-title {
        font-size: 28px;
    }

    .inquiries-sub br {
        display: none;
    }

    /* Footer 2-col */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        padding: 36px 20px 32px;
        gap: 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* ================================================
   RESPONSIVE — MOBILE (≤480px)
   ================================================ */
@media (max-width: 480px) {
    .header-inner {
        padding: 0 16px;
    }

    .brand {
        font-size: 16px;
    }

    /* Hero */
    .page-hero {
        padding: 28px 16px 22px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .hero-sub {
        font-size: 13px;
    }

    /* Body */
    .body-inner {
        padding: 0 16px;
    }

    .sidebar {
        gap: 12px;
    }

    .toc {
        gap: 3px 12px;
    }

    /* Section headings */
    .section-num-wrap h2 {
        font-size: 20px;
    }

    .section-num {
        font-size: 22px;
    }

    /* Info cards: stack */
    .info-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Blockquote */
    .policy-quote {
        font-size: 14.5px;
    }

    /* Dark section */
    .section-dark {
        padding: 24px 20px 28px;
        border-radius: 10px;
    }

    /* Rights list */
    .rights-list li {
        font-size: 13px;
    }

    /* Inquiries */
    .inquiries-section {
        padding: 44px 0 52px;
    }

    .inquiries-title {
        font-size: 24px;
    }

    .inquiries-sub {
        font-size: 13px;
    }

    .btn-email {
        font-size: 12.5px;
        padding: 13px 24px;
    }

    /* Footer: fully stacked */
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 32px 16px 28px;
        gap: 20px;
    }

    .footer-brand {
        grid-column: auto;
    }
}