
  :root {
    --forest: #1a3a2a;
    --forest-deep: #0f2318;
    --sage: #6a9a7a;
    --cream: #f5f0e8;
    --cream-dark: #ede8df;
    --ink: #1a1a16;
    --muted: #7a7a72;
    --white: #fdfcf9;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

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

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* starts transparent over hero image */
    background: transparent;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
    border-bottom: 1px solid transparent;
  }
  nav.scrolled {
    background: rgba(245,240,232,0.93);
    backdrop-filter: blur(14px);
    border-bottom-color: rgba(26,58,42,0.1);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.5s ease;
  }
  .nav-logo span {
    font-style: italic;
    font-weight: 300;
    font-size: 11px;
    display: block;
    letter-spacing: 0.3em;
    color: rgba(245,240,232,0.6);
    margin-top: -4px;
    text-transform: lowercase;
    transition: color 0.5s ease;
  }
  nav.scrolled .nav-logo { color: var(--forest-deep); }
  nav.scrolled .nav-logo span { color: var(--sage); }

  .nav-cta {
    background: var(--cream);
    color: var(--forest-deep);
    text-decoration: none;
    padding: 10px 24px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
  }
  nav.scrolled .nav-cta {
    background: var(--forest);
    color: var(--cream);
  }
  .nav-cta:hover { opacity: 0.85; }

  /* ── HERO — full bleed product image ── */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--forest-deep);
  }

  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    /* subtle zoom-in on load */
    animation: heroZoom 8s ease forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1.0); }
  }

  /* dark gradient at bottom for text legibility */
  .hero-gradient {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to top, rgba(10,28,18,0.82) 0%, rgba(10,28,18,0.3) 40%, rgba(10,28,18,0.08) 70%, transparent 100%);
    pointer-events: none;
  }

  /* thin top gradient so nav reads on image */
  .hero-gradient-top {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,28,18,0.45) 0%, transparent 25%);
    pointer-events: none;
  }

  .hero-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0 60px 64px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-text { flex: 1; }

  .hero-tag {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--sage);
    background: rgba(106,154,122,0.15);
    border: 1px solid rgba(106,154,122,0.4);
    padding: 5px 14px;
    margin-bottom: 18px;
    animation: fadeUp 0.7s 0.2s ease both;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6.5vw, 86px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.04;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    animation: fadeUp 0.7s 0.35s ease both;
  }
  .hero h1 em { font-style: italic; color: rgba(245,240,232,0.65); }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.5s ease both;
  }

  .hero-btn-primary {
    background: var(--cream);
    color: var(--forest-deep);
    text-decoration: none;
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .hero-btn-primary:hover { opacity: 0.88; }

  .hero-btn-secondary {
    border: 1px solid rgba(245,240,232,0.4);
    color: var(--cream);
    text-decoration: none;
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
    transition: border-color 0.3s, background 0.3s;
  }
  .hero-btn-secondary:hover {
    border-color: rgba(245,240,232,0.8);
    background: rgba(245,240,232,0.08);
  }

  /* price badge — top right of hero */
  .hero-badge {
    flex-shrink: 0;
    text-align: right;
    animation: fadeUp 0.7s 0.6s ease both;
  }
  .hero-badge-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
    display: block;
    margin-bottom: 4px;
    font-weight: 300;
  }
  .hero-badge-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    letter-spacing: 0.02em;
  }

  /* scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s 1.2s ease both;
    pointer-events: none;
  }
  .scroll-hint span {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.4);
    font-weight: 300;
  }
  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(245,240,232,0.4), transparent);
    animation: scrollPulse 2s 1.5s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%,100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.6); }
  }

  /* ── PRODUCT GRID ── */
  .products {
    padding: 80px 0 100px;
    background: var(--cream);
  }
  .section-header {
    text-align: center;
    margin-bottom: 56px;
    padding: 0 24px;
  }
  .section-eyebrow {
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 14px;
    font-weight: 400;
    display: block;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
    color: var(--forest-deep);
    letter-spacing: 0.05em;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 3px;
  }

  .product-card {
    background: var(--white);
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(15,35,24,0.15);
  }

  .product-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background: var(--cream-dark);
  }
  .product-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
  }
  .product-card:hover .product-img { transform: scale(1.06); }

  .product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,35,24,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .product-card:hover .product-overlay { opacity: 1; }
  .overlay-text {
    color: var(--cream);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid rgba(245,240,232,0.6);
    padding: 12px 28px;
  }

  .product-info {
    padding: 20px 22px 26px;
    border-top: 1px solid var(--cream-dark);
  }
  .product-tag {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 400;
    margin-bottom: 5px;
    display: block;
  }
  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 500;
    color: var(--forest-deep);
    margin-bottom: 4px;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }
  .product-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 300;
    margin-bottom: 16px;
  }
  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--forest);
  }
  .product-btn {
    background: var(--forest);
    color: var(--cream);
    border: none;
    padding: 10px 16px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }
  .product-btn:hover { background: var(--forest-deep); }
  .product-btn svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }

  /* ── MANIFESTO ── */
  .manifesto {
    background: var(--white);
    padding: 100px 24px;
    text-align: center;
  }
  .manifesto-l {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: var(--forest);
    font-weight: 500;
    margin-bottom: 28px;
    display: block;
  }
  .manifesto-rule {
    width: 60px; height: 1px;
    background: var(--forest);
    margin: 0 auto 40px;
    opacity: 0.25;
  }
  .manifesto p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 14px;
  }
  .manifesto p strong { font-weight: 600; }
  .manifesto p em { font-style: italic; }

  /* ── VISION BAND ── */
  .vision-band {
    background: var(--forest);
    padding: 90px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  .vision-band::before {
    content: 'LUUMARI';
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 14vw, 160px);
    font-weight: 500;
    color: rgba(245,240,232,0.035);
    position: absolute;
    white-space: nowrap;
    letter-spacing: 0.2em;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
  }
  .vision-statements {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 600px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .vision-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 3vw, 26px);
    color: rgba(245,240,232,0.72);
    font-weight: 300;
    line-height: 1.5;
    border-top: 1px solid rgba(106,154,122,0.22);
    padding-top: 32px;
    width: 100%;
  }
  .vision-item:first-child { border-top: none; padding-top: 0; }
  .vision-item strong { color: var(--cream); font-weight: 500; }
  .vision-item em { font-style: italic; color: var(--sage); }

  /* ── FOOTER ── */
  footer {
    background: var(--forest-deep);
    padding: 60px 24px 40px;
    text-align: center;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--cream);
    display: block;
    margin-bottom: 4px;
  }
  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--sage);
    letter-spacing: 0.1em;
    margin-bottom: 28px;
    display: block;
  }
  .footer-rule {
    width: 40px; height: 1px;
    background: rgba(106,154,122,0.35);
    margin: 0 auto 22px;
  }
  .footer-copy {
    font-size: 11px;
    color: rgba(245,240,232,0.28);
    letter-spacing: 0.1em;
    font-weight: 300;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* ── MOBILE ── */
  @media (max-width: 680px) {
    nav { padding: 18px 20px; }
    .hero-content {
      flex-direction: column;
      align-items: flex-start;
      padding: 0 24px 48px;
      gap: 20px;
    }
    .hero-badge { text-align: left; }
    .scroll-hint { display: none; }
    .products-grid { grid-template-columns: 1fr; }
    .vision-band { padding: 60px 20px; }
    .product-info { padding: 16px 16px 20px; }
  }
