:root {
    --cream: #F5F1EA;
    --cream2: #EDE8DF;
    --white: #FFFFFF;
    --forest: #1B3A1A;
    --forest2: #2D5C2B;
    --moss: #4A7C3F;
    --gold: #C4933F;
    --gold-light: #E8C078;
    --gold-pale: #F5E4C0;
    --text: #1C1C1C;
    --muted: #7A7268;
    --border: #D8D0C0;
    --border2: #C4BAA8;
    --scale-light: rgba(196,147,63,0.08);
  }

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

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── SCALE PATTERN (reptile skin SVG bg) ─── */
  .scale-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='46'%3E%3Cellipse cx='20' cy='23' rx='18' ry='21' fill='none' stroke='rgba(196,147,63,0.12)' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: 40px 46px;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    height: 120px;
    background: rgba(245,241,234,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 14px;
    cursor: pointer; text-decoration: none;
  }

  .logo-hex {
    width: 102px; height: 102px;
    background-image: url("/images/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
  }

  /* Footer logo smaller than nav */
  footer .logo-hex {
    width: 64px; height: 64px;
  }

  /* (legacy CSS-S logo removed; using image now) */

  .logo-wordmark {
    display: flex; flex-direction: column; line-height: 1.1;
  }

  .logo-wordmark span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: 0.5px;
  }

  .logo-wordmark span:last-child {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    color: var(--gold);
  }

  .nav-links {
    display: flex; align-items: center; gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.8px; text-transform: uppercase;
    color: var(--muted); text-decoration: none;
    transition: color 0.2s; cursor: pointer;
  }

  .nav-links a:hover, .nav-links a.active { color: var(--forest); }

  .nav-cta {
    background: var(--forest) !important;
    color: var(--gold-light) !important;
    padding: 10px 26px;
    font-size: 12px !important;
    letter-spacing: 1.2px !important;
  }

  .nav-cta:hover { background: var(--forest2) !important; }

  /* ─── PAGES ─── */
  .page { display: none; padding-top: 120px; }
  .page.active { display: block; }

  /* ─── 3D TEXT UTILITY ─── */
  .text-3d {
    text-shadow:
      1px 1px 0 rgba(139,95,20,0.3),
      2px 2px 0 rgba(139,95,20,0.22),
      3px 3px 0 rgba(139,95,20,0.16),
      4px 4px 0 rgba(139,95,20,0.10),
      5px 5px 0 rgba(139,95,20,0.06),
      6px 6px 12px rgba(0,0,0,0.12);
  }

  .text-3d-forest {
    text-shadow:
      1px 1px 0 rgba(10,40,10,0.4),
      2px 2px 0 rgba(10,40,10,0.28),
      3px 3px 0 rgba(10,40,10,0.18),
      4px 4px 0 rgba(10,40,10,0.10),
      5px 5px 12px rgba(0,0,0,0.15);
  }

  /* ═══════════════ HOME ═══════════════ */

  /* HERO */
  .hero {
    min-height: calc(100vh - 68px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    background: var(--forest);
    background-image:
      linear-gradient(135deg, rgba(27,58,26,0.92) 0%, rgba(27,58,26,0.82) 50%, rgba(27,58,26,0.88) 100%),
      url("/images/hero-left-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 72px 120px;
    display: flex; flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 620px;
  }

  /* Reptile scale overlay on hero-left */
  .hero-left::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='58'%3E%3Cellipse cx='25' cy='29' rx='23' ry='27' fill='none' stroke='rgba(196,147,63,0.08)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 50px 58px;
    pointer-events: none;
    mix-blend-mode: overlay;
  }

  /* Decorative corner brackets on hero */
  .hero-left::after {
    content: '';
    position: absolute;
    top: 32px; left: 32px;
    width: 60px; height: 60px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    opacity: 0.5;
    pointer-events: none;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px; letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 28px;
    position: relative;
  }

  /* "For Who" target audience badge */
  .for-who-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px;
    background: rgba(196,147,63,0.12);
    border: 1px solid rgba(196,147,63,0.35);
    margin-bottom: 24px;
    border-radius: 2px;
  }

  .fw-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(196,147,63,0.2);
    animation: fwPulse 2.5s ease-in-out infinite;
    flex-shrink: 0;
  }

  @keyframes fwPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(196,147,63,0.2); }
    50%       { box-shadow: 0 0 0 7px rgba(196,147,63,0.08); }
  }

  .fw-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--cream);
  }

  .hero-eyebrow::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
    display: inline-block;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 0.92;
    color: var(--cream);
    letter-spacing: -2.5px;
    margin-bottom: 36px;
    position: relative;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-title .text-3d-forest {
    text-shadow:
      1px 1px 0 rgba(196,147,63,0.4),
      2px 2px 0 rgba(196,147,63,0.28),
      3px 3px 0 rgba(196,147,63,0.16),
      4px 4px 8px rgba(0,0,0,0.3);
  }

  .hero-desc {
    font-size: 16px; font-weight: 300;
    color: rgba(245,241,234,0.65);
    line-height: 1.75; max-width: 400px;
    margin-bottom: 48px; position: relative;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 20px;
    position: relative;
  }

  .btn-gold {
    background: var(--gold);
    color: var(--forest);
    padding: 16px 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    border: none; cursor: pointer;
    transition: all 0.2s;
    box-shadow: 3px 3px 0 rgba(139,95,20,0.4);
    text-decoration: none; display: inline-block;
  }

  .btn-gold:hover {
    background: var(--gold-light);
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 rgba(139,95,20,0.5);
  }

  .btn-text {
    color: rgba(245,241,234,0.6);
    font-size: 13px; font-weight: 400;
    display: flex; align-items: center; gap: 8px;
    cursor: pointer; transition: color 0.2s;
    background: none; border: none;
    text-decoration: none;
  }

  .btn-text:hover { color: var(--gold-light); }
  .btn-text::after { content: '→'; font-size: 16px; }

  /* Hero stats (bottom of left panel) */
  .hero-stats {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    border-top: 1px solid rgba(245,241,234,0.1);
  }

  /* ─── USP Highlight Banner ─── */
  .usp-highlight {
    display: flex; align-items: center; gap: 16px;
    background: rgba(196,147,63,0.12);
    border-left: 3px solid var(--gold);
    padding: 14px 20px;
    margin-top: 32px;
    max-width: 480px;
    position: relative;
    backdrop-filter: blur(4px);
  }

  .usp-highlight-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: rgba(196,147,63,0.18);
    border: 1px solid rgba(196,147,63,0.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light);
  }

  .usp-highlight-icon svg { width: 28px; height: 28px; }

  .usp-highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px; font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.3px;
    margin-bottom: 2px;
  }

  .usp-highlight-sub {
    font-size: 11px; font-weight: 300;
    color: rgba(245,241,234,0.62);
    line-height: 1.5;
  }

  .hero-stat {
    flex: 1;
    padding: 20px 28px;
    border-right: 1px solid rgba(245,241,234,0.1);
  }

  .hero-stat:last-child { border-right: none; }

  .hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--gold-light);
    letter-spacing: 1px;
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 10px; font-weight: 500;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: rgba(245,241,234,0.4); margin-top: 3px;
  }

  /* Hero right — large product image area */
  .hero-right {
    background: var(--cream2);
    position: relative; overflow: hidden;
    display: block;
  }

  .hero-right-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Gradient overlay for text readability if needed */
  .hero-right::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 120px;
    background: linear-gradient(to right, rgba(27,58,26,0.25), transparent);
    pointer-events: none;
    z-index: 2;
  }

  /* Floating badge on hero image */
  .hero-img-badge {
    position: absolute;
    bottom: 32px; right: 32px;
    background: rgba(245,241,234,0.92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold);
    padding: 14px 22px;
    z-index: 3;
    max-width: 260px;
    box-shadow: 3px 3px 0 rgba(27,58,26,0.15);
  }

  .hero-img-badge-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px; letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 6px;
  }

  .hero-img-badge-tag::before {
    content: ''; width: 5px; height: 5px;
    background: var(--moss); border-radius: 50%;
    display: inline-block;
  }

  .hero-img-badge-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700;
    color: var(--forest); line-height: 1.2;
  }

  .hero-img-badge-sub {
    font-size: 11px; color: var(--muted);
    margin-top: 3px;
  }

  /* ─── SECTIONS ─── */
  section { padding: 100px 64px; }

  /* Why Stellar Start - special themed section with background */
  .why-section {
    position: relative;
    overflow: hidden;
    background-color: var(--cream);
    background-image:
      linear-gradient(rgba(245,241,234,0.92), rgba(245,241,234,0.94)),
      url("/images/why-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* Scale pattern overlay for extra texture */
  .why-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='46'%3E%3Cellipse cx='20' cy='23' rx='18' ry='21' fill='none' stroke='rgba(196,147,63,0.08)' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: 40px 46px;
    pointer-events: none;
    z-index: 0;
  }

  /* Keep content above the decorations */
  .why-section > * { position: relative; z-index: 2; }

  /* Decorative reptile SVGs in Why section */
  .why-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
  }

  .why-deco-1 {
    top: 40px; right: 60px;
    width: 180px; height: 180px;
    opacity: 0.5;
    animation: floatSlow 9s ease-in-out infinite;
  }

  .why-deco-2 {
    bottom: 60px; left: 48px;
    width: 160px; height: 160px;
    opacity: 0.4;
    transform: rotate(-10deg);
    animation: floatSlow 11s ease-in-out infinite 1.5s;
  }

  .section-eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px; letter-spacing: 3px;
    color: var(--gold); margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
  }

  .section-eyebrow::before {
    content: '';
    width: 22px; height: 2px;
    background: var(--gold); display: inline-block;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px; font-weight: 900;
    line-height: 1.05; letter-spacing: -1px;
    color: var(--forest);
    margin-bottom: 20px;
  }

  .section-sub {
    font-size: 16px; font-weight: 300;
    color: var(--muted); max-width: 520px;
    line-height: 1.75;
  }

  /* ─── FEATURES GRID ─── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    margin-top: 60px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(27,58,26,0.08);
  }

  .feature-card {
    padding: 40px 32px;
    border-right: 1px solid var(--border);
    background: var(--white);
    transition: background 0.2s, transform 0.2s;
    position: relative; overflow: hidden;
  }

  .feature-card:last-child { border-right: none; }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .feature-card:hover::before { transform: scaleX(1); }
  .feature-card:hover { background: var(--cream); }

  .feature-icon-wrap {
    width: 52px; height: 52px;
    background: var(--forest);
    clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
  }

  .feature-icon-wrap svg {
    width: 22px; height: 22px;
    stroke: var(--gold); fill: none; stroke-width: 1.5;
  }

  .feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700;
    color: var(--forest); margin-bottom: 12px;
  }

  .feature-desc {
    font-size: 14px; font-weight: 300;
    color: var(--muted); line-height: 1.75;
  }

  /* ─── PRODUCT CATEGORIES ─── */
  .cat-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px; align-items: start;
    margin-top: 60px;
  }

  .cat-list { display: flex; flex-direction: column; }

  .cat-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
  }

  .cat-row:hover .cat-name { color: var(--moss); }
  .cat-row:hover .cat-arrow { transform: translateX(6px); }
  .cat-row:hover { border-color: var(--gold); }

  .cat-idx {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; color: var(--gold);
    letter-spacing: 1px; line-height: 1;
  }

  .cat-name {
    font-family: 'Playfair Display', serif;
    font-size: 21px; font-weight: 700;
    color: var(--forest); transition: color 0.2s;
  }

  .cat-sub {
    font-size: 12px; color: var(--muted);
    letter-spacing: 0.3px; margin-top: 3px;
  }

  .cat-arrow {
    font-size: 20px; color: var(--gold);
    transition: transform 0.2s;
  }

  /* Hero visual panel (right side of cat section) */
  .cat-visual {
    background: var(--forest);
    aspect-ratio: 3/4;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    position: relative; overflow: hidden;
  }

  .cat-visual::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='58'%3E%3Cellipse cx='25' cy='29' rx='23' ry='27' fill='none' stroke='rgba(196,147,63,0.13)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 50px 58px;
    pointer-events: none;
  }

  .cat-visual-title {
    font-family: 'Playfair Display', serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
    position: relative;
  }

  .cat-visual-stat {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px; letter-spacing: -1px;
    color: var(--cream); line-height: 1;
    position: relative;
  }

  .cat-visual-stat em {
    font-style: normal; color: var(--gold);
  }

  .cat-visual-desc {
    font-size: 12px; font-weight: 300;
    color: rgba(245,241,234,0.5); margin-top: 8px;
    line-height: 1.5; position: relative;
  }

  /* ─── SPEC TICKER ─── */
  .spec-ticker {
    background: var(--forest);
    padding: 18px 64px;
    display: flex; align-items: center; gap: 0;
    overflow: hidden;
    border-top: 1px solid rgba(196,147,63,0.2);
    border-bottom: 1px solid rgba(196,147,63,0.2);
  }

  .ticker-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px; letter-spacing: 2.5px;
    color: var(--gold); white-space: nowrap;
    flex-shrink: 0;
    padding-right: 32px;
    border-right: 1px solid rgba(196,147,63,0.3);
    margin-right: 32px;
  }

  .ticker-items {
    display: flex; gap: 32px; flex-wrap: wrap;
  }

  .ticker-item {
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(245,241,234,0.6);
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
  }

  .ticker-dot {
    width: 4px; height: 4px;
    background: var(--gold); border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─── CTA ─── */
  .cta-section {
    background-color: var(--gold-pale);
    background-image:
      linear-gradient(135deg, rgba(245,228,192,0.72) 0%, rgba(232,192,120,0.68) 100%),
      url("/images/cta-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--border2);
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
  }

  /* Scale pattern REMOVED — keep ::before empty so no circles */
  .cta-section::before { display: none; }

  .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px; font-weight: 900;
    color: var(--forest); letter-spacing: -1px;
    max-width: 480px; line-height: 1.1;
  }

  .cta-title em { font-style: italic; color: var(--gold); }

  .cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

  .btn-forest {
    background: var(--forest); color: var(--gold-light);
    padding: 16px 36px; font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    border: none; cursor: pointer; transition: all 0.2s;
    box-shadow: 3px 3px 0 rgba(10,40,10,0.25);
  }

  .btn-forest:hover {
    background: var(--forest2);
    transform: translate(-1px,-1px);
    box-shadow: 4px 4px 0 rgba(10,40,10,0.3);
  }

  .btn-outline {
    background: transparent; color: var(--forest);
    border: 1.5px solid var(--forest);
    padding: 16px 36px; font-size: 12px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    cursor: pointer; transition: all 0.2s;
  }

  .btn-outline:hover {
    background: var(--forest); color: var(--gold-light);
  }

  /* Reptile decorations on CTA */
  .cta-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
  }

  .cta-deco-left {
    bottom: -30px; left: 30px;
    width: 170px; height: 170px;
    opacity: 0.7;
    animation: floatSlow 8s ease-in-out infinite;
  }

  .cta-deco-right {
    top: -30px; right: 48%;
    width: 160px; height: 160px;
    opacity: 0.55;
    transform: rotate(15deg);
    animation: floatSlow 10s ease-in-out infinite 1s;
  }

  .cta-deco-small {
    top: 32px; left: 40%;
    width: 70px; height: 70px;
    opacity: 0.6;
    animation: floatSlow 12s ease-in-out infinite 2s;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--forest);
    padding: 64px 64px 40px;
    border-top: 3px solid var(--gold);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245,241,234,0.1);
  }

  .footer-brand-desc {
    font-size: 13px; font-weight: 300;
    color: rgba(245,241,234,0.5); line-height: 1.8;
    margin-top: 16px; max-width: 260px;
  }

  .footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px; letter-spacing: 2px;
    color: var(--gold); margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li {
    font-size: 13px; font-weight: 300;
    color: rgba(245,241,234,0.5);
    margin-bottom: 10px; cursor: pointer;
    transition: color 0.2s;
  }

  .footer-col ul li:hover { color: var(--gold-light); }

  .footer-bottom {
    display: flex; align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom-left {
    display: flex; flex-direction: column;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 12px; color: rgba(245,241,234,0.3);
    margin: 0;
  }

  .footer-tags {
    display: flex; gap: 10px;
  }

  /* ─── Footer Social Media ─── */
  .footer-social {
    display: flex; align-items: center; gap: 12px;
  }

  .social-link {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(196,147,63,0.1);
    border: 1px solid rgba(196,147,63,0.25);
    color: var(--gold);
    transition: all 0.2s;
    text-decoration: none;
  }

  .social-link:hover {
    background: var(--gold);
    color: var(--forest);
    transform: translateY(-2px);
  }

  .social-link svg {
    width: 16px; height: 16px;
  }

  .footer-tag {
    border: 1px solid rgba(196,147,63,0.25);
    padding: 4px 12px;
    font-size: 10px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: rgba(196,147,63,0.5);
  }

  /* ═══════════════ PRODUCTS PAGE ═══════════════ */
  .products-header {
    background-color: var(--forest);
    background-image:
      linear-gradient(135deg, rgba(27,58,26,0.85) 0%, rgba(27,58,26,0.78) 60%, rgba(27,58,26,0.88) 100%),
      url("/images/products-hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 64px 64px 0;
    position: relative; overflow: hidden;
  }

  /* Reptile decorations on products header */
  .products-header-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
  }

  .products-header-deco-1 {
    top: 20px; right: 80px;
    width: 140px; height: 140px;
    animation: floatSlow 8s ease-in-out infinite;
  }

  .products-header-deco-2 {
    top: 30px; right: 260px;
    width: 100px; height: 100px;
    opacity: 0.35;
    animation: floatSlow 11s ease-in-out infinite 1.5s;
  }

  .products-header::after {
    content: 'CATALOGUE';
    position: absolute; right: -20px; bottom: -30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 160px; letter-spacing: -4px;
    color: rgba(245,241,234,0.04);
    pointer-events: none;
  }

  .products-header-content {
    position: relative; z-index: 2; padding-bottom: 48px;
  }

  .products-filter-bar {
    display: flex; gap: 0;
    border-top: 1px solid rgba(196,147,63,0.2);
    position: relative; z-index: 2;
    overflow-x: auto;
  }

  .filter-btn {
    padding: 16px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: rgba(245,241,234,0.4);
    background: transparent;
    border: none; border-right: 1px solid rgba(196,147,63,0.15);
    cursor: pointer; transition: all 0.15s;
    white-space: nowrap;
  }

  .filter-btn:hover { color: var(--gold-light); background: rgba(196,147,63,0.06); }
  .filter-btn.active { color: var(--forest); background: var(--gold); }
  .filter-btn:last-child { border-right: none; }

  /* ═══════════════ PRODUCTS USP BAR ═══════════════ */
  .products-usp-bar {
    display: flex; align-items: center; gap: 20px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, #EFD99D 100%);
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid var(--border2);
    padding: 20px 64px;
    position: relative;
  }

  .products-usp-icon {
    width: 52px; height: 52px;
    background: var(--forest);
    border: 2px solid var(--gold);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light);
  }

  .products-usp-icon svg { width: 32px; height: 32px; }

  .products-usp-content {
    flex: 1;
  }

  .products-usp-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700;
    color: var(--forest);
    letter-spacing: -0.2px;
    margin-bottom: 3px;
  }

  .products-usp-desc {
    font-size: 12.5px; font-weight: 400;
    color: rgba(27,58,26,0.72);
    line-height: 1.55;
    max-width: 720px;
  }

  .products-usp-cta {
    flex-shrink: 0;
    background: var(--forest);
    color: var(--gold-light);
    padding: 10px 20px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none; cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .products-usp-cta:hover { background: var(--forest2); }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .product-card {
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s;
    position: relative; overflow: hidden;
  }

  .product-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
    transform: scaleX(0); transition: transform 0.3s;
    transform-origin: left;
  }

  .product-card:hover::before { transform: scaleX(1); }
  .product-card:hover { background: var(--cream); }

  .product-card:nth-child(3n) { border-right: none; }

  .product-img-area {
    background: var(--white);
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }

  .product-series-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--forest); color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px; letter-spacing: 1.5px;
    padding: 4px 10px;
  }

  .product-type-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(196,147,63,0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 9px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 3px 8px;
  }

  .product-body { padding: 24px 28px; }

  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    color: var(--forest); margin-bottom: 16px;
  }

  .product-spec-list {
    display: flex; flex-direction: column; gap: 6px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
  }

  .spec-row { display: flex; justify-content: space-between; align-items: baseline; }

  .spec-k {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.8px; text-transform: uppercase;
    color: var(--muted);
  }

  .spec-v {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px; letter-spacing: 0.5px;
    color: var(--forest);
    text-align: right; max-width: 65%;
    line-height: 1.2;
  }

  .product-cta {
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--moss);
    display: flex; align-items: center; gap: 6px;
    background: none; border: none;
    cursor: pointer; transition: color 0.2s;
    padding: 0;
  }

  .product-cta:hover { color: var(--gold); }
  .product-cta::after { content: '→'; }

  /* ─── MODAL ─── */
  .modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(27,58,26,0.7);
    z-index: 200; align-items: center; justify-content: center;
    padding: 20px;
  }

  .modal-overlay.open { display: flex; }

  .modal {
    background: var(--white);
    max-width: 1000px; width: 100%;
    max-height: 92vh; overflow-y: auto;
    display: grid; grid-template-columns: 1.2fr 1fr;
    border-top: 4px solid var(--gold);
  }

  .modal-img {
    background: var(--white);
    display: flex; flex-direction: column;
    padding: 24px; min-height: 460px;
    border-right: 1px solid var(--border);
    position: relative;
    gap: 16px;
  }

  /* Circles removed from modal image area */
  .modal-img-bg { display: none; }

  /* Main image display */
  .modal-main-img {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    min-height: 360px;
    background: var(--cream);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
  }

  .modal-main-img img {
    max-width: 100%; max-height: 100%;
    object-fit: contain; display: block;
  }

  /* Thumbnail strip */
  .modal-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .modal-thumb {
    flex-shrink: 0;
    width: 64px; height: 64px;
    background: var(--cream);
    border: 2px solid var(--border);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: border-color 0.15s, transform 0.15s;
    padding: 4px;
    box-sizing: border-box;
  }

  .modal-thumb:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  .modal-thumb.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
  }

  .modal-thumb img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
  }

  /* Hide thumbs when only one image */
  .modal-thumbs:empty { display: none; }

  /* ═══ COLLECTIBLES — Beetle Magnet Series Styling ═══ */
  .filter-btn-collectibles {
    position: relative;
  }
  .filter-new-dot {
    display: inline-block;
    background: var(--gold);
    color: var(--forest);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 9px;
    letter-spacing: 0.5px;
    padding: 1px 5px;
    margin-left: 4px;
    vertical-align: middle;
    border-radius: 2px;
  }

  /* Product card variant for beetle products */
  .product-card.is-collectible .product-img-area {
    background: linear-gradient(180deg, #FAF7F0 0%, #F2EBDD 100%);
  }
  .product-card.is-collectible .product-img-area img {
    object-fit: contain !important;
    padding: 12px !important;
  }
  .product-new-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--gold);
    color: var(--forest);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 4px 9px;
    box-shadow: 0 2px 8px rgba(196,147,63,0.35);
  }
  .product-scientific-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 12px;
    color: rgba(27,58,26,0.55);
    margin-top: -6px;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
  }
  .product-moq-tag {
    display: inline-block;
    background: rgba(196,147,63,0.12);
    border: 1px solid rgba(196,147,63,0.4);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    margin-bottom: 12px;
  }

  /* Modal — collectibles variant */
  .modal-scientific {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: rgba(27,58,26,0.55);
    margin-top: -16px;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
  }
  .modal-scientific:empty { display: none; margin: 0; }

  .modal-description {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(27,58,26,0.78);
    background: var(--cream);
    border-left: 3px solid var(--gold);
    padding: 14px 18px;
    margin-bottom: 18px;
    font-style: italic;
  }
  .modal-description:empty { display: none; }

  .modal-collectible-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
  }
  .modal-collectible-features:empty { display: none; margin: 0; }
  .feature-chip {
    background: var(--forest);
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 1.2px;
    padding: 5px 10px;
  }

  .modal-body { padding: 36px; }

  .modal-series-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px; letter-spacing: 2px;
    color: var(--gold); margin-bottom: 6px;
  }

  .modal-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 900;
    color: var(--forest); margin-bottom: 22px;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 0 rgba(10,40,10,0.12),
                 4px 4px 8px rgba(0,0,0,0.06);
  }

  .modal-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }

  .modal-table tr { border-bottom: 1px solid var(--border); }

  .modal-table td {
    padding: 10px 0; font-size: 13px;
  }

  .modal-table td:first-child { color: var(--muted); font-weight: 500; width: 44%; }

  .modal-table td:last-child {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px; letter-spacing: 0.5px;
    color: var(--forest);
  }

  .modal-note {
    font-size: 11px; color: var(--muted);
    line-height: 1.6; border-left: 3px solid var(--gold);
    padding-left: 12px; margin-bottom: 24px;
  }

  .color-picker { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }

  .cp-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); width: 80px; }

  .color-dot {
    width: 20px; height: 20px; cursor: pointer;
    border: 2px solid transparent; transition: border-color 0.2s;
  }

  .color-dot.on { border-color: var(--gold); }

  /* ═══════════════ ABOUT PAGE ═══════════════ */
  .about-hero {
    background: var(--cream2);
    min-height: 70vh; padding: 80px 64px;
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 80px; align-items: center;
    position: relative; overflow: hidden;
    border-bottom: 1px solid var(--border);
  }

  .about-bg-text {
    position: absolute; right: 0; bottom: -40px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 200px; letter-spacing: -6px;
    color: rgba(196,147,63,0.07);
    pointer-events: none;
    white-space: nowrap;
  }

  .about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px; font-weight: 900;
    line-height: 1.0; letter-spacing: -2px;
    color: var(--forest); margin-bottom: 24px;
  }

  .about-hero-title em { font-style: italic; color: var(--gold); }

  .about-hero-lead {
    font-size: 18px; font-weight: 300;
    color: var(--muted); line-height: 1.75;
  }

  .about-metrics {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--border); border: 1px solid var(--border);
    position: relative; z-index: 2;
  }

  .metric-cell {
    background: var(--white); padding: 32px 28px;
  }

  .metric-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px; letter-spacing: -2px;
    color: var(--forest); line-height: 1;
    text-shadow: 2px 2px 0 rgba(196,147,63,0.3), 4px 4px 0 rgba(196,147,63,0.15);
  }

  .metric-num em { font-style: normal; color: var(--gold); }

  .metric-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--muted); margin-top: 6px;
  }

  .values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border); margin-top: 60px;
    overflow: hidden;
  }

  .value-card {
    background: var(--white); padding: 44px 36px;
    transition: background 0.2s;
    position: relative; overflow: hidden;
  }

  .value-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
    transform: scaleX(0); transition: transform 0.3s;
    transform-origin: left;
  }

  .value-card:hover::after { transform: scaleX(1); }
  .value-card:hover { background: var(--cream); }

  .value-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px; letter-spacing: -2px;
    color: var(--gold); line-height: 1;
    margin-bottom: 16px;
  }

  .value-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px; font-weight: 700;
    color: var(--forest); margin-bottom: 12px;
  }

  .value-desc {
    font-size: 14px; font-weight: 300;
    color: var(--muted); line-height: 1.75;
  }

  .about-story-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }

  .story-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px; font-weight: 900;
    color: var(--forest); margin-bottom: 20px;
    line-height: 1.2; letter-spacing: -0.5px;
  }

  .story-text p {
    font-size: 15px; font-weight: 300;
    color: var(--muted); line-height: 1.85;
    margin-bottom: 16px;
  }

  .materials-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border); margin-top: 60px;
  }

  .material-card {
    background: var(--white); padding: 32px 24px;
  }

  .material-abbr {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px; letter-spacing: -1px;
    color: var(--gold); line-height: 1;
    margin-bottom: 12px;
    text-shadow: 2px 2px 0 rgba(196,147,63,0.25), 4px 4px 6px rgba(0,0,0,0.05);
  }

  .material-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700;
    color: var(--forest); margin-bottom: 8px;
  }

  .material-desc {
    font-size: 12px; font-weight: 300;
    color: var(--muted); line-height: 1.7;
  }

  /* ─── NEW ARRIVAL 2026 SECTION ─── */
  .new-arrival-section {
    position: relative;
    background: linear-gradient(135deg, #0F2510 0%, #1B3A1A 55%, #234526 100%);
    padding: 80px 64px;
    overflow: hidden;
    cursor: pointer;
    border-top: 1px solid rgba(196,147,63,0.25);
    border-bottom: 1px solid rgba(196,147,63,0.25);
  }
  .new-arrival-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(ellipse at 15% 30%, rgba(196,147,63,0.15) 0%, transparent 45%),
      radial-gradient(ellipse at 85% 70%, rgba(196,147,63,0.10) 0%, transparent 50%);
    pointer-events: none;
  }
  .new-arrival-bg-deco {
    position: absolute; inset: 0;
    color: #C4933F;
    pointer-events: none;
    overflow: hidden;
  }
  .na-deco {
    position: absolute;
    transition: transform 0.6s ease;
  }
  .na-deco-1 {
    top: 8%; left: 3%;
    width: 140px; height: 160px;
    transform: rotate(-12deg);
  }
  .na-deco-2 {
    bottom: 5%; right: 4%;
    width: 180px; height: 200px;
    transform: rotate(18deg);
  }
  .na-deco-3 {
    top: 50%; left: 48%;
    width: 110px; height: 130px;
    transform: translate(-50%, -50%) rotate(8deg);
    opacity: 0.5;
  }
  .new-arrival-section:hover .na-deco-1 { transform: rotate(-8deg) translateY(-4px); }
  .new-arrival-section:hover .na-deco-2 { transform: rotate(22deg) translateY(-4px); }

  .new-arrival-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .new-arrival-image { position: relative; }
  .na-image-frame {
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(180deg, #FAF7F0 0%, #EDE5D2 100%);
    border: 1px solid rgba(196,147,63,0.4);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(196,147,63,0.15);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .na-image-frame img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 32px;
    box-sizing: border-box;
    display: block;
  }
  .na-image-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
    color: #1B3A1A;
  }
  .na-fallback-caption {
    margin-top: 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    color: rgba(27,58,26,0.4);
  }
  .na-image-frame img[src=""],
  .na-image-frame img:not([src]) { display: none; }

  .na-image-tag {
    position: absolute;
    bottom: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--forest);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 2.5px;
    padding: 8px 22px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    white-space: nowrap;
  }

  .new-arrival-content { color: var(--cream); }
  .na-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--gold-light);
    background: rgba(196,147,63,0.08);
    border: 1px solid rgba(196,147,63,0.3);
    padding: 8px 18px;
    margin-bottom: 24px;
    text-transform: uppercase;
  }
  .na-pulse-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: naPulse 1.8s ease-in-out infinite;
  }
  @keyframes naPulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(196,147,63,0.6); }
    50%      { transform: scale(1.2); opacity: 0.85; box-shadow: 0 0 0 8px rgba(196,147,63,0); }
  }

  .na-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -1.5px;
    color: var(--cream);
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.18), 5px 5px 12px rgba(0,0,0,0.25);
  }
  .na-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .na-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,241,234,0.78);
    max-width: 560px;
    margin-bottom: 32px;
  }

  .na-features {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    padding-bottom: 8px;
  }
  .na-feature {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--gold);
    padding-left: 14px;
  }
  .na-feature-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 1px;
  }
  .na-feature-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245,241,234,0.55);
    margin-top: 4px;
  }

  .na-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--forest);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 2.5px;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-transform: uppercase;
  }
  .na-cta:hover {
    background: #DBA84E;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(196,147,63,0.35);
  }
  .na-cta-arrow {
    display: inline-block;
    transition: transform 0.25s;
  }
  .na-cta:hover .na-cta-arrow { transform: translateX(4px); }

  /* ─── SCALE DIVIDER ─── */
  .scale-divider {
    height: 48px;
    background: var(--forest);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='58'%3E%3Cellipse cx='25' cy='29' rx='23' ry='27' fill='none' stroke='rgba(196,147,63,0.2)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 50px 58px;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
  }

  /* ─── ANIMATE IN ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .page.active .hero-left > * {
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
  }

  .page.active .hero-eyebrow { animation-delay: 0.05s; }
  .page.active .hero-title   { animation-delay: 0.15s; }
  .page.active .hero-desc    { animation-delay: 0.25s; }
  .page.active .hero-actions { animation-delay: 0.35s; }
  .page.active .usp-highlight { animation-delay: 0.45s; }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--cream); }
  ::-webkit-scrollbar-thumb { background: var(--border2); }
  ::-webkit-scrollbar-thumb:hover { background: var(--gold); }

  /* ═══════════════ ARTICLE MODAL ═══════════════ */
  .article-modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(27,58,26,0.75);
    z-index: 300;
    align-items: flex-start; justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
  }

  .article-modal-overlay.open { display: flex; }

  .article-modal {
    background: var(--white);
    max-width: 820px; width: 100%;
    border-top: 4px solid var(--gold);
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
    position: relative;
  }

  .article-modal-header {
    display: flex; justify-content: flex-end;
    padding: 14px 20px 0;
    position: absolute; top: 0; right: 0; z-index: 2;
  }

  .article-close {
    background: var(--forest); color: var(--gold-light);
    border: none; cursor: pointer;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 8px 16px;
    transition: background 0.2s;
  }

  .article-close:hover { background: var(--forest2); }

  .article-modal-body { padding: 40px 52px 52px; }

  .article-cat {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px; letter-spacing: 2.5px;
    color: var(--gold); margin-bottom: 14px;
    text-transform: uppercase;
  }

  .article-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 900;
    color: var(--forest); line-height: 1.15;
    letter-spacing: -0.8px; margin-bottom: 14px;
  }

  .article-date {
    font-size: 12px; font-weight: 500;
    color: var(--muted); letter-spacing: 0.3px;
  }

  .article-divider {
    height: 1px; background: var(--border);
    margin: 24px 0;
  }

  .article-text { font-size: 15px; font-weight: 300; color: #3a3530; line-height: 1.9; }
  .article-text h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--forest); margin: 36px 0 14px; letter-spacing: -0.3px; }
  .article-text h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--forest); margin: 28px 0 10px; }
  .article-text p { margin-bottom: 18px; }
  .article-text strong { color: var(--forest); font-weight: 600; }
  .article-text em { font-style: italic; }
  .article-text ul, .article-text ol { padding-left: 24px; margin-bottom: 18px; }
  .article-text li { margin-bottom: 8px; }
  .article-text .checklist { list-style: none; padding: 0; }
  .article-text .checklist li { padding-left: 28px; position: relative; margin-bottom: 10px; }
  .article-text .checklist li::before { content: '☐'; position: absolute; left: 0; color: var(--gold); font-size: 16px; }
  .article-text .tip-box { background: var(--gold-pale); border-left: 3px solid var(--gold); padding: 16px 20px; margin: 20px 0; font-style: italic; font-size: 14px; color: var(--forest); }

  /* Image areas — simple white background, no shimmer/fade */
  .product-img-area {
    background: var(--white);
  }

  .gallery-item-img {
    background: var(--white);
  }

  /* ═══════════════ MODULAR SHOWCASE (About page) ═══════════════ */
  .modular-showcase {
    background: var(--white);
    padding: 100px 64px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
  }

  .modular-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.55;
  }

  .modular-deco-1 {
    top: 32px; right: 40px;
    width: 130px; height: 130px;
    animation: floatSlow 9s ease-in-out infinite;
  }

  .modular-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative; z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
  }

  .modular-bullets {
    display: flex; flex-direction: column;
    gap: 14px; margin-top: 32px;
  }

  .modular-bullet {
    display: flex; gap: 14px;
    font-size: 13.5px; font-weight: 300;
    color: var(--muted); line-height: 1.7;
  }

  .modular-bullet strong {
    color: var(--forest); font-weight: 600;
  }

  .modular-bullet-dot {
    flex-shrink: 0;
    width: 8px; height: 8px;
    background: var(--gold);
    margin-top: 8px;
    transform: rotate(45deg);
  }

  /* Visual demo */
  .modular-visual {
    display: flex; flex-direction: column;
    align-items: center; gap: 20px;
  }

  /* Real image wrapper for modular section */
  .modular-img-wrap {
    width: 100%;
    position: relative;
  }

  .modular-img-wrap img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    display: block;
    box-shadow: 0 16px 48px rgba(27,58,26,0.15), 0 4px 12px rgba(27,58,26,0.08);
    border: 1px solid var(--border);
  }

  .modular-rack {
    width: 260px;
    background: var(--forest);
    padding: 12px 10px 0;
    position: relative;
    box-shadow: 0 16px 48px rgba(27,58,26,0.25),
                0 4px 12px rgba(27,58,26,0.15);
    border: 2px solid var(--forest2);
  }

  .modular-rack-top {
    height: 3px; background: var(--gold);
    margin: 0 -2px 10px; position: absolute;
    left: 0; right: 0; top: 0;
  }

  .modular-tier {
    display: grid; gap: 4px;
    margin-bottom: 6px;
    position: relative;
  }

  .modular-tier.full {
    grid-template-columns: 1fr;
  }

  .modular-tier.dual {
    grid-template-columns: 1fr 1fr;
  }

  .modular-tier.triple {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .modular-tier > span {
    background: var(--cream);
    border-top: 2px solid var(--gold);
    height: 34px;
    display: block;
    position: relative;
    box-shadow: inset 0 -1px 0 rgba(196,147,63,0.3);
  }

  .modular-tier.full > span { height: 44px; }

  .modular-tier .tier-label {
    position: absolute;
    bottom: 4px; left: 8px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--forest2);
    background: none; border-top: none;
    height: auto; display: inline-block;
    box-shadow: none;
  }

  .modular-casters {
    display: flex; justify-content: space-between;
    padding: 8px 12px 0;
    margin: 0 -10px -4px;
  }

  .modular-casters span {
    width: 16px; height: 16px;
    background: var(--forest2);
    border: 2px solid var(--gold);
    border-radius: 50%;
  }

  .modular-caption {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px; letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
  }

  /* ═══════════════ NEWS PAGE ═══════════════ */
  .news-hero {
    background: var(--forest);
    background-image: linear-gradient(rgba(27,58,26,0.9), rgba(27,58,26,0.92)), url("/images/why-bg.jpg");
    background-size: cover; background-position: center;
    padding: 72px 64px 60px;
    position: relative; overflow: hidden;
    border-bottom: 3px solid var(--gold);
  }

  .news-tab {
    padding: 16px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--muted); background: transparent;
    border: none; border-right: 1px solid var(--border);
    cursor: pointer; transition: all 0.15s; white-space: nowrap;
  }
  .news-tab:hover { color: var(--forest); background: var(--cream); }
  .news-tab.active { color: var(--forest); background: var(--gold); font-weight: 700; }
  .news-tab:last-child { border-right: none; }

  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .news-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
  }
  .news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,58,26,0.10); border-color: var(--gold); }

  .news-card-img {
    aspect-ratio: 16/9;
    background: var(--cream2);
    position: relative; overflow: hidden;
  }
  .news-card-img img { width: 100%; height: 100%; object-fit: cover; }

  .news-card-cat {
    position: absolute; top: 14px; left: 14px;
    background: var(--forest); color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px; letter-spacing: 1.5px;
    padding: 4px 10px;
  }

  .news-card-body { padding: 24px 26px 28px; }

  .news-card-date {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.5px; color: var(--muted);
    margin-bottom: 10px; text-transform: uppercase;
  }

  .news-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700;
    color: var(--forest); line-height: 1.3;
    margin-bottom: 12px; letter-spacing: -0.3px;
  }

  .news-card-excerpt {
    font-size: 13px; font-weight: 300;
    color: var(--muted); line-height: 1.75;
    margin-bottom: 18px;
  }

  .news-card-read {
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--moss);
  }

  .news-empty {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 80px 40px; text-align: center;
    border: 1px dashed var(--border2);
    background: var(--white);
  }

  .news-subscribe {
    background: var(--forest);
    padding: 64px 64px;
    border-top: 3px solid var(--gold);
    position: relative; overflow: hidden;
  }

  .news-subscribe::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='58'%3E%3Cellipse cx='25' cy='29' rx='23' ry='27' fill='none' stroke='rgba(196,147,63,0.08)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 50px 58px;
    pointer-events: none;
  }

  .news-subscribe-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 48px;
    position: relative; z-index: 2;
  }

  .news-subscribe-form {
    display: flex; gap: 12px; flex-shrink: 0;
  }

  .news-subscribe-input {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; padding: 14px 20px;
    background: rgba(245,241,234,0.1);
    border: 1px solid rgba(196,147,63,0.4);
    color: var(--cream); outline: none; width: 260px;
  }
  .news-subscribe-input::placeholder { color: rgba(245,241,234,0.35); }
  .news-subscribe-input:focus { border-color: var(--gold); }

  /* ═══════════════ PRIVACY PAGE ═══════════════ */
  .privacy-hero {
    background: var(--forest);
    padding: 64px 64px 52px;
    position: relative; overflow: hidden;
    border-bottom: 3px solid var(--gold);
  }

  #page-privacy section.privacy-section {
    padding: 80px 64px;
    background: var(--white);
  }

  .privacy-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
  }

  .privacy-text {
    max-width: 760px;
  }

  .privacy-aside {
    position: sticky;
    top: 100px;
  }

  .privacy-vi-wrap {
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(27,58,26,0.08);
    overflow: hidden;
  }

  .privacy-vi-wrap img {
    width: 100%;
    display: block;
    height: auto;
  }

  .privacy-block {
    max-width: 820px;
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--border);
  }
  .privacy-block:last-child { border-bottom: none; margin-bottom: 0; }

  .privacy-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    color: var(--forest); margin-bottom: 14px; letter-spacing: -0.3px;
  }

  .privacy-block p {
    font-size: 14px; font-weight: 300;
    color: var(--muted); line-height: 1.85; margin-bottom: 12px;
  }
  .privacy-block p:last-child { margin-bottom: 0; }

  .privacy-block ul { list-style: none; padding: 0; margin: 12px 0; }

  .privacy-block ul li {
    font-size: 14px; font-weight: 300;
    color: var(--muted); line-height: 1.8;
    padding-left: 20px; position: relative; margin-bottom: 6px;
  }
  .privacy-block ul li::before {
    content: '▸'; position: absolute; left: 0;
    color: var(--gold); font-size: 11px; top: 4px;
  }
  .privacy-block strong { color: var(--forest); font-weight: 600; }

  .privacy-contact-card {
    margin-top: 16px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    padding: 20px 24px;
    font-size: 14px; line-height: 2; color: var(--muted);
  }
  .privacy-contact-card a { color: var(--moss); text-decoration: none; }
  .privacy-contact-card a:hover { text-decoration: underline; }

  /* ═══════════════ GALLERY PAGE ═══════════════ */
      url("/images/gallery-hero-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 88px 64px 72px;
    position: relative; overflow: hidden;
    border-bottom: 3px solid var(--gold);
  }

  .gallery-hero::before { display: none; }

  .gallery-hero-bg {
    position: absolute; right: -10px; bottom: -40px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 180px; letter-spacing: -5px;
    color: rgba(196,147,63,0.06);
    pointer-events: none; white-space: nowrap;
  }

  .gallery-filter-bar {
    display: flex;
    border-top: 1px solid rgba(196,147,63,0.18);
    margin-top: 40px;
    position: relative;
    overflow-x: auto;
  }

  .gallery-filter-btn {
    padding: 16px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: rgba(245,241,234,0.4);
    background: transparent;
    border: none; border-right: 1px solid rgba(196,147,63,0.15);
    cursor: pointer; transition: all 0.15s;
    white-space: nowrap;
  }

  .gallery-filter-btn:hover { color: var(--gold-light); background: rgba(196,147,63,0.06); }
  .gallery-filter-btn.active { color: var(--forest); background: var(--gold); }
  .gallery-filter-btn:last-child { border-right: none; }

  /* Masonry-style grid */
  .gallery-grid {
    padding: 60px 64px 80px;
    background: var(--cream);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .gallery-item {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .gallery-item.tall { grid-row: span 2; }

  .gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(27,58,26,0.12);
  }

  .gallery-item-img {
    width: 100%;
    height: 280px;
    background: var(--cream2);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .gallery-item.tall .gallery-item-img {
    height: 584px;
  }

  .gallery-item-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
  }

  .gallery-item:hover .gallery-item-img img {
    transform: scale(1.05);
  }

  .gallery-placeholder {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--muted);
    padding: 32px;
    text-align: center;
  }

  .gallery-placeholder svg {
    width: 48px; height: 48px;
    stroke: var(--gold); fill: none;
    stroke-width: 1.2;
    margin-bottom: 12px;
  }

  .gallery-placeholder-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px; letter-spacing: 1.5px;
    color: var(--gold);
  }

  .gallery-placeholder-sub {
    font-size: 11px; color: var(--muted);
    margin-top: 4px; font-style: italic;
  }

  .gallery-item-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(27,58,26,0.85);
    backdrop-filter: blur(6px);
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px; letter-spacing: 1.5px;
    padding: 4px 10px;
  }

  .gallery-item-body {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
  }

  .gallery-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700;
    color: var(--forest); margin-bottom: 4px;
    letter-spacing: -0.3px;
  }

  .gallery-item-desc {
    font-size: 12px; color: var(--muted);
    line-height: 1.5;
  }

  /* Gallery intro blurb */
  .gallery-intro {
    background: var(--white);
    padding: 64px 64px 40px;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .gallery-intro-text {
    font-size: 15px; color: var(--muted);
    line-height: 1.8; font-weight: 300;
  }

  .gallery-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .gi-stat {
    background: var(--cream);
    padding: 24px 20px;
  }

  .gi-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: var(--forest);
    letter-spacing: -1px;
    line-height: 1;
    text-shadow: 2px 2px 0 rgba(196,147,63,0.25);
  }

  .gi-stat-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--muted); margin-top: 6px;
  }

  /* ═══════════════ GALLERY PAGE ═══════════════ */
  .gallery-hero {
    background: var(--forest);
    background-image:
      linear-gradient(rgba(27,58,26,0.88), rgba(27,58,26,0.92)),
      url("/images/gallery-hero-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 72px 64px 60px;
    position: relative; overflow: hidden;
    border-bottom: 3px solid var(--gold);
  }

  .gallery-hero::before { display: none; }

  .gallery-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.55;
    z-index: 1;
  }
  .gallery-deco-1 { top: 50px; right: 80px; width: 130px; height: 130px; transform: rotate(-10deg); animation: floatSlow 7s ease-in-out infinite; }
  .gallery-deco-2 { bottom: 20px; right: 280px; width: 120px; height: 120px; animation: floatSlow 9s ease-in-out infinite 1.5s; }

  .gallery-tab {
    padding: 18px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--muted);
    background: transparent;
    border: none;
    border-right: 1px solid var(--border);
    cursor: pointer; transition: all 0.15s;
    white-space: nowrap;
  }

  .gallery-tab:hover { color: var(--forest); background: var(--cream); }
  .gallery-tab.active { color: var(--forest); background: var(--gold); font-weight: 700; }
  .gallery-tab:last-child { border-right: none; }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gallery-item {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }

  .gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27,58,26,0.12);
    border-color: var(--gold);
  }

  .gallery-item.tall { grid-row: span 2; }

  .gallery-item-img {
    aspect-ratio: 4/3;
    background: var(--cream2);
    position: relative;
    overflow: hidden;
  }

  .gallery-item.tall .gallery-item-img { aspect-ratio: 2/3; }

  .gallery-item-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }

  .gallery-item:hover .gallery-item-img img { transform: scale(1.05); }

  .gallery-item-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--forest); color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px; letter-spacing: 1.5px;
    padding: 4px 10px;
    z-index: 2;
  }

  .gallery-item-body {
    padding: 18px 22px;
  }

  .gallery-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700;
    color: var(--forest); margin-bottom: 6px;
  }

  .gallery-item-desc {
    font-size: 12px; font-weight: 300;
    color: var(--muted); line-height: 1.5;
  }

  /* Placeholder when image fails to load */
  .gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--cream2) 0%, var(--cream) 100%);
    background-image:
      linear-gradient(135deg, rgba(237,232,223,0.8), rgba(245,241,234,0.9)),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='46'%3E%3Cellipse cx='20' cy='23' rx='18' ry='21' fill='none' stroke='rgba(196,147,63,0.2)' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: cover, 40px 46px;
  }

  .gallery-placeholder svg {
    width: 60px; height: 60px;
    stroke: var(--gold);
    fill: none; stroke-width: 1.5;
    stroke-linecap: round;
    margin-bottom: 14px;
  }

  .gallery-placeholder svg circle { fill: var(--gold); stroke: none; }

  .gallery-placeholder-text {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700;
    color: var(--forest);
    margin-bottom: 4px;
  }

  .gallery-placeholder-sub {
    font-size: 11px; color: var(--muted);
    letter-spacing: 0.3px;
  }

  .contact-hero {
    background: var(--forest);
    background-image:
      linear-gradient(rgba(27,58,26,0.78), rgba(27,58,26,0.82)),
      url("/images/contact-hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 72px 64px 60px;
    position: relative; overflow: hidden;
    border-bottom: 3px solid var(--gold);
  }

  /* Circles removed */
  .contact-hero::before { display: none; }

  .contact-hero-bg {
    position: absolute; right: -10px; bottom: -30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 180px; letter-spacing: -5px;
    color: rgba(196,147,63,0.06);
    pointer-events: none; white-space: nowrap;
  }

  .contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px; font-weight: 900;
    line-height: 1.0; letter-spacing: -2px;
    color: var(--cream); margin-bottom: 16px;
    position: relative;
  }

  .contact-hero h1 em { font-style: italic; color: var(--gold-light); }

  .contact-hero p {
    font-size: 16px; font-weight: 300;
    color: rgba(245,241,234,0.55);
    max-width: 520px; line-height: 1.75;
    position: relative;
  }

  /* Decorative reptile SVGs */
  .deco-reptile {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
  }
  .deco-r1 { top: 60px; right: 60px; width: 110px; height: 110px; transform: rotate(-15deg); animation: floatSlow 6s ease-in-out infinite; }
  .deco-r2 { top: 180px; right: 240px; width: 90px; height: 90px; transform: rotate(20deg); animation: floatSlow 8s ease-in-out infinite 1s; }
  .deco-r3 { bottom: 40px; right: 480px; width: 130px; height: 130px; opacity: 0.5; animation: floatSlow 10s ease-in-out infinite 2s; }

  @keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50%       { transform: translateY(-10px) rotate(var(--r, 0deg)); }
  }

  .deco-r1 { --r: -15deg; }
  .deco-r2 { --r: 20deg; }
  .deco-r3 { --r: 0deg; }

  /* Contact body grid */
  .contact-body {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    min-height: 600px;
    border-bottom: 1px solid var(--border);
  }

  /* Form side */
  .contact-form-wrap {
    padding: 64px 64px;
    background: var(--white);
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  /* Subtle scale pattern bottom-right of form */
  .contact-form-wrap::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='35'%3E%3Cellipse cx='15' cy='17' rx='13' ry='16' fill='none' stroke='rgba(196,147,63,0.12)' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: 30px 35px;
    pointer-events: none;
  }

  /* Small lizard icon in form title */
  .form-title-wrap {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 6px;
  }

  .form-title-wrap svg {
    width: 36px; height: 36px;
    flex-shrink: 0;
  }

  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 900;
    color: var(--forest); margin-bottom: 6px;
    letter-spacing: -0.5px;
  }

  .form-sub {
    font-size: 13px; font-weight: 300;
    color: var(--muted); margin-bottom: 36px;
    line-height: 1.6;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    display: flex; flex-direction: column;
    gap: 7px; margin-bottom: 18px;
  }

  .form-group.full { grid-column: 1 / -1; }

  .form-label {
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--forest);
  }

  .form-input, .form-select, .form-textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 400;
    color: var(--text);
    background: var(--cream);
    border: 1.5px solid var(--border2);
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    appearance: none;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
    background: var(--white);
  }

  .form-input::placeholder, .form-textarea::placeholder {
    color: var(--muted); font-weight: 300;
  }

  .form-textarea {
    resize: vertical; min-height: 120px;
    line-height: 1.6;
  }

  .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%237A7268' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
  }

  .form-select option { background: var(--white); }

  /* Product interest pre-fill tag */
  .prefill-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold-pale);
    border: 1px solid var(--gold);
    padding: 6px 14px; margin-bottom: 20px;
    font-size: 12px; font-weight: 600;
    color: var(--forest);
  }

  .prefill-tag button {
    background: none; border: none; cursor: pointer;
    color: var(--gold); font-size: 14px; padding: 0;
    line-height: 1;
  }

  .btn-submit {
    width: 100%;
    background: var(--forest); color: var(--gold-light);
    padding: 17px 36px; font-size: 13px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    border: none; cursor: pointer; transition: all 0.2s;
    box-shadow: 3px 3px 0 rgba(10,40,10,0.25);
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }

  .btn-submit:hover {
    background: var(--forest2);
    transform: translate(-1px,-1px);
    box-shadow: 4px 4px 0 rgba(10,40,10,0.3);
  }

  .form-note {
    font-size: 11px; color: var(--muted);
    margin-top: 14px; text-align: center;
    line-height: 1.5;
  }

  /* Success state */
  .form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
  }

  .form-success.show { display: block; }

  .success-icon {
    width: 72px; height: 72px;
    background: var(--forest);
    clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
  }

  .success-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 900;
    color: var(--forest); margin-bottom: 12px;
  }

  .success-desc {
    font-size: 14px; color: var(--muted);
    line-height: 1.7; max-width: 340px; margin: 0 auto;
  }

  /* Info side */
  .contact-info-side {
    background: var(--cream2);
    padding: 64px 48px;
    display: flex; flex-direction: column;
    gap: 32px;
  }

  .info-block {
    background: var(--white);
    padding: 28px 28px;
    border-top: 3px solid var(--gold);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .info-block-icon {
    width: 44px; height: 44px;
    margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gold-pale);
    border: 1px solid rgba(196,147,63,0.3);
  }

  .info-block-icon svg { width: 32px; height: 32px; }

  .info-block-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700;
    color: var(--forest); margin-bottom: 8px;
  }

  .info-block-text {
    font-size: 13px; font-weight: 300;
    color: var(--muted); line-height: 1.7;
  }

  .info-block-text strong {
    color: var(--forest); font-weight: 600;
  }

  /* WhatsApp CTA card */
  .wa-card {
    background: #25D366;
    padding: 28px 28px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none; display: block;
    position: relative; overflow: hidden;
  }

  .wa-card::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='46'%3E%3Cellipse cx='20' cy='23' rx='18' ry='21' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: 40px 46px;
    pointer-events: none;
  }

  .wa-card:hover { background: #1db954; }

  .wa-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px; position: relative;
  }

  .wa-logo {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .wa-logo svg { width: 22px; height: 22px; fill: white; }

  .wa-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700;
    color: white;
  }

  .wa-sub {
    font-size: 12px; color: rgba(255,255,255,0.7);
    font-weight: 300;
  }

  .wa-desc {
    font-size: 13px; color: rgba(255,255,255,0.85);
    line-height: 1.6; margin-bottom: 18px;
    position: relative;
  }

  .wa-btn {
    background: white; color: #1B8C3A;
    padding: 12px 24px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: opacity 0.2s; position: relative;
  }

  .wa-btn:hover { opacity: 0.9; }

  /* ─── WhatsApp FLOATING BUTTON ─── */
  .wa-float {
    position: fixed;
    bottom: 32px; right: 32px;
    z-index: 150;
    display: flex; flex-direction: column;
    align-items: flex-end; gap: 10px;
  }

  .wa-float-tooltip {
    background: var(--forest);
    color: var(--gold-light);
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    white-space: nowrap;
    opacity: 0; transform: translateX(8px);
    transition: all 0.25s;
    pointer-events: none;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
  }

  .wa-float:hover .wa-float-tooltip {
    opacity: 1; transform: translateX(0);
  }

  .wa-float-btn {
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4),
                0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: waPulse 2.5s ease-in-out infinite;
  }

  .wa-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 3px 10px rgba(0,0,0,0.2);
    animation: none;
  }

  .wa-float-btn svg { width: 30px; height: 30px; fill: white; }

  @keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.15); }
    50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.65), 0 2px 12px rgba(0,0,0,0.2); }
  }

  /* ════════════════════════════════════════════════════ */
  /* ═══ RESPONSIVE: TABLET (≤ 1024px) ═══ */
  /* ════════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    section { padding: 64px 40px; }
    .why-section { padding: 64px 40px; }
    .modular-showcase { padding: 64px 40px; }

    .hero-grid { grid-template-columns: 1fr !important; }
    .hero-left { padding: 64px 48px 80px; min-height: auto; }
    .hero-right { min-height: 400px; }
    .hero-stats { position: static !important; }
    .hero-title { font-size: 56px; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-body { grid-template-columns: 1fr !important; }
    .contact-form-wrap, .contact-info-side {
      padding: 48px 40px;
      border-right: none;
    }

    .modular-inner { grid-template-columns: 1fr !important; gap: 48px; }

    .privacy-grid { grid-template-columns: 1fr !important; }
    .privacy-aside { position: static; }
    #page-privacy section.privacy-section { padding: 60px 40px; }

    .cta-section {
      flex-direction: column;
      align-items: flex-start;
      gap: 32px;
      padding: 64px 40px;
    }

    .new-arrival-section { padding: 64px 40px; }
    .new-arrival-grid { grid-template-columns: 1fr; gap: 48px; }
    .new-arrival-image { max-width: 420px; margin: 0 auto; width: 100%; }
    .na-title { font-size: 48px; }
    .na-deco-1 { width: 100px; height: 120px; }
    .na-deco-2 { width: 130px; height: 150px; }
    .na-deco-3 { display: none; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    .modal { grid-template-columns: 1fr; max-width: 600px; }
    .modal-img {
      min-height: 320px; padding: 28px;
      border-right: none;
      border-bottom: 1px solid var(--border);
    }
  }

  /* ════════════════════════════════════════════════════ */
  /* ═══ RESPONSIVE: MOBILE (≤ 640px) ═══ */
  /* ════════════════════════════════════════════════════ */
  @media (max-width: 640px) {
    section { padding: 48px 20px; }
    .why-section { padding: 48px 20px; }
    .modular-showcase { padding: 48px 20px; }
    .page { padding-top: 90px; }

    /* Navigation: hamburger menu */
    nav { padding: 14px 20px; height: 90px; }
    .logo-hex { width: 70px !important; height: 70px !important; }
    .nav-links {
      display: none !important;
      position: fixed;
      top: 90px; left: 0; right: 0;
      background: var(--white);
      flex-direction: column;
      padding: 20px;
      border-top: 1px solid var(--border);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      z-index: 99;
      gap: 0;
    }
    .nav-links.mobile-open { display: flex !important; }
    .nav-links li {
      width: 100%;
      border-bottom: 1px solid var(--border);
      list-style: none;
    }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a {
      display: block;
      padding: 14px 0;
      font-size: 14px;
    }
    .nav-cta { margin-top: 8px; text-align: center; }

    /* Hamburger button */
    .nav-hamburger {
      display: flex !important;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 8px;
    }
    .nav-hamburger span {
      width: 24px; height: 2px;
      background: var(--forest);
      transition: all 0.2s;
    }

    /* Logo smaller */
    .logo-wordmark span:first-child { font-size: 16px; }
    .logo-wordmark span:last-child { font-size: 9px; }

    /* Hero */
    .hero-left { padding: 48px 24px 64px; }
    .hero-title { font-size: 38px; line-height: 1.05; letter-spacing: -1px; }
    .hero-eyebrow { font-size: 11px; }
    .hero-desc { font-size: 14px; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions button { width: 100%; }
    .usp-highlight { padding: 12px 16px; gap: 12px; }
    .usp-highlight-icon { width: 38px; height: 38px; }
    .usp-highlight-icon svg { width: 22px; height: 22px; }
    .usp-highlight-title { font-size: 13px; }
    .usp-highlight-sub { font-size: 10px; }
    .hero-stat-num { font-size: 32px; }
    .hero-stat-label { font-size: 9px; }
    .hero-right { min-height: 280px; }
    .hero-img-badge {
      bottom: 16px; right: 16px;
      max-width: 200px; padding: 10px 16px;
    }
    .hero-img-badge-title { font-size: 13px; }

    /* Section titles */
    .section-title { font-size: 32px !important; line-height: 1.05; }
    .section-eyebrow { font-size: 10px; }

    /* Features: 1 column */
    .features-grid { grid-template-columns: 1fr !important; }
    .feature-card { padding: 32px 24px; }

    /* Spec ticker */
    .spec-ticker { padding: 14px 20px; gap: 24px; }
    .ticker-item { font-size: 11px; }

    /* Product Lines */
    .cat-row { padding: 18px 20px; gap: 16px; }
    .cat-idx { font-size: 22px; }
    .cat-name { font-size: 16px; }
    .cat-sub { font-size: 11px; }
    .cat-arrow { font-size: 20px; }

    /* Products: 1 column */
    .products-grid { grid-template-columns: 1fr !important; }
    .products-header { padding: 48px 20px 0; }
    .products-title { font-size: 36px !important; }
    .products-filter-bar {
      flex-wrap: wrap;
      padding: 0 20px;
    }
    .filter-btn { padding: 14px 18px; font-size: 10px; }
    .products-usp-bar {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      padding: 18px 20px;
    }
    .products-usp-icon { width: 44px; height: 44px; }
    .products-usp-icon svg { width: 26px; height: 26px; }
    .products-usp-title { font-size: 15px; }
    .products-usp-desc { font-size: 12px; }

    /* Gallery: 1 column */
    .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
    .gallery-tab { padding: 14px 20px; font-size: 10px; }
    .gallery-hero { padding: 56px 20px 48px; }
    .gallery-hero h1 { font-size: 36px !important; }

    /* News: 1 column */
    .news-grid { grid-template-columns: 1fr; gap: 20px; }
    .news-hero { padding: 56px 20px 48px; }
    .news-hero h1 { font-size: 36px !important; }
    .news-tab { padding: 14px 18px; font-size: 10px; }
    .news-subscribe { padding: 48px 20px; }
    .news-subscribe-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .news-subscribe-form { flex-direction: column; width: 100%; }
    .news-subscribe-input { width: 100%; }

    /* Contact */
    .contact-hero { padding: 56px 20px 48px; }
    .contact-hero h1 { font-size: 36px !important; }
    .contact-hero p { font-size: 14px; }
    .contact-form-wrap, .contact-info-side { padding: 40px 20px; }
    .form-row { grid-template-columns: 1fr !important; gap: 0; }
    .form-title { font-size: 22px; }
    .info-block { padding: 22px 20px; }
    .wa-card { padding: 22px 20px; }

    /* About */
    .about-hero { padding: 56px 20px 48px !important; }
    .modular-inner { gap: 40px; }
    .modular-bullets { margin-top: 20px; }
    .modular-bullet { font-size: 13px; }

    /* Privacy */
    .privacy-hero { padding: 48px 20px 40px; }
    .privacy-hero h1 { font-size: 32px !important; }
    #page-privacy section.privacy-section { padding: 48px 20px; }
    .privacy-block h2 { font-size: 18px; }
    .privacy-block p, .privacy-block ul li { font-size: 13px; }

    /* CTA */
    .cta-section { padding: 48px 20px; gap: 24px; }
    .cta-title { font-size: 32px !important; line-height: 1.05; }
    .cta-actions { flex-direction: column; width: 100%; gap: 12px; }
    .cta-actions button { width: 100%; }

    /* New Arrival */
    .new-arrival-section { padding: 48px 20px; }
    .new-arrival-grid { gap: 36px; }
    .na-title { font-size: 36px; letter-spacing: -1px; }
    .na-desc { font-size: 14px; }
    .na-features { gap: 20px; }
    .na-feature-num { font-size: 26px; }
    .na-cta { width: 100%; justify-content: center; font-size: 13px; padding: 14px 20px; }
    .na-eyebrow { font-size: 11px; letter-spacing: 2px; padding: 6px 14px; }
    .na-image-tag { font-size: 10px; letter-spacing: 2px; padding: 6px 16px; }

    /* Footer */
    footer { padding: 48px 20px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    /* Modal: full screen on mobile */
    .modal { max-height: 100vh; max-width: 100%; }
    .modal-img { padding: 24px; min-height: 240px; }
    .modal-info { padding: 28px 24px; }
    .modal h2 { font-size: 28px !important; }

    /* Article modal full screen */
    .article-modal-overlay { padding: 0; }
    .article-modal { max-width: 100%; }
    .article-modal-body { padding: 24px 20px 40px; }
    .article-title { font-size: 24px; line-height: 1.2; }
    .article-text h2 { font-size: 19px; }
    .article-text { font-size: 14px; }

    /* WhatsApp float button smaller */
    .wa-float { bottom: 20px; right: 20px; }
    .wa-float-btn { width: 50px; height: 50px; }
    .wa-float-btn svg { width: 26px; height: 26px; }
    .wa-float-tooltip { display: none; }

    /* Hide all decorative reptile SVGs on mobile (cleaner + faster) */
    .why-deco, .gallery-deco,
    .products-header-deco, .deco-reptile,
    .modular-deco, .cta-deco,
    .cta-deco-left, .cta-deco-right, .cta-deco-small,
    .hero-left::after { display: none !important; }
  }

  /* Hide hamburger on desktop */
  .nav-hamburger { display: none; }

/* ═══ MPA OVERRIDES ═══ */
/* On standalone pages, the .page div is always visible (no switching) */
.page { display: block !important; opacity: 1 !important; }
.page:not(.active) { display: block !important; }

/* ═══ ARTICLE PAGE — Editorial Layout ═══ */

/* Hero section: forest green, big typography, atmospheric background image */
.article-hero-section {
  background:
    linear-gradient(180deg, rgba(15,37,16,0.88) 0%, rgba(27,58,26,0.92) 60%, rgba(35,69,38,0.94) 100%),
    url("/images/article-hero-bg.jpg") center center / cover no-repeat,
    #1B3A1A;
  color: var(--cream);
  padding: 100px 64px 80px;
  position: relative;
  overflow: hidden;
}
.article-hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 30%, rgba(196,147,63,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(196,147,63,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.article-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.article-breadcrumb {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(245,241,234,0.55);
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}
.article-breadcrumb a {
  color: rgba(245,241,234,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.article-breadcrumb a:hover { color: var(--gold-light); }
.article-breadcrumb .crumb-sep {
  margin: 0 10px;
  color: rgba(245,241,234,0.3);
}
.article-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 28px;
  text-transform: uppercase;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(196,147,63,0.3);
  background: rgba(196,147,63,0.06);
}
.article-headline {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -1.5px;
  margin-bottom: 36px;
  max-width: 820px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.18), 4px 4px 12px rgba(0,0,0,0.15);
}
.article-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(245,241,234,0.65);
  padding-top: 28px;
  border-top: 1px solid rgba(196,147,63,0.25);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px;
}
.article-meta strong {
  color: var(--gold-light);
  font-weight: 500;
  font-style: italic;
}
.article-meta .meta-dot {
  width: 4px; height: 4px;
  background: rgba(196,147,63,0.4);
  border-radius: 50%;
}

/* Article body — cream background, editorial typography */
.article-content {
  background: var(--cream);
  padding: 80px 24px 96px;
}
.article-content-inner {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #3a3530;
}
/* Lead paragraph: larger and darker */
.article-content-inner > p:first-of-type {
  font-size: 19px;
  line-height: 1.65;
  color: var(--forest);
  font-weight: 400;
  margin-bottom: 36px;
  letter-spacing: 0.1px;
}
.article-content-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.5px;
  margin: 56px 0 20px;
  line-height: 1.25;
  position: relative;
}
.article-content-inner h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 16px;
}
.article-content-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin: 40px 0 14px;
  line-height: 1.3;
}
.article-content-inner p {
  margin-bottom: 22px;
}
.article-content-inner strong {
  color: var(--forest);
  font-weight: 600;
}
.article-content-inner em {
  font-style: italic;
  color: var(--forest2);
}
.article-content-inner ul,
.article-content-inner ol {
  padding-left: 24px;
  margin: 0 0 26px;
}
.article-content-inner li {
  margin-bottom: 10px;
}
.article-content-inner ul li::marker {
  color: var(--gold);
}
.article-content-inner a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.article-content-inner a:hover {
  color: var(--forest);
}
.article-content-inner blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--forest);
  line-height: 1.6;
}

