
  :root {
    --cream: #F5EFE1;
    --parchment: #ECE1C7;
    --oxblood: #5A1F1F;
    --oxblood-deep: #34100F;
    --forest: #1B2B21;
    --gold: #B08D3F;
    --gold-light: #DCC27F;
    --ink: #221812;
    --hairline: rgba(34,24,18,0.2);
    box-sizing: border-box;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  html { scroll-padding-top: env(safe-area-inset-top, 0px); scroll-behavior: smooth; }
  *, *::before, *::after { box-sizing: inherit; }

  body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  .serif { font-family: 'Cormorant', Georgia, serif; }
  a { color: inherit; }
  img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); }
  .rule { height: 1px; background: var(--hairline); }

  .grain { position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: overlay; pointer-events: none; }

  /* utility bar */
  .utility { background: var(--oxblood-deep); color: var(--parchment); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; text-align: center; padding: 10px 0; }

  /* NAV */
  nav { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50; background: rgba(245,239,225,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--hairline); }
  .nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 16px clamp(20px, 4vw, 64px); gap: 20px; }
  .nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; }
  .nav-links.right { justify-content: flex-end; }
  .nav-links a { text-decoration: none; opacity: 0.75; transition: opacity .2s, color .2s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .25s; }
  .nav-links a:hover { opacity: 1; color: var(--oxblood); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .brand-logo { display: block; height: 40px; width: auto; margin: 0 auto; }
  @media (max-width: 860px) { .nav-links { display: none; } .nav-inner { grid-template-columns: 1fr; } .brand-logo { height: 34px; } }

  /* HERO */
  .hero { position: relative; min-height: 94vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,10,8,0.6) 0%, rgba(20,10,8,0.3) 38%, rgba(20,10,8,0.82) 100%); }
  .hero-inner { position: relative; z-index: 2; text-align: center; color: var(--cream); padding: 0 24px; max-width: 800px; }
  .hero-mark { height: 30px; width: auto; margin: 0 auto 30px; filter: brightness(0) invert(1); opacity: 0.92; }
  .hero-rule { width: 46px; height: 1px; background: var(--gold-light); margin: 0 auto 28px; }
  .hero-eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 22px; font-weight: 400; }
  .hero-inner h1 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(52px, 8.2vw, 104px); line-height: 1.02; margin: 0 0 26px; letter-spacing: 0.005em; }
  .hero-inner h1 em { font-style: italic; font-weight: 400; }
  .hero-inner p { font-size: 16.5px; line-height: 1.75; opacity: 0.9; max-width: 44ch; margin: 0 auto 40px; font-weight: 300; }
  .btn-gold { display: inline-block; border: 1px solid var(--gold-light); color: var(--cream); text-decoration: none; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; padding: 16px 42px; transition: background .25s, color .25s, border-color .25s; font-weight: 400; }
  .btn-gold:hover { background: var(--gold-light); color: var(--oxblood-deep); border-color: var(--gold-light); }
  .scroll-cue { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; width: 1px; height: 46px; background: linear-gradient(180deg, transparent, rgba(245,239,225,0.7)); }

  /* MAISON STATEMENT */
  .statement { position: relative; padding: clamp(56px, 6vw, 84px) 0; text-align: center; background: var(--parchment); overflow: hidden; }
  .statement-mark { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 620px; max-width: 90vw; opacity: 0.05; pointer-events: none; }
  .statement-content { position: relative; z-index: 1; }
  .statement .hero-rule { background: var(--gold); }
  .statement p.serif { font-size: clamp(27px, 3.3vw, 42px); font-style: italic; font-weight: 400; line-height: 1.42; max-width: 25ch; margin: 0 auto 26px; }
  .statement .attr { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; }

  /* COLLECTION */
  .collection { padding: clamp(100px, 12vw, 160px) 0; background: #FFFFFF; }
  .collection-head { text-align: center; margin-bottom: 70px; }
  .collection-head .eyebrow { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 16px; }
  .collection-head h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(38px, 4.6vw, 58px); margin: 0; }

  .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
  @media (max-width: 900px) { .grid { grid-template-columns: 1fr; } }
  .piece { text-align: center; }
  .frame { position: relative; aspect-ratio: 4/5; padding: 16px; margin-bottom: 24px; box-shadow: 0 24px 50px -20px rgba(34,24,18,0.35); }
  .frame::before { content: ''; position: absolute; inset: 0; border: 1px solid var(--gold); pointer-events: none; }
  .frame::after { content: ''; position: absolute; inset: 7px; border: 1px solid rgba(176,141,63,0.35); pointer-events: none; }
  .frame-inner { position: relative; width: 100%; height: 100%; overflow: hidden; }
  .frame-inner.placeholder { background: linear-gradient(150deg, var(--oxblood), var(--oxblood-deep)); display: flex; align-items: center; justify-content: center; }
  .frame-inner.placeholder span { font-family: 'Cormorant', serif; font-style: italic; color: var(--gold-light); font-size: 14px; opacity: 0.75; }
  .piece .cat { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 9px; }
  .piece h3 { font-family: 'Cormorant', serif; font-weight: 500; font-size: 24px; margin: 0; }

  /* HERITAGE / PROCESS */
  .process { padding: clamp(100px, 12vw, 160px) 0; background: var(--forest); color: var(--cream); }
  .process-head { text-align: center; max-width: 58ch; margin: 0 auto 70px; }
  .process-head .eyebrow { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
  .process-head h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(35px, 4.2vw, 52px); margin: 0 0 18px; }
  .process-head p { opacity: 0.82; line-height: 1.75; margin: 0; font-size: 15px; font-weight: 300; }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; row-gap: 50px; } }
  .step { text-align: center; padding: 0 26px; border-left: 1px solid rgba(220,194,127,0.22); }
  .step:first-child { border-left: none; }
  @media (max-width: 860px) { .step:nth-child(odd) { border-left: none; } }
  .step .num { font-family: 'Cormorant', serif; font-style: italic; font-size: 36px; color: var(--gold-light); display: block; margin-bottom: 18px; }
  .step h3 { font-size: 13.5px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; margin: 0 0 12px; }
  .step p { font-size: 13.5px; line-height: 1.7; opacity: 0.75; margin: 0; font-weight: 300; }

  /* BAND / QUOTE */
  .band { position: relative; padding: clamp(64px, 8vw, 100px) 0; background: var(--oxblood-deep); color: var(--cream); text-align: center; overflow: hidden; }
  .band-mark { height: 26px; width: auto; margin: 0 auto 38px; filter: brightness(0) invert(1); opacity: 0.55; }
  .band p.serif { font-size: clamp(29px, 3.7vw, 50px); font-style: italic; font-weight: 400; line-height: 1.4; max-width: 31ch; margin: 0 auto 32px; }
  .band-attr { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; }


  /* FULL CATALOGUE GRID */
  .catalogue { padding: clamp(90px, 11vw, 150px) 0; background: var(--parchment); }
  .catalogue-head { text-align: center; margin-bottom: 60px; }
  .catalogue-head .eyebrow { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 16px; }
  .catalogue-head h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(36px, 4.4vw, 54px); margin: 0 0 14px; }
  .catalogue-head p { max-width: 52ch; margin: 0 auto; opacity: 0.72; font-size: 15px; line-height: 1.7; font-weight: 300; }
  .grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 26px; }
  @media (max-width: 980px) { .grid4 { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .grid4 { grid-template-columns: 1fr; } }
  .grid4 .frame { aspect-ratio: 4/5; padding: 10px; }
  .grid4 .piece h3 { font-size: 19px; }
  .grid4 .piece .cat { font-size: 10px; }


  /* VALUES / INFO STRIP */
  .values { padding: clamp(80px, 9vw, 120px) 0; background: var(--cream); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
  @media (max-width: 860px) { .values-grid { grid-template-columns: 1fr; gap: 44px; } }
  .value { text-align: center; padding: 0 20px; }
  .value-icon { width: 42px; height: 42px; margin: 0 auto 22px; }
  .value-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.2; }
  .value h3 { font-family: 'Cormorant', serif; font-weight: 500; font-size: 24px; margin: 0 0 12px; }
  .value p { font-size: 14px; line-height: 1.75; opacity: 0.72; margin: 0; max-width: 32ch; margin-left: auto; margin-right: auto; font-weight: 300; }

  /* TESTIMONIALS */
  .testimonials { padding: clamp(90px, 11vw, 150px) 0; background: var(--forest); color: var(--cream); }
  .testimonials-head { text-align: center; margin-bottom: 64px; }
  .testimonials-head .eyebrow { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
  .testimonials-head h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(35px, 4.2vw, 52px); margin: 0; }
  .t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(220,194,127,0.18); border-top: 1px solid rgba(220,194,127,0.18); border-bottom: 1px solid rgba(220,194,127,0.18); }
  @media (max-width: 860px) { .t-grid { grid-template-columns: 1fr; } }
  .t-card { background: var(--forest); padding: 44px 36px; text-align: center; }
  .t-stars { color: var(--gold-light); font-size: 13px; letter-spacing: 0.2em; margin-bottom: 22px; }
  .t-card p.serif { font-size: 21px; font-style: italic; font-weight: 400; line-height: 1.5; margin: 0 0 24px; }
  .t-name { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.65; }
  .t-name span { display: block; font-size: 11px; letter-spacing: 0.06em; text-transform: none; opacity: 0.55; margin-top: 4px; }


  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.16,.8,.3,1), transform .9s cubic-bezier(.16,.8,.3,1); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1); }
  .reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger.in > *:nth-child(1) { transition-delay: .04s; }
  .reveal-stagger.in > *:nth-child(2) { transition-delay: .11s; }
  .reveal-stagger.in > *:nth-child(3) { transition-delay: .18s; }
  .reveal-stagger.in > *:nth-child(4) { transition-delay: .25s; }
  .reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; }
  .reveal-stagger.in > *:nth-child(6) { transition-delay: .39s; }
  .reveal-stagger.in > *:nth-child(7) { transition-delay: .46s; }
  .reveal-stagger.in > *:nth-child(8) { transition-delay: .53s; }
  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  }

  /* PRODUCT FRAME HOVER ZOOM */
  .frame-inner img { transition: transform 1.1s cubic-bezier(.16,.8,.3,1); }
  .piece:hover .frame-inner img { transform: scale(1.07); }
  .frame { transition: box-shadow .35s, transform .35s; }
  .piece:hover .frame { box-shadow: 0 30px 60px -18px rgba(34,24,18,0.4); transform: translateY(-4px); }

  /* BUTTON SHIMMER */
  .btn-gold { position: relative; overflow: hidden; }
  .btn-gold span.shimmer { position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent); transform: skewX(-20deg); transition: left .7s ease; pointer-events: none; }
  .btn-gold:hover span.shimmer { left: 130%; }

  /* HERO PARALLAX */
  .hero img.bg { will-change: transform; }

  /* SCROLL CUE MOTION */
  .scroll-cue { animation: cueMove 2.2s ease-in-out infinite; }
  @keyframes cueMove { 0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.9; } 50% { transform: translateX(-50%) translateY(10px); opacity: 0.4; } }

  /* HERO ENTRANCE */
  .hero-inner > * { opacity: 0; transform: translateY(18px); animation: heroIn 1s cubic-bezier(.16,.8,.3,1) forwards; }
  .hero-mark { animation-delay: .05s; }
  .hero-rule { animation-delay: .18s; }
  .hero-eyebrow { animation-delay: .28s; }
  .hero-inner h1 { animation-delay: .38s; }
  .hero-inner p { animation-delay: .55s; }
  .hero-inner .btn-gold { animation-delay: .7s; }
  @keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
  @media (prefers-reduced-motion: reduce) {
    .hero-inner > * { animation: none !important; opacity: 1 !important; transform: none !important; }
  }

  /* STATS STRIP */
  .stats { padding: clamp(64px, 7vw, 96px) 0; background: var(--parchment); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
  @media (max-width: 780px) { .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 46px; } }
  .stats-grid > div { position: relative; }
  .stats-grid > div:not(:first-child)::before { content: ''; position: absolute; left: -15px; top: 6px; bottom: 6px; width: 1px; background: var(--gold); opacity: 0.35; }
  @media (max-width: 780px) { .stats-grid > div::before { display: none; } }
  .stat-num { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(38px, 4.6vw, 56px); color: var(--oxblood); line-height: 1; margin-bottom: 12px; }
  .stat-label { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.62; color: var(--ink); }


  /* ABOUT THE HOUSE */
  .about-house { padding: clamp(90px, 10vw, 140px) 0; background: var(--cream); }
  .about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
  @media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
  .about-media { position: relative; aspect-ratio: 4/5; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(34,24,18,0.3); }
  .about-media::before { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(243,236,221,0.7); z-index: 2; pointer-events: none; }
  .about-media img { width: 100%; height: 100%; object-fit: cover; }
  .about-text .eyebrow { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 16px; }
  .about-text h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(34px, 4.2vw, 50px); margin: 0 0 24px; line-height: 1.08; }
  .about-text p { font-size: 15.5px; line-height: 1.8; opacity: 0.78; margin: 0 0 18px; font-weight: 300; max-width: 48ch; }
  .about-facts { list-style: none; margin: 30px 0 0; padding: 22px 0 0; border-top: 1px solid var(--hairline); display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
  .about-facts li { font-size: 13px; }
  .about-facts li span { display: block; font-family: 'Cormorant', serif; font-style: italic; font-size: 19px; color: var(--oxblood); margin-bottom: 3px; }

  /* SPOTLIGHT PRODUCTS */
  .spotlight { padding: clamp(30px, 5vw, 50px) 0 clamp(90px, 10vw, 140px); background: var(--cream); }
  .spotlight-head { text-align: center; margin-bottom: 76px; }
  .spotlight-head .eyebrow { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 16px; }
  .spotlight-head h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(36px, 4.4vw, 54px); margin: 0; }
  .spot-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 96px; }
  .spot-row:last-child { margin-bottom: 0; }
  .spot-row.rev .spot-media { order: 2; }
  .spot-row.rev .spot-text { order: 1; }
  @media (max-width: 900px) {
    .spot-row, .spot-row.rev { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
    .spot-row.rev .spot-media, .spot-row.rev .spot-text { order: initial; }
  }
  .spot-media { position: relative; aspect-ratio: 5/4; overflow: hidden; }
  .spot-media::before { content: ''; position: absolute; inset: 0; border: 1px solid var(--gold); z-index: 2; pointer-events: none; }
  .spot-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.16,.8,.3,1); }
  .spot-row:hover .spot-media img { transform: scale(1.06); }
  .spot-text .num { font-family: 'Cormorant', serif; font-style: italic; font-size: 15px; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 14px; display: block; }
  .spot-text h3 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(28px, 3.2vw, 38px); margin: 0 0 16px; }
  .spot-text p { font-size: 14.5px; line-height: 1.8; opacity: 0.76; margin: 0 0 22px; font-weight: 300; max-width: 42ch; }
  .spot-text a.more { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid var(--oxblood); color: var(--oxblood); padding-bottom: 3px; }

  /* FOOTER */
  footer { padding: clamp(76px, 9vw, 110px) 0 40px; background: var(--parchment); }
  .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; text-align: left; }
  @media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  .footer-grid .brand-logo { margin: 0 0 18px; }
  .footer-grid p { font-size: 14px; opacity: 0.65; line-height: 1.75; max-width: 30ch; margin: 0; font-weight: 300; }
  .footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.6; margin: 0 0 18px; font-weight: 500; }
  .footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .footer-col a { text-decoration: none; font-size: 14px; opacity: 0.82; font-weight: 300; }
  .footer-col a:hover { opacity: 1; color: var(--oxblood); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 12px; letter-spacing: 0.04em; opacity: 0.55; flex-wrap: wrap; gap: 12px; }
  .photo-credit { font-size: 11px; opacity: 0.4; text-align: center; padding-top: 18px; }

  ::selection { background: var(--oxblood); color: var(--cream); }
  a:focus-visible, button:focus-visible { outline: 2px solid var(--oxblood); outline-offset: 3px; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ============================================= */
/* INNER-PAGE COMPONENTS                          */
/* ============================================= */

/* Page hero (used on Collection / About / Contact / Product) */
.page-hero { position: relative; padding: clamp(150px, 20vw, 220px) 0 clamp(70px, 8vw, 100px); background: var(--forest); color: var(--cream); text-align: center; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(176,141,63,0.08), transparent 70%); pointer-events: none; }
.page-hero .breadcrumb { position: relative; z-index: 1; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; margin-bottom: 20px; }
.page-hero .breadcrumb a { text-decoration: none; color: inherit; }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }
.page-hero h1 { position: relative; z-index: 1; font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(42px, 6vw, 72px); margin: 0 0 16px; }
.page-hero p { position: relative; z-index: 1; max-width: 52ch; margin: 0 auto; opacity: 0.8; font-size: 15px; line-height: 1.7; font-weight: 300; }

