

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --navy:       #0e1f3b;
      --navy-light: #162d52;
      --navy-deep:  #08152a;
      --gold:       #b8965a;
      --gold-light: #d4af72;
      --gold-pale:  #f5ead8;
      --white:      #ffffff;
      --cream:      #fdfaf5;
      --muted:      rgba(255,255,255,0.5);
      --border:     rgba(14,31,59,0.1);
      --gold-border: rgba(184,150,90,0.25);
    }

    body {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      background: var(--cream);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* â”€â”€ Navigation â”€â”€ */
    .nav {
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5rem;
      height: 70px;
      border-bottom: 1px solid var(--gold-border);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      gap: 12px;
    }

    .nav-logo-img {
      height: 44px;
      width: 44px;
      object-fit: cover;
      border-radius: 50%;
      mix-blend-mode: lighten;
      filter: brightness(1.05);
    }

    .nav-logo-text {
      font-family: 'IM Fell English', serif;
      font-size: 18px;
      color: var(--gold-light);
      letter-spacing: 0.06em;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }

    .nav-links a {
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover,
    .nav-links a:focus { color: var(--gold-light); outline: none; }

    .nav-cta {
      color: var(--gold-light) !important;
      border-bottom: 1px solid rgba(212,175,114,0.4);
      padding-bottom: 2px;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1px;
      background: var(--gold-light);
      transition: transform 0.25s, opacity 0.25s;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* â”€â”€ Hero â”€â”€ */
    .hero {
      background: var(--navy);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      min-height: 460px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-lines {
      position: absolute; inset: 0;
      background-image: repeating-linear-gradient(
        90deg,
        transparent, transparent 60px,
        rgba(184,150,90,0.04) 60px, rgba(184,150,90,0.04) 61px
      );
      pointer-events: none;
    }

    .hero-left {
      padding: 4.5rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .hero-ornament {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1.5rem;
    }
    .hero-ornament::before,
    .hero-ornament::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(184,150,90,0.3);
      max-width: 32px;
    }
    .hero-ornament span {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.75;
    }

    .hero h1 {
      font-family: 'IM Fell English', serif;
      font-size: clamp(48px, 7vw, 72px);
      line-height: 0.9;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    .hero h1 em { font-style: italic; color: var(--gold-light); }

    .hero-divider { width: 48px; height: 1px; background: var(--gold); margin: 1.25rem 0; opacity: 0.5; }

    .hero-sub {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 14px;
      color: var(--muted);
      line-height: 2;
      max-width: 300px;
      margin-bottom: 2.25rem;
      letter-spacing: 0.03em;
    }

    .btn-gold {
      display: inline-block;
      border: 1px solid var(--gold);
      color: var(--gold-light);
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 13px 32px;
      text-decoration: none;
      cursor: pointer;
      background: transparent;
      transition: background 0.25s, color 0.25s;
      width: fit-content;
    }
    .btn-gold:hover, .btn-gold:focus { background: var(--gold); color: var(--navy); outline: none; }

    /* Hero right: real logo */
    .hero-right {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem 2rem;
      position: relative;
      z-index: 2;
    }

    .hero-logo-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .hero-logo-frame {
      padding: 8px;
      border: 1px solid rgba(184,150,90,0.3);
      background: rgba(255,255,255,0.04);
      position: relative;
      border-radius: 50%;
    }


    .hero-logo-img {
      width: 260px;
      height: 260px;
      object-fit: cover;
      display: block;
      border-radius: 50%;
      mix-blend-mode: lighten;
    }

    .hero-logo-sub {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 9px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* â”€â”€ Ticker â”€â”€ */
    .strip {
      background: var(--navy);
      padding: 0;
      display: flex;
      align-items: center;
      gap: 0;
    }
    .strip-line {
      flex: 1;
      height: 1px;
      background: var(--gold);
      opacity: 0.6;
      min-width: 40px;
    }
    .strip-ticker-wrap {
      overflow: hidden;
      white-space: nowrap;
      flex: 0 0 auto;
      max-width: 70%;
      padding: 10px 2rem;
      border-left: 1px solid rgba(184,150,90,0.3);
      border-right: 1px solid rgba(184,150,90,0.3);
    }
    .strip-inner {
      display: inline-block;
      animation: ticker 22s linear infinite;
      font-family: 'IM Fell English', serif;
      font-style: italic;
      font-size: 13px;
      color: var(--gold-light);
      letter-spacing: 0.08em;
    }
    @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .strip-inner { animation: none; }
    }
    .strip-sep { margin: 0 1.5rem; opacity: 0.4; }

    /* â”€â”€ Shared section â”€â”€ */
    .eyebrow {
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .eyebrow::after {
      content: '';
      display: inline-block;
      width: 24px; height: 1px;
      background: var(--gold);
      opacity: 0.5;
    }

    .section-title {
      font-family: 'IM Fell English', serif;
      font-size: clamp(26px, 4vw, 36px);
      color: var(--navy);
      margin-bottom: 2.5rem;
      line-height: 1.1;
    }
    .section-title em { font-style: italic; color: var(--gold); }

    /* â”€â”€ Categories â”€â”€ */
    .categories {
      padding: 4.5rem 2.5rem 2rem;
      background: var(--cream);
    }

    .cat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .cat-card {
      background: var(--white);
      padding: 2.25rem 2rem;
      cursor: pointer;
      transition: background 0.2s;
      position: relative;
      text-decoration: none;
      display: block;
    }
    .cat-card:hover, .cat-card:focus { background: var(--navy); outline: none; }
    .cat-icon { font-size: 28px; margin-bottom: 1rem; display: block; }

    .cat-name {
      font-family: 'IM Fell English', serif;
      font-size: 20px;
      color: var(--navy);
      margin-bottom: 0.4rem;
      transition: color 0.2s;
    }
    .cat-card:hover .cat-name,
    .cat-card:focus .cat-name { color: var(--gold-light); }

    .cat-desc {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 12px;
      letter-spacing: 0.05em;
      color: #999;
      transition: color 0.2s;
    }
    .cat-card:hover .cat-desc,
    .cat-card:focus .cat-desc { color: var(--muted); }

    .cat-arrow {
      position: absolute;
      bottom: 1.5rem; right: 1.75rem;
      font-size: 16px;
      color: var(--gold);
      opacity: 0;
      transition: opacity 0.2s;
    }
    .cat-card:hover .cat-arrow,
    .cat-card:focus .cat-arrow { opacity: 1; }

    /* â”€â”€ Products â”€â”€ */
    .products { padding: 0; background: var(--cream); }

    .products-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 2rem;
    }

    .link-subtle {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #aaa;
      text-decoration: none;
      border-bottom: 1px solid #ddd;
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }
    .link-subtle:hover, .link-subtle:focus { color: var(--gold); border-color: var(--gold); outline: none; }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .product-card {
      background: var(--white);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: border-color 0.2s, transform 0.2s;
      cursor: pointer;
      text-decoration: none;
      display: block;
    }
    .product-card:hover, .product-card:focus {
      border-color: var(--gold);
      transform: translateY(-3px);
      outline: none;
    }

    .product-img {
      aspect-ratio: 4 / 5;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 54px;
      position: relative;
    }

    .product-badge--download {
      background: var(--gold) !important;
      color: var(--navy) !important;
    }
    .product-badge {
      position: absolute; top: 12px; left: 12px;
      background: var(--navy);
      color: var(--gold-light);
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      font-size: 9px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 4px 10px;
    }

   .product-info {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(14,31,59,0.08);

  display: flex;
  flex-direction: column;
}
    .product-name {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--navy);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;

  min-height: 42px;
  margin-bottom: 10px;
}
    .product-cat {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #bbb;
      margin-bottom: 0.75rem;
    }
.product-price {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    color: var(--gold);
}

    /* â”€â”€ Story â”€â”€ */
    .story {
      background: var(--navy);
      padding: 5rem 2.5rem;
      display: grid;
      grid-template-columns: 1fr 1px 1fr;
      gap: 3rem;
      align-items: center;
    }

    .story-divider { background: rgba(184,150,90,0.2); align-self: stretch; }

    .story-left { padding-right: 1rem; }
    .story-quote {
      font-family: 'IM Fell English', serif;
      font-style: italic;
      font-size: clamp(20px, 3vw, 26px);
      color: var(--white);
      line-height: 1.5;
      margin: 1rem 0 1.5rem;
    }
    .story-quote em { color: var(--gold-light); }

    .story-text {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 13px;
      color: var(--muted);
      line-height: 2;
      letter-spacing: 0.03em;
    }

    .story-right {
      padding-left: 1rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .stat { display: flex; flex-direction: column; gap: 0.25rem; }
    .stat-num {
      font-family: 'IM Fell English', serif;
      font-size: 42px;
      color: var(--gold-light);
      line-height: 1;
    }
    .stat-label {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .stat-divider { height: 1px; background: rgba(184,150,90,0.15); }

    /* â”€â”€ Footer â”€â”€ */
    footer {
      background: var(--navy-deep);
      border-top: 1px solid rgba(184,150,90,0.2);
      padding: 1.75rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-logo-img {
      height: 36px;
      width: 36px;
      object-fit: cover;
      border-radius: 50%;
      mix-blend-mode: lighten;
      opacity: 0.85;
      transition: opacity 0.2s;
    }
    .footer-logo-img:hover { opacity: 1; }

    .footer-links {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover, .footer-links a:focus { color: var(--gold-light); outline: none; }

    .footer-copy {
      width: 100%;
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 10px;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.2);
      text-align: center;
      margin-top: 0.5rem;
    }

    /* â”€â”€ Scroll reveal â”€â”€ */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* â”€â”€ Responsive â”€â”€ */
    @media (max-width: 900px) {
      .story { grid-template-columns: 1fr; gap: 2rem; }
      .story-divider { display: none; }
      .story-left { padding-right: 0; }
      .story-right { padding-left: 0; flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
      .stat { flex: 1 1 120px; }
    }

    @media (max-width: 760px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .hero-left { padding: 3rem 1.5rem; }
      .cat-grid { grid-template-columns: 1fr 1fr; }
      .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .categories, .products { padding-left: 1.5rem; padding-right: 1.5rem; }
      .nav { padding: 0 1.5rem; }
      .nav-toggle { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.25rem;
        border-top: 1px solid var(--gold-border);
        border-bottom: 1px solid var(--gold-border);
      }
      .nav-links.open { display: flex; }
      .nav-logo-text { display: none; }
    }

    @media (max-width: 500px) {
      .product-grid { grid-template-columns: 1fr; }
      .cat-grid { grid-template-columns: 1fr; }
      .products-header { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
      footer { flex-direction: column; align-items: flex-start; }
      .story { padding: 3rem 1.5rem; }
    }


    .products-block {
      padding: 2.5rem 2.5rem 3rem;
      background: var(--cream);
    }
    .products-block--alt {
      background: var(--white);
      border-top: 1px solid var(--border);
    }
    .product-img--photo {
      padding: 0;
      overflow: hidden;
    }
    .product-img--photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform 0.35s ease;
    }
    .product-card:hover .product-img--photo img {
      transform: scale(1.04);
    }
    .product-img--more {
      background: var(--navy);
      flex-direction: column;
      gap: 0.75rem;
    }
    .more-icon {
      font-size: 32px;
      color: var(--gold-light);
    }
    .more-label {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