/* CTA block at end of article — with atmospheric background image */
.article-cta-section {
  background:
    linear-gradient(135deg, rgba(15,37,16,0.90) 0%, rgba(27,58,26,0.92) 50%, rgba(35,69,38,0.94) 100%),
    url("/images/article-cta-bg.jpg") center center / cover no-repeat,
    #1B3A1A;
  color: var(--cream);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(196,147,63,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(196,147,63,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.article-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.article-cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.article-cta-section h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.article-cta-section p {
  font-size: 15px;
  color: rgba(245,241,234,0.72);
  margin-bottom: 32px;
  line-height: 1.7;
}
.article-cta-section .btn-gold {
  display: inline-block;
  padding: 16px 36px;
  text-decoration: none;
  font-size: 13px;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2.5px;
  transition: all 0.25s;
}
.article-cta-section .btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196,147,63,0.3);
}

/* Related articles */
.article-related-section {
  background: var(--cream2);
  padding: 80px 24px 96px;
}
.article-related-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.article-related-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.article-related-heading {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--forest);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Responsive */
@media (max-width: 1024px) {
  .article-hero-section { padding: 72px 40px 64px; }
  .article-headline { font-size: 44px; }
  .article-content-inner { font-size: 15px; }
  .article-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .article-hero-section { padding: 56px 24px 48px; }
  .article-headline { font-size: 30px; letter-spacing: -1px; margin-bottom: 24px; }
  .article-eyebrow { font-size: 11px; letter-spacing: 3px; padding: 5px 12px; }
  .article-breadcrumb { font-size: 12px; margin-bottom: 28px; }
  .article-content { padding: 48px 20px 64px; }
  .article-content-inner > p:first-of-type { font-size: 17px; }
  .article-content-inner h2 { font-size: 24px; margin: 40px 0 16px; }
  .article-content-inner h3 { font-size: 19px; margin: 32px 0 12px; }
  .article-cta-section { padding: 56px 20px; }
  .article-cta-section h2 { font-size: 26px; }
  .article-related-section { padding: 56px 20px 72px; }
  .article-related-heading { font-size: 24px; margin-bottom: 32px; }
  .article-related-grid { grid-template-columns: 1fr; gap: 20px; }
}