/* Shop toolbar (Collection page) */
.shop-toolbar { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 60px; }
.shop-toolbar a { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; padding: 10px 22px; border: 1px solid var(--hairline); color: var(--ink); opacity: 0.75; transition: all .2s; }
.shop-toolbar a:hover, .shop-toolbar a.active { opacity: 1; border-color: var(--oxblood); color: var(--oxblood); }

/* Product detail page */
.product-detail { padding: clamp(70px, 9vw, 110px) 0; background: #FFFFFF; }
.pd-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: flex-start; }
@media (max-width: 900px) { .pd-grid { grid-template-columns: 1fr; gap: 36px; } }
.pd-media { position: relative; aspect-ratio: 4/5; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(34,24,18,0.3); }
.pd-media::before { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(243,236,221,0.7); z-index: 2; pointer-events: none; }
.pd-media img { width: 100%; height: 100%; object-fit: cover; }
.pd-info .cat { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 16px; }
.pd-info h1 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(34px, 4vw, 48px); margin: 0 0 22px; }
.pd-info p.lead { font-size: 15.5px; line-height: 1.8; opacity: 0.78; font-weight: 300; margin: 0 0 30px; max-width: 46ch; }
.pd-facts { list-style: none; margin: 0 0 34px; padding: 24px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.pd-facts li { font-size: 13px; }
.pd-facts li span { display: block; font-family: 'Cormorant', serif; font-style: italic; font-size: 18px; color: var(--oxblood); margin-bottom: 2px; }
.pd-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.pd-cta a { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; padding: 15px 34px; border: 1px solid var(--ink); color: var(--ink); transition: all .25s; }
.pd-cta a:hover { background: var(--ink); color: var(--cream); }
.pd-cta a.primary { background: var(--oxblood); border-color: var(--oxblood); color: var(--cream); }
.pd-cta a.primary:hover { background: var(--oxblood-deep); border-color: var(--oxblood-deep); }
.pd-note { margin-top: 30px; font-size: 13px; opacity: 0.6; font-style: italic; }

.related { padding: clamp(70px, 9vw, 110px) 0; background: var(--parchment); }
.related-head { text-align: center; margin-bottom: 56px; }
.related-head .eyebrow { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 14px; }
.related-head h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(30px, 3.6vw, 42px); margin: 0; }

