  :root {
    --copper: #B87333;
    --copper-light: #D4924A;
    --copper-pale: #F5EDE0;
    --black: #2C2C2A;
    --grey-dark: #444442;
    --grey-mid: #767674;
    --grey-light: #F5F4F2;
    --white: #FFFFFF;
    --border: #E8E4DC;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background-color: #FBEFE2;
    background-image:
      radial-gradient(ellipse 90% 80% at 50% 0%, rgba(184,115,51,0.32) 0%, rgba(251,239,226,0) 70%),
      repeating-linear-gradient(135deg, transparent, transparent 38px, rgba(184,115,51,0.16) 38px, rgba(184,115,51,0.16) 39px);
    background-attachment: fixed, fixed;
    color: var(--black);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 72px;
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 24px rgba(44,44,42,0.08); }

  .nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    cursor: pointer;
  }
  .nav-logo-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--black);
  }
  .nav-logo-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--copper);
    margin-top: 1px;
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-dark);
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--copper);
    transform: scaleX(0);
    transition: transform 0.25s;
  }
  .nav-links a:hover { color: var(--copper); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: var(--copper);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 2px;
    letter-spacing: 2px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--black) !important; color: var(--white) !important; }
  .nav-cta::after { display: none !important; }

  /* ── PAGES ── */
  .page { display: none; }
  .page.active { display: block; }
  footer, .footer-bottom { display: block !important; }

  /* ── HERO ── */
  .hero {
    min-height: 92vh;
    padding-top: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(184,115,51,0.07) 59px, rgba(184,115,51,0.07) 60px),
      repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(184,115,51,0.07) 59px, rgba(184,115,51,0.07) 60px);
    z-index: 0;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(245,237,224,0.7) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
  }
  /* Diagonal copper accent lines */
  .hero-accent-tl {
    position: absolute;
    top: 80px; left: 40px;
    width: 120px; height: 120px;
    border-top: 1.5px solid var(--copper);
    border-left: 1.5px solid var(--copper);
    opacity: 0.25;
    z-index: 1;
  }
  .hero-accent-br {
    position: absolute;
    bottom: 100px; right: 40px;
    width: 120px; height: 120px;
    border-bottom: 1.5px solid var(--copper);
    border-right: 1.5px solid var(--copper);
    opacity: 0.25;
    z-index: 1;
  }
  .hero-watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.035;
    pointer-events: none;
    width: 520px;
    height: 520px;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
  }
  .hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--copper);
  }
  .hero-eyebrow span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--copper);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 8vw, 100px);
    font-weight: 600;
    line-height: 1.02;
    color: var(--black);
    margin-bottom: 28px;
  }
  .hero-title em {
    font-style: italic;
    color: var(--copper);
  }

  .hero-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--grey-dark);
    max-width: 540px;
    margin: 0 auto 48px;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stats {
    display: flex;
    width: 100%;
    border-top: 2px solid var(--copper);
    border-bottom: 2px solid var(--copper);
    position: relative;
    z-index: 2;
    background: var(--white);
  }
  .hero-stat {
    flex: 1;
    padding: 28px 16px;
    text-align: center;
    border-right: 1px solid var(--border);
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--copper);
    line-height: 1;
    margin-bottom: 6px;
  }
  .hero-stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-mid);
  }

  .btn-primary {
    background: var(--copper);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--black); transform: translateY(-1px); }

  .btn-secondary {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
    padding: 14px 32px;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
  }
  .btn-secondary:hover { border-color: var(--copper); color: var(--copper); }

  .hero-right { display: none; }
  .hero-illustration { display: none; }
  .hero-badge { display: none; }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--black);
    border-top: 3px solid var(--copper);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
  }
  .trust-icon { color: var(--copper); font-size: 18px; }
  .trust-text { font-size: 12px; font-weight: 500; letter-spacing: 1px; }
  .trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.15); }

  /* ── SECTIONS ── */
  .section {
    padding: 100px 60px;
  }
  .section-alt { background: var(--grey-light); position: relative; }
  .section-alt::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(184,115,51,0.025) 20px, rgba(184,115,51,0.025) 21px); pointer-events: none; }

  .section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }
  .section-label-double {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
  }
  .section-label-double .section-label-line { flex: 1; max-width: 80px; }
  .section-label-line { width: 32px; height: 1px; background: var(--copper); }
  .section-label span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--copper);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 24px;
  }
  .section-title em { font-style: italic; color: var(--copper); }

  .section-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--grey-dark);
    max-width: 580px;
  }

  /* ── ABOUT GRID ── */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-values {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .about-value {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }
  .about-value:last-child { border-bottom: none; }
  .about-value-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--copper);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
  }
  .about-value-content h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 6px;
  }
  .about-value-content p {
    font-size: 14px;
    font-weight: 300;
    color: var(--grey-dark);
    line-height: 1.7;
  }

  /* Decorative panel */
  .about-panel {
    position: relative;
    height: 560px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .about-panel-corner {
    position: absolute;
    top: 24px; right: 24px;
    width: 60px; height: 60px;
    border-top: 2px solid var(--copper);
    border-right: 2px solid var(--copper);
  }
  .about-panel-corner-bl {
    top: auto; right: auto;
    bottom: 24px; left: 24px;
    border-top: none; border-right: none;
    border-bottom: 2px solid var(--copper);
    border-left: 2px solid var(--copper);
  }
  .about-panel svg { opacity: 0.15; }
  .about-panel-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
  }
  .about-panel-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .about-panel-attr {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper);
  }

  /* ── PRODUCTS ── */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }
  .product-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: default;
  }
  .product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--copper);
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  .product-card:hover { border-color: var(--copper); box-shadow: 0 8px 40px rgba(184,115,51,0.1); }
  .product-card:hover::before { transform: scaleX(1); }

  .product-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }
  .product-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 12px;
  }
  .product-card p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--grey-dark);
  }
  .product-tag {
    display: inline-block;
    margin-top: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    border: 1px solid var(--copper);
    padding: 4px 10px;
    border-radius: 1px;
  }

  /* ── HOW TO ORDER ── */
  .order-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
  }
  .order-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--copper);
    opacity: 0.3;
    z-index: 0;
  }
  .order-step {
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }
  .order-step-num {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 2px solid var(--copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--copper);
    margin-bottom: 24px;
  }
  .order-step h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
  }
  .order-step p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--grey-dark);
  }

  .delivery-info {
    margin-top: 60px;
    background: var(--black);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  .delivery-stat { text-align: center; }
  .delivery-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    color: var(--copper);
    line-height: 1;
    margin-bottom: 8px;
  }
  .delivery-stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.7;
  }
  .delivery-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
  }

  /* ── CATALOGUE FORM ── */
  .catalogue-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }
  .catalogue-perks {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .catalogue-perk {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .catalogue-perk-icon {
    width: 32px;
    height: 32px;
    background: var(--copper-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--copper);
    font-size: 14px;
  }
  .catalogue-perk-text { font-size: 14px; font-weight: 300; color: var(--grey-dark); line-height: 1.6; }
  .catalogue-perk-text strong { color: var(--black); font-weight: 600; display: block; margin-bottom: 2px; }

  .catalogue-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 48px;
    position: relative;
  }
  .catalogue-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--copper), var(--copper-light));
  }

  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
  }
  .form-subtitle {
    font-size: 13px;
    font-weight: 300;
    color: var(--grey-mid);
    margin-bottom: 32px;
    line-height: 1.6;
  }

  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 2px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group textarea:focus { border-color: var(--copper); }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--grey-mid); }
  .form-group textarea { resize: vertical; min-height: 80px; }

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

  .form-submit {
    width: 100%;
    background: var(--copper);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    margin-top: 8px;
    transition: background 0.2s, transform 0.15s;
  }
  .form-submit:hover { background: var(--black); }
  .form-submit:active { transform: scale(0.99); }

  .social-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .social-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--copper);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(184,115,51,0.25);
  }
  .social-btn:hover {
    background: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }
  .social-btn svg { width: 20px; height: 20px; display: block; }

  .form-note {
    margin-top: 16px;
    font-size: 11px;
    font-weight: 300;
    color: var(--grey-mid);
    line-height: 1.6;
    text-align: center;
  }

  /* Success state */
  .form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }
  .form-success.show { display: block; }
  .form-success-icon {
    width: 64px;
    height: 64px;
    background: var(--copper-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
  }
  .form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
  }
  .form-success p {
    font-size: 14px;
    font-weight: 300;
    color: var(--grey-dark);
    line-height: 1.8;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    border-top: 3px solid var(--copper);
  }
  .footer-brand { }
  .footer-logo-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
  }
  .footer-logo-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--copper);
    display: block;
    margin-bottom: 20px;
  }
  .footer-tagline {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    max-width: 280px;
    margin-bottom: 24px;
  }
  .footer-contact a {
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--copper); }

  .footer-col h5 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 20px;
  }
  .footer-col a {
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--white); }

  .footer-bottom {
    background: var(--black);
    padding: 20px 60px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
  }
  .footer-bottom-links {
    display: flex;
    gap: 24px;
  }
  .footer-bottom-links a {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  .footer-bottom-links a:hover { color: var(--copper); }

  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 60px 24px; }
    .section { padding: 60px 24px; }
    .trust-bar { padding: 20px 24px; }
    .about-grid, .catalogue-section { grid-template-columns: 1fr; }
    .about-panel { display: none; }
    .products-grid { grid-template-columns: 1fr; }
    .order-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .order-steps::before { display: none; }
    .delivery-info { grid-template-columns: 1fr; text-align: center; }
    .delivery-divider { display: none; }
    footer { grid-template-columns: 1fr; padding: 40px 24px; }
    .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 12px; text-align: center; }
    .catalogue-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
  }
  @keyframes slowRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
  }
  .hero-watermark { animation: slowRotate 120s linear infinite; }

  /* Copper shimmer on section headings */
  .section-title { position: relative; }

  /* Polished product card hover */
  .product-card { transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s; }
  .product-card:hover { transform: translateY(-4px); }

  /* Footer logo watermark */
  .footer-watermark {
    position: absolute;
    right: 60px;
    bottom: 40px;
    opacity: 0.04;
    pointer-events: none;
  }

  /* ── LEGAL PAGES ── */
  .legal-header {
    background: var(--grey-light);
    padding: 44px 60px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .legal-header::after {
    content: '';
    position: absolute;
    right: -40px; top: 50%;
    transform: translateY(-50%);
    width: 300px; height: 300px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,6 158,28 180,88 158,148 100,170 42,148 20,88 42,28' fill='none' stroke='%23B87333' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.06;
    pointer-events: none;
  }
  .legal-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px;
  }
  .legal-updated {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--copper);
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 32px;
  }
  .legal-intro {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--grey-dark);
    padding: 24px 32px;
    background: var(--grey-light);
    border-left: 4px solid var(--copper);
    margin-bottom: 48px;
  }
  .legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
  }
  .legal-section:last-child {
    border-bottom: none;
  }
  .legal-section h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  .legal-section p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--grey-dark);
    margin-bottom: 12px;
  }
  .legal-section p:last-child { margin-bottom: 0; }
  .legal-section ul {
    list-style: none;
    margin: 12px 0;
    padding: 0;
  }
  .legal-section ul li {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--grey-dark);
    padding: 6px 0 6px 24px;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .legal-section ul li:last-child { border-bottom: none; }
  .legal-section ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--copper);
    font-size: 8px;
    top: 10px;
  }
  .legal-warning {
    background: #FDF8F3;
    border: 1px solid var(--copper);
    border-left: 4px solid var(--copper);
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.7;
    font-style: italic;
  }
  .legal-contact-box {
    background: var(--black);
    padding: 32px 40px;
    margin-top: 48px;
  }
  .legal-contact-box h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 16px;
  }
  .legal-contact-box p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin: 0;
  }
  .legal-contact-box a {
    color: var(--copper);
    text-decoration: none;
  }
  .legal-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
  }
  .legal-nav a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-mid);
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: all 0.2s;
    cursor: pointer;
  }
  .legal-nav a:hover { border-color: var(--copper); color: var(--copper); }
  .legal-nav a.active { background: var(--copper); color: var(--white); border-color: var(--copper); }

  /* ── LIGHTBOX ── */
  .lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    backdrop-filter: blur(4px);
  }
  .lightbox-overlay.open {
    display: flex;
  }
  .lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border: 2px solid var(--copper);
    box-shadow: 0 0 80px rgba(184,115,51,0.3);
    cursor: default;
    animation: lbFadeIn 0.2s ease;
  }
  @keyframes lbFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
  }
  .lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: var(--copper);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    font-weight: 300;
    transition: color 0.2s;
  }
  .lightbox-close:hover { color: white; }
  .lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
  }
  .lightbox-hint {
    position: absolute;
    top: 24px;
    left: 32px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  /* Clickable image styling */
  .zoomable {
    cursor: zoom-in;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .zoomable:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(184,115,51,0.2);
  }
  /* Zoom icon overlay on product images */
  .img-wrap {
    position: relative;
    overflow: hidden;
  }
  .img-wrap::after {
    content: '⊕';
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--copper);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    line-height: 32px;
    text-align: center;
  }
  .img-wrap:hover::after { opacity: 1; }

  /* ── BLOG ── */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
  }
  .blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  .blog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--copper);
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  .blog-card:hover { border-color: var(--copper); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(184,115,51,0.12); }
  .blog-card:hover::before { transform: scaleX(1); }
  .blog-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: var(--grey-light);
  }
  .blog-card-body { padding: 28px; }
  .blog-card-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 10px;
    display: block;
  }
  .blog-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .blog-card p {
    font-size: 13px;
    font-weight: 300;
    color: var(--grey-dark);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .blog-read-more {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    border-bottom: 1px solid var(--copper);
    padding-bottom: 2px;
  }

  /* Article page */
  .article-header {
    background: var(--black);
    padding: 44px 60px;
    border-bottom: 3px solid var(--copper);
    position: relative;
    overflow: hidden;
  }
  .article-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px;
  }
  .article-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--black);
    margin: 48px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }
  .article-body h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--black);
    margin: 32px 0 12px;
  }
  .article-body p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.95;
    color: var(--grey-dark);
    margin-bottom: 20px;
  }
  .article-body ul, .article-body ol {
    margin: 16px 0 20px 0;
    padding: 0;
    list-style: none;
  }
  .article-body ul li, .article-body ol li {
    font-size: 15px;
    font-weight: 300;
    color: var(--grey-dark);
    line-height: 1.8;
    padding: 8px 0 8px 28px;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .article-body ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--copper);
    font-size: 9px;
    top: 12px;
  }
  .article-body ol { counter-reset: item; }
  .article-body ol li::before {
    content: counter(item) '.';
    counter-increment: item;
    position: absolute;
    left: 0;
    color: var(--copper);
    font-weight: 700;
    font-size: 13px;
    top: 10px;
  }
  .article-callout {
    background: var(--copper-pale);
    border-left: 4px solid var(--copper);
    padding: 24px 28px;
    margin: 32px 0;
  }
  .article-callout p {
    margin: 0;
    font-size: 14px;
    color: var(--black);
    font-style: italic;
  }
  .article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
  }
  .article-table th {
    background: var(--black);
    color: var(--copper);
    padding: 12px 16px;
    text-align: left;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .article-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--grey-dark);
    font-weight: 300;
    line-height: 1.6;
  }
  .article-table tr:nth-child(even) td { background: var(--grey-light); }
  .article-cta {
    background: var(--black);
    padding: 40px;
    margin: 48px 0;
    text-align: center;
    border-top: 3px solid var(--copper);
  }
  .article-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
  }
  .article-cta p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
  }
  .article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    cursor: pointer;
    margin-bottom: 32px;
    text-decoration: none;
  }
  .article-back:hover { color: var(--black); }

  @media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr; }
    .article-body { padding: 40px 24px; }
    .article-header { padding: 36px 24px; }
  }

  /* ── GALLERY ── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 1;
  }
  .gallery-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .gallery-item:hover .gallery-img {
    transform: scale(1.06);
  }
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(44,44,42,0.92) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
  }
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  .gallery-zoom {
    align-self: flex-end;
    width: 36px;
    height: 36px;
    background: var(--copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    line-height: 36px;
    text-align: center;
  }
  .gallery-info {
    align-self: flex-start;
    width: 100%;
  }
  .gallery-style {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper);
    display: block;
    margin-bottom: 4px;
  }
  .gallery-desc {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    display: block;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
  }

  /* ── CONTENT PROTECTION: prevent text/image copying ── */
  body {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  input, textarea {
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
  }
  img {
    -webkit-user-drag: none;
    user-drag: none;
  }