  :root {
    --gold: #A8721E;
    --gold-light: #C9922C;
    --gold-pale: #E8C06A;
    --crimson: #8B1A1A;
    --ink: #FAF8F3;
    --ink-mid: #F0EAE0;
    --ink-light: #E8DFD0;
    --cream: #1A1410;
    --cream-dim: #4A3C2A;
    --emerald: #2D5A3D;
    --border: rgba(168,114,30,0.2);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--ink);
    color: var(--cream);
    font-family: 'EB Garamond', serif;
    overflow-x: hidden;
    cursor: default;
  }

  /* ── Ornamental SVG pattern overlay ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%23A8721E' stroke-width='0.3' opacity='0.08'%3E%3Crect x='10' y='10' width='60' height='60'/%3E%3Cpath d='M10 10 L40 2 L70 10 L78 40 L70 70 L40 78 L10 70 L2 40Z'/%3E%3Ccircle cx='40' cy='40' r='12'/%3E%3Cpath d='M40 10 L40 70 M10 40 L70 40'/%3E%3Cpath d='M18 18 L62 62 M62 18 L18 62'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  /* ── Navigation ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(250,248,243,0.97) 0%, transparent 100%);
    border-bottom: 1px solid transparent;
    transition: all 0.5s ease;
  }

  nav.scrolled {
    background: rgba(250,248,243,0.97);
    border-bottom-color: var(--border);
    backdrop-filter: blur(12px);
  }

  .nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-decoration: none;
    position: relative;
  }

  .nav-logo span {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    display: block;
    color: var(--cream-dim);
    text-transform: uppercase;
    margin-top: -2px;
    text-align: center;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-dim);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold);
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--gold);
  }

  .nav-cta:hover {
    background: transparent;
    color: var(--gold);
  }

  /* ── Hero ── */
  #hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 20%),
      radial-gradient(ellipse 60% 80% at 20% 60%, rgba(45,90,61,0.06) 0%, transparent 20%),
      radial-gradient(ellipse 100% 100% at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 20%);
  }

  /* Geometric border frame */
  .hero-frame {
    position: absolute;
    inset: 5rem 2rem 5rem;
    border: 1px solid var(--border);
    pointer-events: none;
  }

  .hero-frame::before,
  .hero-frame::after {
    content: '';
    position: absolute;
    width: 40px; height: 40px;
    border-color: var(--gold);
    border-style: solid;
  }

  .hero-frame::before {
    top: -1px; left: -1px;
    border-width: 2px 0 0 2px;
  }

  .hero-frame::after {
    bottom: -1px; right: -1px;
    border-width: 0 2px 2px 0;
  }

  .corner-br {
    position: absolute;
    bottom: -1px; left: -1px;
    width: 40px; height: 40px;
    border: 2px solid var(--gold);
    border-width: 0 0 2px 2px;
  }

  .corner-tr {
    position: absolute;
    top: -1px; right: -1px;
    width: 40px; height: 40px;
    border: 2px solid var(--gold);
    border-width: 2px 2px 0 0;
  }

  .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1650px;
    padding: 0 2rem;
  }

  .hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 10vw, 8.5rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 0.3em;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.5s forwards;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }

  .hero-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic;
    color: var(--cream-dim);
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.8s forwards;
    letter-spacing: 0.02em;
  }

  .hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1.2s ease 1.1s forwards;
  }

  .btn-primary {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--crimson);
    transform: translateX(-101%);
    transition: transform 0.4s ease;
    z-index: -1;
  }

  .btn-primary:hover {
    color: var(--ink);
    border-color: var(--crimson);
  }

  .btn-primary:hover::before { transform: translateX(0); }

  .btn-ghost {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cream);
    background: transparent;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.4s;
  }

  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.5s forwards;
  }

  .hero-scroll span {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--cream-dim);
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  /* ── Section Commons ── */
  section { position: relative; z-index: 1; }

  .section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .section-label::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
    display: inline-block;
  }

  .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 4rem 0;
  }

  .divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: var(--border);
  }

  .divider-diamond {
    width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
  }

  /* ── Heritage Section ── */
  #heritage {
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .heritage-visual {
    position: relative;
  }

  .heritage-pattern {
    width: 100%;
    aspect-ratio: 3/4;
    background:
      linear-gradient(135deg, var(--ink-light) 0%, var(--ink-mid) 100%);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .heritage-pattern::before {
    content: '';
    position: absolute;
    inset: 20px;
    background-image:
      repeating-linear-gradient(0deg, var(--border) 0, var(--border) 1px, transparent 1px, transparent 40px),
      repeating-linear-gradient(90deg, var(--border) 0, var(--border) 1px, transparent 1px, transparent 40px);
  }

  .heritage-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 50% 50%, rgba(168,114,30,0.1) 0%, transparent 70%);
  }

  .hp-inner {
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(201,146,44,0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hp-ornament {
    width: 160px; height: 160px;
    position: relative;
  }

  .hp-ornament svg {
    width: 100%; height: 100%;
    opacity: 0.7;
    animation: rotateSlow 30s linear infinite;
  }

  .heritage-badge {
    position: absolute;
    bottom: -2rem; right: -2rem;
    width: 120px; height: 120px;
    background: var(--crimson);
    border: 1px solid rgba(201,146,44,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
  }

  .heritage-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }

  .heritage-badge .label {
    font-family: 'Cinzel', serif;
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-top: 0.3rem;
  }

  .heritage-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }

  .heritage-text h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .heritage-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--cream-dim);
    margin-bottom: 1.2rem;
    font-style: italic;
  }

  .heritage-text p:last-of-type {
    font-style: normal;
    margin-bottom: 2.5rem;
  }

  .heritage-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }

  .stat-item .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }

  .stat-item .lbl {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-top: 0.3rem;
  }

  /* ── Collections ── */
  #collections {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .collections-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .collections-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.05;
  }

  .collections-header h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .collections-header p {
    font-size: 1.05rem;
    color: var(--cream-dim);
    font-style: italic;
    margin-top: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .collections-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 2px;
    align-items: start;
  }

  .collection-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .collection-card:nth-child(2) { margin-top: -3rem; }

  .card-visual {
    aspect-ratio: 2/3;
    position: relative;
    overflow: hidden;
  }

  .card-bg {
    width: 100%; height: 100%;
    transition: transform 0.7s ease;
    position: relative;
  }

  .collection-card:hover .card-bg { transform: scale(1.05); }

  .card-bg-1 {
    background:
      radial-gradient(ellipse at 30% 40%, rgba(139,26,26,0.35) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 80%, rgba(45,90,61,0.25) 0%, transparent 50%),
      linear-gradient(160deg, #C8B89A 0%, #B8A080 50%, #C0A090 100%);
  }

  .card-bg-2 {
    background:
      radial-gradient(ellipse at 60% 30%, rgba(168,114,30,0.4) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 80%, rgba(45,90,61,0.3) 0%, transparent 60%),
      linear-gradient(160deg, #A8C0A0 0%, #90B088 50%, #98B890 100%);
  }

  .card-bg-3 {
    background:
      radial-gradient(ellipse at 50% 30%, rgba(45,90,61,0.3) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 70%, rgba(168,114,30,0.3) 0%, transparent 60%),
      linear-gradient(160deg, #98A8C0 0%, #8090B0 50%, #8898B8 100%);
  }

  .card-pattern {
    position: absolute;
    inset: 0;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='none' stroke='%23C9922C' stroke-width='0.4' opacity='0.15'%3E%3Cpath d='M0 30 L15 0 L30 30 L15 60Z'/%3E%3Cpath d='M30 30 L45 0 L60 30 L45 60Z'/%3E%3C/g%3E%3C/svg%3E");
  }

  .card-figure {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 85%;
    background:
      linear-gradient(to top, rgba(13,11,8,0.5) 0%, transparent 40%);
    border: 1px solid rgba(201,146,44,0.15);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
  }

  .card-figure-inner {
    width: 80%;
    height: 90%;
    position: relative;
  }

  /* Stylized silhouette shapes */
  .silhouette {
    position: absolute;
    inset: 0;
  }

  .sil-1::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 90%;
    background: linear-gradient(180deg,
      rgba(139,26,26,0.3) 0%,
      rgba(80,40,20,0.45) 40%,
      rgba(250,248,243,0.9) 100%
    );
    clip-path: polygon(20% 0%, 80% 0%, 95% 15%, 100% 40%, 98% 70%, 90% 85%, 80% 95%, 50% 100%, 20% 95%, 10% 85%, 2% 70%, 0% 40%, 5% 15%);
  }

  .sil-2::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 88%;
    background: linear-gradient(180deg,
      rgba(45,90,61,0.3) 0%,
      rgba(30,70,40,0.45) 40%,
      rgba(250,248,243,0.9) 100%
    );
    clip-path: polygon(25% 0%, 75% 0%, 90% 12%, 100% 35%, 100% 65%, 85% 88%, 70% 96%, 50% 100%, 30% 96%, 15% 88%, 0% 65%, 0% 35%, 10% 12%);
  }

  .sil-3::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 88%;
    background: linear-gradient(180deg,
      rgba(40,60,120,0.25) 0%,
      rgba(40,60,100,0.4) 40%,
      rgba(250,248,243,0.9) 100%
    );
    clip-path: polygon(15% 0%, 85% 0%, 100% 20%, 100% 50%, 95% 75%, 80% 92%, 60% 100%, 40% 100%, 20% 92%, 5% 75%, 0% 50%, 0% 20%);
  }

  /* Embroidery decoration */
  .emb-lines {
    position: absolute;
    inset: 10% 20%;
    background:
      repeating-linear-gradient(0deg, transparent 0, transparent 12px, rgba(201,146,44,0.08) 12px, rgba(201,146,44,0.08) 13px),
      repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(201,146,44,0.04) 20px, rgba(201,146,44,0.04) 21px);
  }

  .card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(250,248,243,0.97) 0%, transparent 100%);
  }

  .card-tag {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
  }

  .card-desc {
    font-size: 0.85rem;
    color: var(--cream-dim);
    font-style: italic;
    margin-top: 0.4rem;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.4s ease;
  }

  .collection-card:hover .card-desc {
    opacity: 1;
    transform: translateY(0);
  }

  .card-arrow {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    opacity: 0;
    transition: all 0.4s;
  }

  .collection-card:hover .card-arrow {
    opacity: 1;
    border-color: var(--gold);
  }

  /* ── Craftsmanship ── */
  #craft {
    padding: 8rem 4rem;
    background: var(--ink-mid);
    position: relative;
  }

  #craft::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cg fill='none' stroke='%23A8721E' stroke-width='0.4' opacity='0.1'%3E%3Cpolygon points='50,5 95,27.5 95,72.5 50,95 5,72.5 5,27.5'/%3E%3Cpolygon points='50,20 80,35 80,65 50,80 20,65 20,35'/%3E%3Ccircle cx='50' cy='50' r='15'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }

  .craft-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .craft-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .craft-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--cream);
  }

  .craft-header h2 em { font-style: italic; color: var(--gold); }

  .craft-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .pillar {
    padding: 3rem 2rem;
    border: 1px solid var(--border);
    border-right: none;
    text-align: center;
    transition: background 0.4s;
    position: relative;
    overflow: hidden;
  }

  .pillar:last-child { border-right: 1px solid var(--border); }

  .pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,146,44,0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .pillar:hover::before { opacity: 1; }

  .pillar-icon {
    width: 60px; height: 60px;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    transform: rotate(45deg);
    transition: border-color 0.4s;
  }

  .pillar-icon span { transform: rotate(-45deg); display: block; }
  .pillar:hover .pillar-icon { border-color: var(--gold); }

  .pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.8rem;
  }

  .pillar p {
    font-size: 0.85rem;
    color: var(--cream-dim);
    line-height: 1.8;
    font-style: italic;
  }

  /* ── Quote Banner ── */
  #quote {
    padding: 8rem 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .quote-ornament {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    line-height: 0.5;
    color: var(--gold);
    opacity: 0.2;
    font-weight: 300;
    display: block;
    margin-bottom: 1rem;
  }

  blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.5;
  }

  blockquote em { color: var(--gold); font-style: normal; }

  cite {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream-dim);
  }

  /* ── Lookbook Strip ── */
  #lookbook {
    padding: 4rem 0;
    overflow: hidden;
  }

  .lookbook-track {
    display: flex;
    gap: 2px;
    animation: slideTrack 30s linear infinite;
    width: max-content;
  }

  .lookbook-item {
    width: 220px;
    height: 300px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }

  .lb-bg {
    width: 100%; height: 100%;
  }

  .lb-1 { background: linear-gradient(135deg, #D4A8A0, #C89888); }
  .lb-2 { background: linear-gradient(135deg, #A0C4A8, #88B090); }
  .lb-3 { background: linear-gradient(135deg, #A8B0D4, #9098C8); }
  .lb-4 { background: linear-gradient(135deg, #D4C0A0, #C8B088); }
  .lb-5 { background: linear-gradient(135deg, #B0D4A8, #98C890); }
  .lb-6 { background: linear-gradient(135deg, #D4A8B8, #C898A8); }

  .lb-overlay {
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent 0, transparent 15px, rgba(201,146,44,0.05) 15px, rgba(201,146,44,0.05) 16px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lb-gem {
    width: 40px; height: 40px;
    background: var(--gold);
    opacity: 0.15;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  }

  /* ── Newsletter ── */
  #newsletter {
    padding: 8rem 4rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  #newsletter h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 1rem;
  }

  #newsletter h2 em { font-style: italic; color: var(--gold); }

  #newsletter p {
    font-size: 1rem;
    color: var(--cream-dim);
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.7;
  }

  .email-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid var(--border);
  }

  .email-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--cream);
    outline: none;
  }

  .email-form input::placeholder { color: rgba(212,200,168,0.4); }

  .email-form button {
    background: var(--gold);
    border: none;
    padding: 1rem 1.8rem;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
  }

  .email-form button:hover { background: var(--gold-light); }

  .newsletter-note {
    font-size: 0.75rem;
    color: rgba(212,200,168,0.5);
    margin-top: 1rem;
    font-style: italic;
  }

  /* ── Footer ── */
  footer {
    background: var(--ink-light);
    border-top: 1px solid var(--border);
    padding: 5rem 4rem 3rem;
    position: relative;
    z-index: 1;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
  }

  .footer-brand .logo {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.3rem;
  }

  .footer-brand .tagline {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-bottom: 1.5rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
    color: rgba(212,200,168,0.6);
    font-style: italic;
    line-height: 1.9;
    max-width: 280px;
  }

  .footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .social-icon {
    width: 34px; height: 34px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-dim);
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Cinzel', serif;
    letter-spacing: 0;
  }

  .social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-col a {
    font-size: 0.88rem;
    color: rgba(212,200,168,0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-style: italic;
  }

  .footer-col a:hover { color: var(--gold); }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(212,200,168,0.35);
    font-style: italic;
  }

  .footer-bottom p a {
    color: rgba(201,146,44,0.6);
    text-decoration: none;
  }

  /* ── Animations ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  @keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @keyframes slideTrack {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Mobile ── */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }

    #heritage {
      grid-template-columns: 1fr;
      padding: 4rem 1.5rem;
      gap: 3rem;
    }

    .heritage-badge { right: 0; }

    #collections { padding: 4rem 1.5rem; }

    .collections-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .collection-card:nth-child(2) { margin-top: 0; }

    .craft-pillars {
      grid-template-columns: repeat(2, 1fr);
    }

    .pillar { border-right: none; }
    .pillar:nth-child(2) { border-right: 1px solid var(--border); }

    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .footer-brand { grid-column: 1 / -1; }

    #quote, #newsletter, #craft { padding: 4rem 1.5rem; }

    .hero-frame { inset: 1rem; }
  }