/* About page timeline / craft steps (reused pattern) */
.about-steps { padding: clamp(90px, 11vw, 150px) 0; background: var(--forest); color: var(--cream); }
.about-steps-head { text-align: center; max-width: 58ch; margin: 0 auto 70px; }
.about-steps-head .eyebrow { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.about-steps-head h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(35px, 4.2vw, 52px); margin: 0 0 18px; }
.about-steps-head p { opacity: 0.82; line-height: 1.75; margin: 0; font-size: 15px; font-weight: 300; }
.steps4 { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .steps4 { grid-template-columns: 1fr 1fr; row-gap: 50px; } }
.steps4 .step { text-align: center; padding: 0 26px; border-left: 1px solid rgba(220,194,127,0.22); }
.steps4 .step:first-child { border-left: none; }
@media (max-width: 860px) { .steps4 .step:nth-child(odd) { border-left: none; } }
.steps4 .step .num { font-family: 'Cormorant', serif; font-style: italic; font-size: 36px; color: var(--gold-light); display: block; margin-bottom: 18px; }
.steps4 .step h3 { font-size: 13.5px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; margin: 0 0 12px; }
.steps4 .step p { font-size: 13.5px; line-height: 1.7; opacity: 0.75; margin: 0; font-weight: 300; }

/* Contact page */
.contact-section { padding: clamp(90px, 11vw, 140px) 0; background: #FFFFFF; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 50px; } }
.contact-info .eyebrow { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 16px; }
.contact-info h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(30px, 3.6vw, 42px); margin: 0 0 22px; }
.contact-info p { font-size: 15px; line-height: 1.8; opacity: 0.75; font-weight: 300; margin: 0 0 30px; max-width: 42ch; }
.contact-block { margin-bottom: 26px; }
.contact-block h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.55; margin: 0 0 8px; font-weight: 500; }
.contact-block div { font-size: 15px; font-family: 'Cormorant', serif; font-style: italic; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.65; margin-bottom: 8px; display: block; }
.contact-form input, .contact-form textarea { width: 100%; border: none; border-bottom: 1px solid var(--hairline); background: transparent; padding: 12px 2px; font-family: 'Jost', sans-serif; font-size: 15px; color: var(--ink); transition: border-color .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--oxblood); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { align-self: flex-start; margin-top: 10px; background: var(--oxblood); color: var(--cream); border: 1px solid var(--oxblood); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; padding: 16px 42px; cursor: pointer; transition: background .25s; font-family: 'Jost', sans-serif; }
.contact-form button:hover { background: var(--oxblood-deep); border-color: var(--oxblood-deep); }
.form-success { background: var(--parchment); border: 1px solid var(--gold); padding: 18px 22px; font-size: 14px; margin-bottom: 10px; }

/* 404 / not found */
.not-found { padding: clamp(120px, 14vw, 180px) 0; text-align: center; background: #FFFFFF; }
.not-found h1 { font-family: 'Cormorant', serif; font-style: italic; font-weight: 400; font-size: clamp(60px, 8vw, 110px); margin: 0 0 20px; color: var(--oxblood); }
.not-found p { opacity: 0.7; margin-bottom: 30px; }
