/*
  ============================================================
  Castle Rock Contouring — Stylesheet
  ============================================================
  ML Software, LLC
  Copyright 2026. All rights reserved.

  File:        /css/crc.css
  Version:     0.4.0
  Updated:     2026-04-24
  Author:      Matthew Luke

  Version History:
    0.4.0  2026-04-24  Extracted from index.cfm inline <style>.
                       No CSS rule changes — pure file split.
  ============================================================
*/

/* ============================================================
       Castle Rock Contouring — Stylesheet
       ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream:      #faf6f0;
      --warm-white: #fff9f4;
      --sand:       #e8ddd0;
      --blush:      #d4a898;
      --rose:       #b87060;
      --rose-deep:  #9a5a4c;
      --deep:       #2c1f1a;
      --mid:        #6b4f47;
      --gold:       #c9a96e;
      --gold-lt:    #e8d5a8;
      --text:       #3a2a24;
      --text-lt:    #8a6f68;
      --max-w:      1280px;
    }

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

    .page-wrap {
      max-width: var(--max-w);
      margin: 0 auto;
      width: 100%;
    }

    /* ─── NAV ─── */
    nav.main-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(250,246,240,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,169,110,0.2);
      transition: padding 0.3s;
    }
    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 48px;
      transition: padding 0.3s;
    }
    nav.main-nav.scrolled .nav-inner { padding: 10px 48px; }

    .logo-img {
      height: 80px;
      width: auto;
      display: block;
      transition: height 0.3s;
    }
    nav.main-nav.scrolled .logo-img { height: 60px; }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--rose); }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-cart {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--deep);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      background: transparent;
      border: none;
      font-family: inherit;
      padding: 6px 0;
    }
    .nav-cart svg { width: 20px; height: 20px; }
    .cart-count {
      background: var(--rose);
      color: #fff;
      min-width: 20px;
      height: 20px;
      padding: 0 5px;
      border-radius: 10px;
      font-size: 10px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s;
    }
    .cart-count.bump { animation: bump 0.4s; }
    @keyframes bump {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.3); }
    }

    .hamburger {
      display: none;
      width: 28px; height: 22px;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      background: transparent;
      border: none;
      padding: 0;
    }
    .hamburger span {
      display: block;
      height: 1.5px;
      background: var(--deep);
      transition: transform 0.3s, opacity 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

    .mobile-nav {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--cream);
      z-index: 99;
      transform: translateX(100%);
      transition: transform 0.3s;
      padding: 100px 48px 48px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .mobile-nav.open { transform: translateX(0); }
    .mobile-nav a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 400;
      color: var(--deep);
      text-decoration: none;
      padding: 16px 0;
      border-bottom: 1px solid rgba(201,169,110,0.2);
    }

    /* ─── HERO ─── */
    .hero {
      background: var(--cream);
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      padding-top: 120px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 25% 40%, rgba(212,168,152,0.16) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 85% 75%, rgba(201,169,110,0.07) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      z-index: 5;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 60px 64px 100px;
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .eyebrow {
      font-size: 11px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .eyebrow::before {
      content: '';
      width: 36px;
      height: 1px;
      background: var(--gold);
    }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(56px, 6.5vw, 92px);
      font-weight: 300;
      line-height: 0.98;
      color: var(--deep);
      margin-bottom: 36px;
      letter-spacing: -0.01em;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--rose);
    }
    .hero-sub {
      font-size: 17px;
      font-weight: 300;
      line-height: 1.75;
      color: var(--mid);
      max-width: 480px;
      margin-bottom: 48px;
    }
    .cta-row {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-block;
      background: var(--rose);
      color: #fff;
      padding: 18px 38px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--deep); transform: translateY(-1px); }
    .btn-ghost {
      display: inline-block;
      color: var(--mid);
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      border-bottom: 1px solid var(--sand);
      padding-bottom: 6px;
      transition: color 0.2s, border-color 0.2s;
      background: transparent;
      border-top: none;
      border-left: none;
      border-right: none;
      cursor: pointer;
      font-family: inherit;
    }
    .btn-ghost:hover { color: var(--rose); border-color: var(--rose); }
    .meta-row {
      margin-top: 64px;
      padding-top: 32px;
      border-top: 1px solid rgba(201,169,110,0.25);
      display: flex;
      gap: 48px;
    }
    .meta-item {
      font-size: 12px;
      letter-spacing: 0.08em;
      color: var(--text-lt);
    }
    .meta-item strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 400;
      color: var(--deep);
      letter-spacing: 0;
      margin-bottom: 4px;
    }
    .visual-frame {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
    }
    .visual-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(0.92) brightness(0.95);
    }
    .visual-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(44,31,26,0) 50%, rgba(44,31,26,0.55) 100%),
        radial-gradient(ellipse at 70% 20%, rgba(184,112,96,0.18) 0%, transparent 60%);
      pointer-events: none;
    }
    .visual-mark {
      position: absolute;
      bottom: 32px;
      left: 32px;
      right: 32px;
      color: rgba(255,255,255,0.95);
      z-index: 2;
    }
    .visual-name {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 36px;
      font-weight: 300;
      line-height: 1;
      margin-bottom: 8px;
    }
    .visual-role {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
    }
    .visual-badge {
      position: absolute;
      top: 28px;
      right: 28px;
      background: rgba(44,31,26,0.85);
      backdrop-filter: blur(12px);
      color: var(--gold-lt);
      padding: 14px 18px;
      text-align: center;
      z-index: 2;
    }
    .visual-badge-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 300;
      line-height: 1;
    }
    .visual-badge-lbl {
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(232,213,168,0.7);
      margin-top: 4px;
    }

    /* ─── TRUST STRIP ─── */
    .trust-strip {
      background: var(--deep);
    }
    .trust-strip .page-wrap {
      padding: 22px 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,0.78);
      font-size: 13px;
      letter-spacing: 0.06em;
    }
    .trust-item .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ─── SECTION SHARED ─── */
    section {
      padding: 0;
      scroll-margin-top: 90px; /* clear fixed nav on anchor scroll */
    }
    section > .page-wrap { padding: 100px 64px; }
    .section-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 300;
      line-height: 1.15;
      color: var(--deep);
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }
    .section-title em { font-style: italic; color: var(--rose); }
    .section-body {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--mid);
      max-width: 560px;
    }
    .divider {
      width: 48px;
      height: 1px;
      background: var(--gold);
      margin: 32px 0;
    }

    /* ─── SERVICES ─── */
    .services { background: var(--warm-white); }
    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 64px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .service-card {
      background: var(--cream);
      padding: 48px 36px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }
    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 3px;
      background: var(--rose);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }
    .service-card:hover { background: #fff; }
    .service-card:hover::after { transform: scaleX(1); }
    .service-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 48px;
      font-weight: 300;
      color: var(--gold-lt);
      line-height: 1;
      margin-bottom: 20px;
    }
    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 500;
      color: var(--deep);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }
    .service-desc {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--mid);
      margin-bottom: 20px;
    }
    .service-link {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--rose);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .service-link:hover { border-color: var(--rose); }

    /* ─── ABOUT ─── */
    .about { background: var(--cream); }
    .about > .page-wrap {
      padding: 100px 64px;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: center;
    }
    .about-visual {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
    }
    .about-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .about-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(44,31,26,0) 70%, rgba(44,31,26,0.4) 100%);
    }
    .about-accent-box {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: var(--deep);
      color: #fff;
      padding: 28px 32px;
      box-shadow: 0 24px 48px rgba(44,31,26,0.2);
      z-index: 5;
    }
    .about-accent-stat {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      font-weight: 300;
      color: var(--gold-lt);
      line-height: 1;
    }
    .about-accent-lbl {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-top: 6px;
    }
    .about-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-style: italic;
      color: var(--rose);
      margin-top: 32px;
    }
    .about-role {
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-lt);
      margin-top: 4px;
    }
    .about-creds {
      margin-top: 32px;
      display: flex;
      gap: 32px;
      padding-top: 28px;
      border-top: 1px solid rgba(201,169,110,0.25);
    }
    .about-cred {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-lt);
    }
    .about-cred strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--deep);
      letter-spacing: 0;
      text-transform: none;
      margin-bottom: 4px;
    }

    /* ─── SHOP ─── */
    .shop { background: var(--warm-white); }
    .shop-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 56px;
    }
    .shop-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .product-card {
      background: var(--cream);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(44,31,26,0.08);
    }
    .product-img {
      aspect-ratio: 1;
      background: linear-gradient(155deg, var(--blush) 0%, var(--rose) 100%);
      position: relative;
      overflow: hidden;
    }
    .product-img::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18) 0%, transparent 45%),
        radial-gradient(circle at 75% 70%, rgba(44,31,26,0.18) 0%, transparent 50%);
    }
    .product-img-monogram {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px;
      font-weight: 300;
      font-style: italic;
      color: rgba(255,255,255,0.9);
      letter-spacing: -0.02em;
    }
    .product-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--deep);
      color: var(--gold-lt);
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 6px 12px;
    }
    .product-body {
      padding: 24px 24px 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .product-cat {
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--deep);
      margin-bottom: 6px;
      letter-spacing: -0.01em;
    }
    .product-desc {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.6;
      color: var(--mid);
      margin-bottom: 20px;
      flex: 1;
    }
    .product-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .product-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 400;
      color: var(--deep);
      line-height: 1;
    }
    .product-price-unit {
      font-size: 12px;
      color: var(--text-lt);
      font-family: 'DM Sans', sans-serif;
      margin-left: 4px;
    }
    .product-add {
      background: var(--rose);
      color: #fff;
      padding: 12px 20px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      font-family: inherit;
      transition: background 0.2s;
    }
    .product-add:hover { background: var(--deep); }
    .product-add.added {
      background: var(--deep);
      color: var(--gold-lt);
    }

    /* ─── PRICING ─── */
    .pricing { background: var(--cream); }
    .pricing-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 64px;
    }
    .pricing-header .section-label,
    .pricing-header .section-body {
      margin-left: auto;
      margin-right: auto;
    }
    .pricing-header .divider {
      margin-left: auto;
      margin-right: auto;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }
    .pricing-card {
      background: var(--warm-white);
      padding: 48px 36px;
      position: relative;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(201,169,110,0.2);
      transition: transform 0.3s, border-color 0.3s;
    }
    .pricing-card:hover {
      transform: translateY(-4px);
      border-color: var(--rose);
    }
    .pricing-card.featured {
      background: var(--deep);
      color: #fff;
      transform: scale(1.04);
      border-color: var(--rose);
      box-shadow: 0 32px 64px rgba(44,31,26,0.18);
    }
    .pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--rose);
      color: #fff;
      padding: 6px 16px;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .pricing-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }
    .pricing-card.featured .pricing-name { color: var(--gold-lt); }
    .pricing-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px;
      font-weight: 300;
      line-height: 1;
      color: var(--deep);
      margin-bottom: 4px;
    }
    .pricing-card.featured .pricing-price { color: #fff; }
    .pricing-price sup {
      font-size: 24px;
      font-weight: 400;
      vertical-align: top;
      margin-right: 4px;
      color: var(--rose);
    }
    .pricing-card.featured .pricing-price sup { color: var(--gold-lt); }
    .pricing-cross {
      font-size: 13px;
      color: var(--text-lt);
      text-decoration: line-through;
      margin-bottom: 24px;
    }
    .pricing-card.featured .pricing-cross { color: rgba(255,255,255,0.4); }
    .pricing-features {
      list-style: none;
      margin: 24px 0 32px;
      flex: 1;
    }
    .pricing-features li {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.6;
      color: var(--mid);
      padding: 10px 0;
      border-bottom: 1px solid rgba(201,169,110,0.15);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.1); }
    .pricing-features li::before {
      content: '✓';
      color: var(--rose);
      font-weight: 500;
      flex-shrink: 0;
    }
    .pricing-card.featured .pricing-features li::before { color: var(--gold-lt); }
    .pricing-cta {
      display: block;
      text-align: center;
      padding: 16px 24px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid var(--sand);
      color: var(--mid);
      transition: all 0.2s;
    }
    .pricing-cta:hover { border-color: var(--rose); color: var(--rose); }
    .pricing-card.featured .pricing-cta {
      background: var(--rose);
      color: #fff;
      border-color: var(--rose);
    }
    .pricing-card.featured .pricing-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--deep); }

    /* ─── TESTIMONIALS ─── */
    .testimonials { background: var(--deep); color: #fff; }
    .testimonials .section-label { color: var(--gold); }
    .testimonials .section-title { color: #fff; }
    .testimonials .divider { background: var(--gold); opacity: 0.5; }
    .testimonials-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 64px;
    }
    .testimonials-header .divider {
      margin-left: auto;
      margin-right: auto;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .testimonial {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,169,110,0.18);
      padding: 36px 32px;
    }
    .testimonial-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 20px;
    }
    .testimonial-stars span {
      color: var(--gold);
      font-size: 16px;
    }
    .testimonial-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px;
      font-weight: 300;
      font-style: italic;
      line-height: 1.55;
      color: rgba(255,255,255,0.92);
      margin-bottom: 24px;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 20px;
      border-top: 1px solid rgba(201,169,110,0.15);
    }
    .testimonial-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blush), var(--rose));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-style: italic;
      color: #fff;
      flex-shrink: 0;
    }
    .testimonial-name {
      font-size: 14px;
      font-weight: 500;
      color: #fff;
    }
    .testimonial-meta {
      font-size: 11px;
      letter-spacing: 0.1em;
      color: rgba(232,213,168,0.5);
      margin-top: 2px;
    }

    /* ─── CONTACT ─── */
    .contact { background: var(--cream); }
    .contact > .page-wrap {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      padding: 100px 64px;
    }
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 32px;
      margin-top: 32px;
    }
    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
    }
    .contact-icon {
      width: 40px; height: 40px;
      background: var(--rose);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg { width: 18px; height: 18px; }
    .contact-detail-lbl {
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-lt);
      margin-bottom: 4px;
    }
    .contact-detail-val {
      font-size: 16px;
      color: var(--deep);
      line-height: 1.5;
    }
    .contact-detail-val a {
      color: var(--deep);
      text-decoration: none;
      transition: color 0.2s;
    }
    .contact-detail-val a:hover { color: var(--rose); }

    .contact-form {
      background: var(--warm-white);
      padding: 48px 40px;
      border: 1px solid rgba(201,169,110,0.2);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 20px;
    }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-lt);
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      background: var(--cream);
      border: 1px solid var(--sand);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--text);
      transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--rose);
    }
    .form-group textarea {
      min-height: 120px;
      resize: vertical;
      font-family: inherit;
    }
    .form-submit {
      width: 100%;
      margin-top: 12px;
    }
    .form-success {
      display: none;
      margin-top: 20px;
      padding: 16px;
      background: rgba(184,112,96,0.1);
      border-left: 3px solid var(--rose);
      color: var(--deep);
      font-size: 14px;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--deep);
      color: rgba(255,255,255,0.6);
      padding: 64px 64px 32px;
    }
    .footer-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(201,169,110,0.15);
    }
    .footer-brand img {
      height: 96px;
      width: auto;
      margin-bottom: 20px;
      display: block;
    }
    .footer-brand p {
      font-size: 14px;
      line-height: 1.6;
      max-width: 320px;
    }
    .footer-col h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 500;
      color: var(--gold-lt);
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 14px;
      padding: 6px 0;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold-lt); }
    .footer-meta {
      max-width: var(--max-w);
      margin: 32px auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-meta a {
      color: rgba(232,213,168,0.7);
      text-decoration: none;
    }
    .footer-meta a:hover { color: var(--gold-lt); }

    /* ─── CART DRAWER ─── */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(44,31,26,0.5);
      z-index: 200;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .cart-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }
    .cart-drawer {
      position: fixed;
      top: 0; right: 0;
      width: 440px;
      max-width: 100vw;
      height: 100vh;
      background: var(--cream);
      z-index: 201;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
      display: flex;
      flex-direction: column;
    }
    .cart-drawer.open { transform: translateX(0); }
    .cart-head {
      padding: 28px 32px;
      border-bottom: 1px solid rgba(201,169,110,0.2);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .cart-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 500;
      color: var(--deep);
      letter-spacing: -0.01em;
    }
    .cart-title span {
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 400;
      color: var(--text-lt);
      margin-left: 8px;
    }
    .cart-close {
      background: transparent;
      border: none;
      cursor: pointer;
      color: var(--mid);
      padding: 4px;
      transition: color 0.2s;
    }
    .cart-close:hover { color: var(--rose); }
    .cart-close svg { width: 24px; height: 24px; }

    .cart-body {
      flex: 1;
      overflow-y: auto;
      padding: 24px 32px;
    }
    .cart-empty {
      text-align: center;
      padding: 64px 0;
      color: var(--text-lt);
    }
    .cart-empty-icon {
      font-size: 48px;
      margin-bottom: 16px;
      opacity: 0.4;
    }
    .cart-empty-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 20px;
      color: var(--mid);
      margin-bottom: 24px;
    }

    .cart-line {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(201,169,110,0.15);
    }
    .cart-line-img {
      width: 80px;
      height: 80px;
      background: linear-gradient(155deg, var(--blush) 0%, var(--rose) 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 32px;
      color: rgba(255,255,255,0.9);
    }
    .cart-line-body {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .cart-line-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
    }
    .cart-line-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-weight: 500;
      color: var(--deep);
      line-height: 1.2;
    }
    .cart-line-remove {
      background: transparent;
      border: none;
      color: var(--text-lt);
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
      transition: color 0.2s;
      font-size: 16px;
      line-height: 1;
    }
    .cart-line-remove:hover { color: var(--rose); }
    .cart-line-cat {
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .cart-line-bot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 6px;
    }
    .cart-qty {
      display: flex;
      align-items: center;
      border: 1px solid var(--sand);
    }
    .cart-qty button {
      width: 28px;
      height: 28px;
      background: transparent;
      border: none;
      color: var(--deep);
      cursor: pointer;
      font-size: 14px;
      transition: background 0.2s;
    }
    .cart-qty button:hover { background: var(--sand); }
    .cart-qty span {
      width: 32px;
      text-align: center;
      font-size: 13px;
      font-weight: 500;
      color: var(--deep);
    }
    .cart-line-total {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 500;
      color: var(--deep);
    }

    .cart-foot {
      padding: 24px 32px 32px;
      border-top: 1px solid rgba(201,169,110,0.2);
      background: var(--warm-white);
    }
    .cart-summary {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }
    .cart-row {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: var(--mid);
    }
    .cart-row.total {
      padding-top: 12px;
      margin-top: 4px;
      border-top: 1px solid rgba(201,169,110,0.2);
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--deep);
    }
    .cart-checkout {
      width: 100%;
      background: var(--rose);
      color: #fff;
      padding: 18px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      font-family: inherit;
      transition: background 0.2s;
    }
    .cart-checkout:hover { background: var(--deep); }
    .cart-checkout:disabled {
      background: var(--sand);
      color: var(--text-lt);
      cursor: not-allowed;
    }
    .cart-note {
      text-align: center;
      font-size: 11px;
      color: var(--text-lt);
      margin-top: 12px;
      letter-spacing: 0.04em;
    }

    /* ─── FADE-UP ANIMATION ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s, transform 0.7s;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .hero-grid { grid-template-columns: 1fr; gap: 48px; }
      .visual-frame { aspect-ratio: 16/9; max-width: 600px; margin: 0 auto; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid .service-card:last-child { grid-column: 1 / -1; }
      .shop-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .contact > .page-wrap { grid-template-columns: 1fr; }
      .about > .page-wrap { grid-template-columns: 1fr; }
    }
    @media (max-width: 820px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-inner { padding: 14px 24px; }
      .nav-cart { font-size: 0; gap: 6px; }
      .nav-cart svg { width: 22px; height: 22px; }
      .cart-count.empty { display: none; }
      .logo-img { height: 56px; }
      nav.main-nav.scrolled .logo-img { height: 48px; }
      .hero-grid { padding: 40px 24px 60px; }
      .trust-strip .page-wrap { padding: 18px 24px; gap: 16px; }
      section > .page-wrap { padding: 64px 24px; }
      .services-grid { grid-template-columns: 1fr; }
      .services-grid .service-card:last-child { grid-column: auto; }
      .services-header { grid-template-columns: 1fr; }
      .shop-grid { grid-template-columns: 1fr; }
      .shop-header { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
      .pricing-card.featured { transform: none; }
      .pricing-card.featured:hover { transform: translateY(-4px); }
      .form-row { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .about > .page-wrap { padding: 64px 24px; gap: 48px; }
      .contact > .page-wrap { padding: 64px 24px; gap: 48px; }
      .contact-form { padding: 32px 24px; }
      .meta-row { flex-wrap: wrap; gap: 24px; }
      footer { padding: 48px 24px 24px; }
      .cart-drawer { width: 100vw; }
      h1, .section-title { font-size: clamp(40px, 7vw, 64px) !important; }
    }
