  :root {
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --gold-pale: #FAF5E9;
    --cream: #FEFCF6;
    --cream-dark: #F5EFE0;
    --ivory: #FFFEF9;
    --charcoal: #1A1814;
    --charcoal-soft: #2E2C28;
    --warm-gray: #6B6456;
    --warm-gray-light: #A89D90;
    --border: rgba(201,168,76,0.25);
    --border-strong: rgba(201,168,76,0.5);
    --shadow: 0 4px 40px rgba(26,24,20,0.08);
    --shadow-lg: 0 12px 60px rgba(26,24,20,0.14);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;
    --nav-h: 220px;
    --radius: 2px;
    --radius-lg: 6px;
  }

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

  html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

  body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ─── TOUCH TARGETS ─── */
  a, button, [onclick], input[type="submit"], input[type="button"] {
    -webkit-tap-highlight-color: transparent;
  }
  button, .btn-primary, .btn-outline, .btn-cart, .nav-cta, .filter-btn, .quick-btn, .chat-send, .chat-close {
    min-height: 36px;
    touch-action: manipulation;
  }
  @media (hover: none) {
    /* Remove hover-only effects that don't work on touch */
    .cursor, .cursor-dot { display: none; }
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--cream-dark); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

  /* ─── CURSOR ─── */
  .cursor {
    width: 12px; height: 12px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: multiply;
  }
  .cursor-dot {
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform 0.05s ease;
  }

  /* ─── TOP BAR ─── */
  .topbar {
    background: var(--charcoal);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 9px 20px;
  }

  /* ─── NAV ─── */
  nav {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,254,249,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    display: flex; align-items: center;
    padding: 0 5vw;
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: var(--shadow); }
  .nav-inner {
    width: 100%; max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    line-height: 1;
    flex-shrink: 0;
  }
  .nav-logo-img {
    height: 200px !important;
    width: auto !important;
    display: block;
    max-width: none !important;
  }
  .nav-links {
    display: flex; align-items: center; gap: 22px;
    list-style: none;
  }
  .nav-links a {
    font-size: 11px; font-weight: 400;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--warm-gray);
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.25s ease;
  }
  .nav-links a:hover { color: var(--charcoal); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--charcoal); color: var(--gold-light) !important;
    padding: 10px 22px; letter-spacing: 0.12em;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--charcoal) !important; }
  .nav-cta::after { display: none !important; }
  .nav-mobile-btn {
    display: none; background: none; border: none;
    cursor: pointer; flex-direction: column; gap: 5px;
    padding: 4px;
  }
  .nav-mobile-btn span {
    display: block; width: 24px; height: 1.5px;
    background: var(--charcoal); transition: 0.3s;
  }
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: var(--ivory); padding: 100px 5vw 40px;
    flex-direction: column; gap: 0;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--warm-gray); padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold); }

  /* ─── HERO ─── */
  .hero {
    min-height: calc(100vh - var(--nav-h) - 38px);
    background: var(--cream);
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  .hero::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: var(--charcoal);
    z-index: 0;
  }
  .hero-left {
    padding: 80px 5vw 80px 8vw;
    position: relative; z-index: 1;
  }
  .hero-eyebrow {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 400;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 32px; height: 1px; background: var(--gold);
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 28px;
  }
  .hero-title em { font-style: italic; color: var(--gold); }
  .hero-desc {
    font-size: 15px; font-weight: 300;
    color: var(--warm-gray); line-height: 1.85;
    max-width: 400px; margin-bottom: 44px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--charcoal); color: var(--gold-light);
    font-family: var(--font-body); font-size: 11px; font-weight: 400;
    letter-spacing: 0.16em; text-transform: uppercase;
    padding: 15px 32px; border: none; cursor: pointer;
    transition: background 0.25s, color 0.25s;
    text-decoration: none;
  }
  .btn-primary:hover { background: var(--gold); color: var(--charcoal); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--charcoal);
    font-family: var(--font-body); font-size: 11px; font-weight: 400;
    letter-spacing: 0.16em; text-transform: uppercase;
    padding: 14px 32px; border: 1px solid var(--charcoal);
    cursor: pointer; transition: all 0.25s;
    text-decoration: none;
  }
  .btn-outline:hover { background: var(--charcoal); color: var(--cream); }
  .hero-right {
    position: relative; z-index: 1;
    height: 100%; min-height: 500px;
    display: flex; align-items: center; justify-content: center;
    padding: 60px 5vw;
  }
  .hero-image-frame {
    width: 100%; max-width: 480px;
    aspect-ratio: 4/5;
    border: 1px solid rgba(201,168,76,0.3);
    position: relative;
    overflow: hidden;
  }
  .hero-image-frame::before {
    content: '';
    position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, transparent 50%);
    z-index: 1; pointer-events: none;
  }
  .hero-img-placeholder {
    width: 100%; height: 100%;
    background: var(--charcoal-soft);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
  }
  .hero-img-placeholder svg { opacity: 0.3; }
  .hero-img-placeholder p {
    color: var(--gold-light); font-size: 11px;
    letter-spacing: 0.16em; text-transform: uppercase;
    opacity: 0.5;
  }
  .hero-frame-label {
    position: absolute; bottom: -1px; left: -1px; right: -1px;
    background: var(--gold); color: var(--charcoal);
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 500; padding: 10px 20px; z-index: 2;
  }
  .hero-stats {
    display: flex; gap: 40px; margin-top: 56px;
  }
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 300;
    color: var(--charcoal); line-height: 1;
  }
  .hero-stat-label {
    font-size: 10px; font-weight: 300;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--warm-gray-light); margin-top: 4px;
  }

  /* ─── SECTION COMMON ─── */
  section { padding: 100px 5vw; }
  .section-inner { max-width: 1280px; margin: 0 auto; }
  .section-label {
    font-size: 10px; font-weight: 400;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: ''; display: block;
    width: 24px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300; line-height: 1.15;
    color: var(--charcoal);
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-subtitle {
    font-size: 15px; font-weight: 300;
    color: var(--warm-gray); line-height: 1.85;
    max-width: 520px; margin-top: 16px;
  }
  .divider {
    width: 48px; height: 1px;
    background: var(--gold); margin: 28px 0;
  }

  /* ─── MARQUEE ─── */
  .marquee-wrap {
    background: var(--charcoal);
    padding: 18px 0; overflow: hidden;
    white-space: nowrap;
  }
  .marquee-track {
    display: inline-flex; gap: 0;
    animation: marquee 28s linear infinite;
  }
  .marquee-track:hover { animation-play-state: paused; }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 20px;
    padding: 0 36px;
    font-size: 11px; font-weight: 300;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold-light);
  }
  .marquee-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ─── SERVICES ─── */
  .services { background: var(--ivory); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px; background: var(--border);
    border: 1px solid var(--border);
    margin-top: 60px;
  }
  .service-card {
    background: var(--ivory);
    padding: 48px 36px;
    position: relative; overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .service-card:hover { background: var(--cream); }
  .service-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width 0.4s ease;
  }
  .service-card:hover::after { width: 100%; }
  .service-num {
    font-family: var(--font-display);
    font-size: 48px; font-weight: 300;
    color: var(--cream-dark); line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s;
  }
  .service-card:hover .service-num { color: var(--gold-pale); }
  .service-icon {
    width: 48px; height: 48px;
    background: var(--gold-pale);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .service-name {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 400;
    color: var(--charcoal); margin-bottom: 12px;
  }
  .service-desc {
    font-size: 14px; font-weight: 300;
    color: var(--warm-gray); line-height: 1.8;
  }
  .service-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 10px; font-weight: 400;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); margin-top: 24px;
    transition: gap 0.2s;
  }
  .service-card:hover .service-link { gap: 14px; }

  /* ─── GALLERY / PORTFOLIO ─── */
  .gallery { background: var(--cream); }
  .gallery-header {
    display: flex; align-items: flex-end;
    justify-content: space-between; flex-wrap: wrap; gap: 20px;
    margin-bottom: 48px;
  }
  .gallery-filters {
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .filter-btn {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 400;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 8px 20px; background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--warm-gray); cursor: pointer;
    transition: all 0.2s;
  }
  .filter-btn.active,
  .filter-btn:hover {
    background: var(--charcoal); color: var(--gold-light);
    border-color: var(--charcoal);
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
  }
  .gallery-item {
    position: relative; overflow: hidden;
    background: var(--charcoal-soft);
    cursor: pointer;
  }
  .gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 4; }
  .gallery-item:nth-child(3) { grid-column: span 3; }
  .gallery-item:nth-child(4) { grid-column: span 4; }
  .gallery-item:nth-child(5) { grid-column: span 3; }
  .gallery-item:nth-child(6) { grid-column: span 4; }
  .gallery-item:nth-child(7) { grid-column: span 4; }
  .gallery-item:nth-child(8) { grid-column: span 4; }
  .gallery-placeholder {
    width: 100%; aspect-ratio: 4/3;
    background: var(--charcoal-soft);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px;
  }
  .gallery-item:nth-child(1) .gallery-placeholder {
    aspect-ratio: 4/5;
  }
  .gallery-placeholder svg { opacity: 0.2; }
  .gallery-placeholder span {
    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold-light); opacity: 0.4;
  }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(26,24,20,0.7);
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: flex-end;
    padding: 24px;
    opacity: 0; transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-tag {
    font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); background: rgba(26,24,20,0.6);
    padding: 4px 10px; margin-bottom: 8px;
  }
  .gallery-caption {
    font-family: var(--font-display); font-size: 18px;
    font-weight: 300; color: var(--cream);
  }
  .upload-prompt {
    background: var(--gold-pale);
    border: 2px dashed var(--gold);
    grid-column: span 12;
    padding: 36px; text-align: center;
    margin-top: 8px;
    cursor: pointer; transition: background 0.2s;
  }
  .upload-prompt:hover { background: var(--cream-dark); }
  .upload-prompt p {
    font-size: 13px; font-weight: 300;
    color: var(--warm-gray); line-height: 1.7;
  }
  .upload-prompt strong { color: var(--gold); font-weight: 500; }

  /* ─── PROCESS ─── */
  .process { background: var(--charcoal); }
  .process .section-label { color: var(--gold); }
  .process .section-label::before { background: var(--gold); }
  .process .section-title { color: var(--cream); }
  .process .section-subtitle { color: var(--warm-gray-light); }
  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 64px;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute; top: 36px; left: 10%; right: 10%;
    height: 1px; background: var(--border-strong);
  }
  .process-step {
    padding: 0 32px 0 0; text-align: left;
    position: relative;
  }
  .step-number {
    width: 72px; height: 72px;
    border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 28px;
    font-weight: 300; color: var(--gold);
    margin-bottom: 28px; background: var(--charcoal);
    position: relative; z-index: 1;
  }
  .step-title {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 300; color: var(--cream); margin-bottom: 12px;
  }
  .step-desc {
    font-size: 13px; font-weight: 300;
    color: var(--warm-gray-light); line-height: 1.85;
  }

  /* ─── PRODUCTS / SHOP ─── */
  .shop { background: var(--ivory); }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px; margin-top: 56px;
  }
  .product-card {
    background: var(--cream);
    border: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }
  .product-badge {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 5px 12px; font-weight: 500;
  }
  .badge-new { background: var(--gold); color: var(--charcoal); }
  .badge-popular { background: var(--charcoal); color: var(--gold-light); }
  .product-image {
    aspect-ratio: 4/3;
    background: var(--charcoal-soft);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px;
    position: relative; overflow: hidden;
  }
  .product-img-upload {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px;
    opacity: 0; transition: opacity 0.3s;
    background: rgba(26,24,20,0.6);
    cursor: pointer;
  }
  .product-card:hover .product-img-upload { opacity: 1; }
  .product-img-upload span {
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold-light);
  }
  .product-image svg { opacity: 0.2; }
  .product-image p { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); opacity: 0.4; }
  .product-info { padding: 24px; }
  .product-cat {
    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
  }
  .product-name {
    font-family: var(--font-display); font-size: 20px;
    font-weight: 400; color: var(--charcoal); margin-bottom: 8px;
  }
  .product-desc {
    font-size: 13px; font-weight: 300;
    color: var(--warm-gray); line-height: 1.7; margin-bottom: 20px;
  }
  .product-footer {
    display: flex; align-items: center;
    justify-content: space-between;
  }
  .product-price {
    font-family: var(--font-display); font-size: 24px;
    font-weight: 300; color: var(--charcoal);
  }
  .product-price small {
    font-family: var(--font-body); font-size: 11px;
    color: var(--warm-gray-light); font-weight: 300;
  }
  .btn-cart {
    background: var(--charcoal); color: var(--gold-light);
    border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 10px;
    font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 10px 18px; transition: all 0.2s;
  }
  .btn-cart:hover { background: var(--gold); color: var(--charcoal); }

  /* ─── QUOTE / CUSTOM ORDER FORM ─── */
  .quote-section {
    background: var(--gold-pale);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .quote-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }
  .form-group { margin-bottom: 24px; }
  .form-label {
    display: block; font-size: 10px; font-weight: 400;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--warm-gray); margin-bottom: 8px;
  }
  .form-input,
  .form-select,
  .form-textarea {
    width: 100%; padding: 13px 16px;
    background: var(--ivory);
    border: 1px solid var(--border-strong);
    color: var(--charcoal);
    font-family: var(--font-body); font-size: 14px; font-weight: 300;
    outline: none; transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none; border-radius: 0;
  }
  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  }
  .form-textarea { min-height: 120px; resize: vertical; }
  .form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .form-file-area {
    border: 2px dashed var(--border-strong);
    padding: 32px 20px; text-align: center;
    cursor: pointer; transition: all 0.2s;
    background: var(--ivory);
  }
  .form-file-area:hover { border-color: var(--gold); background: var(--cream); }
  .form-file-area input { display: none; }
  .form-file-area p { font-size: 13px; color: var(--warm-gray); font-weight: 300; }
  .form-file-area strong { color: var(--gold); font-weight: 500; }
  .file-preview-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
  .file-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--charcoal); color: var(--gold-light);
    font-size: 11px; padding: 4px 12px;
  }
  .file-chip button {
    background: none; border: none; color: var(--gold);
    cursor: pointer; font-size: 14px; line-height: 1;
  }
  .quote-info { padding-top: 8px; }
  .info-card {
    background: var(--ivory);
    border: 1px solid var(--border);
    padding: 32px; margin-bottom: 20px;
  }
  .info-card h3 {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 300; color: var(--charcoal); margin-bottom: 12px;
  }
  .info-card p { font-size: 14px; font-weight: 300; color: var(--warm-gray); line-height: 1.8; }
  .info-list { list-style: none; margin-top: 16px; }
  .info-list li {
    font-size: 13px; font-weight: 300; color: var(--warm-gray);
    padding: 8px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 10px;
  }
  .info-list li::before {
    content: ''; display: block;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
  }

  /* ─── PAYMENT SECTION ─── */
  .checkout-section { background: var(--cream); }
  .checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
  .checkout-form-wrap {
    background: var(--ivory);
    border: 1px solid var(--border); padding: 40px;
  }
  .checkout-summary {
    background: var(--charcoal); padding: 36px;
    align-self: start; position: sticky; top: 100px;
  }
  .checkout-summary h3 {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 300; color: var(--cream); margin-bottom: 24px;
    padding-bottom: 20px; border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .summary-item {
    display: flex; justify-content: space-between;
    font-size: 13px; font-weight: 300; color: var(--warm-gray-light);
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .summary-item.total {
    color: var(--gold-light); font-weight: 400;
    font-size: 15px; border-bottom: none; padding-top: 16px;
  }
  .payment-methods {
    display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap;
  }
  .payment-badge {
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 12px; border: 1px solid rgba(201,168,76,0.2);
    color: var(--gold-light); font-weight: 300;
  }
  .card-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .secure-note {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; color: var(--warm-gray); margin-top: 16px;
    font-weight: 300;
  }
  .secure-note svg { flex-shrink: 0; }

  /* ─── TESTIMONIALS ─── */
  .testimonials { background: var(--charcoal); }
  .testimonials .section-title { color: var(--cream); }
  .testimonials .section-label { color: var(--gold); }
  .testimonials .section-label::before { background: var(--gold); }
  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 56px;
  }
  .review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 36px;
  }
  .stars { color: var(--gold); font-size: 14px; margin-bottom: 20px; }
  .review-text {
    font-family: var(--font-display); font-size: 18px;
    font-weight: 300; font-style: italic; color: var(--cream);
    line-height: 1.7; margin-bottom: 24px;
  }
  .reviewer { display: flex; align-items: center; gap: 14px; }
  .reviewer-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gold); display: flex; align-items: center;
    justify-content: center; font-family: var(--font-display);
    font-size: 16px; color: var(--charcoal); font-weight: 500;
    flex-shrink: 0;
  }
  .reviewer-name {
    font-size: 14px; font-weight: 400; color: var(--cream);
  }
  .reviewer-role {
    font-size: 12px; font-weight: 300; color: var(--warm-gray-light);
    margin-top: 2px;
  }

  /* ─── CHATBOT ─── */
  .chatbot-toggle {
    position: fixed; bottom: 28px; right: 28px; z-index: 2000;
    width: 60px; height: 60px;
    background: var(--charcoal); border: 2px solid var(--gold);
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s, background 0.2s;
  }
  .chatbot-toggle:hover { transform: scale(1.08); background: var(--gold); }
  .chatbot-toggle svg { transition: fill 0.2s; }
  .chatbot-toggle:hover svg path { stroke: var(--charcoal); }
  .chatbot-badge {
    position: absolute; top: -4px; right: -4px;
    width: 18px; height: 18px; background: var(--gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 600; color: var(--charcoal);
  }
  .chatbot-window {
    position: fixed; bottom: 104px; right: 28px; z-index: 2000;
    width: 360px; max-height: 520px;
    background: var(--ivory); border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column;
    transform: scale(0.9) translateY(20px);
    opacity: 0; pointer-events: none;
    transform-origin: bottom right;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .chatbot-window.open {
    transform: scale(1) translateY(0);
    opacity: 1; pointer-events: all;
  }
  .chat-header {
    background: var(--charcoal); padding: 18px 20px;
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .chat-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gold); display: flex;
    align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 14px;
    color: var(--charcoal); font-weight: 600; flex-shrink: 0;
  }
  .chat-header-info h4 {
    font-size: 14px; font-weight: 400; color: var(--cream);
  }
  .chat-header-info p {
    font-size: 11px; color: var(--gold); font-weight: 300;
  }
  .chat-close {
    margin-left: auto; background: none; border: none;
    color: var(--warm-gray-light); cursor: pointer; font-size: 18px;
    transition: color 0.2s;
  }
  .chat-close:hover { color: var(--gold); }
  .chat-messages {
    flex: 1; overflow-y: auto; padding: 20px;
    display: flex; flex-direction: column; gap: 14px;
    max-height: 320px;
  }
  .chat-msg {
    max-width: 85%;
    font-size: 13px; font-weight: 300; line-height: 1.6;
  }
  .chat-msg.bot { align-self: flex-start; }
  .chat-msg.user { align-self: flex-end; }
  .chat-bubble {
    padding: 10px 14px; border-radius: 0;
    display: inline-block;
  }
  .bot .chat-bubble {
    background: var(--cream-dark); color: var(--charcoal);
    border: 1px solid var(--border);
  }
  .user .chat-bubble {
    background: var(--charcoal); color: var(--gold-light);
  }
  .chat-time {
    font-size: 10px; color: var(--warm-gray-light);
    margin-top: 4px; font-weight: 300;
  }
  .chat-quick-btns {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding: 0 20px 12px;
  }
  .quick-btn {
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 12px; background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--warm-gray); cursor: pointer;
    transition: all 0.2s; font-family: var(--font-body);
  }
  .quick-btn:hover { background: var(--charcoal); color: var(--gold-light); border-color: var(--charcoal); }
  .chat-input-row {
    display: flex; border-top: 1px solid var(--border); padding: 12px 16px;
    gap: 10px; align-items: center;
  }
  .chat-input {
    flex: 1; border: none; background: transparent;
    font-family: var(--font-body); font-size: 13px;
    color: var(--charcoal); outline: none; font-weight: 300;
  }
  .chat-input::placeholder { color: var(--warm-gray-light); }
  .chat-send {
    background: var(--charcoal); border: none; cursor: pointer;
    width: 36px; height: 36px; display: flex;
    align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .chat-send:hover { background: var(--gold); }

  /* ─── EMAIL SUBSCRIPTION ─── */
  .email-bar {
    background: var(--charcoal);
    padding: 60px 5vw;
    border-top: 1px solid rgba(201,168,76,0.2);
  }
  .email-bar-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 32px;
  }
  .email-bar h3 {
    font-family: var(--font-display); font-size: 32px;
    font-weight: 300; color: var(--cream);
  }
  .email-bar p { font-size: 14px; font-weight: 300; color: var(--warm-gray-light); margin-top: 6px; }
  .email-form { display: flex; gap: 0; flex: 1; max-width: 440px; }
  .email-form input {
    flex: 1; padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.3); border-right: none;
    color: var(--cream); font-family: var(--font-body);
    font-size: 14px; font-weight: 300; outline: none;
    transition: border-color 0.2s;
  }
  .email-form input::placeholder { color: var(--warm-gray-light); }
  .email-form input:focus { border-color: var(--gold); }
  .email-form button {
    padding: 14px 24px; background: var(--gold);
    border: none; color: var(--charcoal);
    font-family: var(--font-body); font-size: 11px;
    font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s; white-space: nowrap;
  }
  .email-form button:hover { background: var(--gold-light); }

  /* ─── CONTACT ─── */
  .contact { background: var(--ivory); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .contact-info h2 {
    font-family: var(--font-display); font-size: 44px;
    font-weight: 300; color: var(--charcoal); margin-bottom: 20px;
  }
  .contact-info h2 em { font-style: italic; color: var(--gold); }
  .contact-info p { font-size: 15px; font-weight: 300; color: var(--warm-gray); line-height: 1.85; }
  .contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
  .contact-detail {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px; background: var(--cream);
    border: 1px solid var(--border);
  }
  .contact-detail-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--gold-pale); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }
  .contact-detail-text h4 { font-size: 11px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
  .contact-detail-text p { font-size: 14px; font-weight: 300; color: var(--charcoal); }
  .contact-form-wrap {
    background: var(--cream); border: 1px solid var(--border); padding: 44px;
  }
  .contact-form-wrap h3 {
    font-family: var(--font-display); font-size: 28px;
    font-weight: 300; color: var(--charcoal); margin-bottom: 8px;
  }
  .contact-form-wrap p { font-size: 13px; font-weight: 300; color: var(--warm-gray); margin-bottom: 32px; }

  /* ─── FAQ ─── */
  .faq { background: var(--cream-dark); }
  .faq-list { margin-top: 52px; max-width: 800px; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .faq-question {
    width: 100%; text-align: left; background: none; border: none;
    padding: 24px 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-display); font-size: 20px; font-weight: 300;
    color: var(--charcoal);
  }
  .faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--gold);
    transition: transform 0.3s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }
  .faq-item.open .faq-answer { max-height: 300px; }
  .faq-answer p {
    font-size: 14px; font-weight: 300; color: var(--warm-gray);
    line-height: 1.85; padding-bottom: 24px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .footer-main {
    padding: 72px 5vw 48px;
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer-brand img { margin-bottom: 20px; }
  .footer-brand p {
    font-size: 13px; font-weight: 300; color: var(--warm-gray-light);
    line-height: 1.8; max-width: 280px;
  }
  .footer-socials { display: flex; gap: 12px; margin-top: 24px; }
  .social-link {
    width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--warm-gray-light); font-size: 14px;
    transition: all 0.2s; text-decoration: none;
  }
  .social-link:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
  .footer-col h4 {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px; font-weight: 400;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: 13px; font-weight: 300; color: var(--warm-gray-light);
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.12);
    padding: 24px 5vw;
    max-width: 1280px; margin: 0 auto;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p {
    font-size: 11px; font-weight: 300; color: var(--warm-gray);
    letter-spacing: 0.06em;
  }

  /* ─── TOAST ─── */
  .toast {
    position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--charcoal); color: var(--gold-light);
    padding: 14px 28px; border: 1px solid var(--gold);
    font-size: 13px; font-weight: 300; letter-spacing: 0.06em;
    opacity: 0; pointer-events: none; z-index: 3000;
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap;
  }
  .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

  /* ─── LIGHTBOX ─── */
  .lightbox {
    position: fixed; inset: 0; z-index: 4000;
    background: rgba(26,24,20,0.95);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .lightbox.open { opacity: 1; pointer-events: all; }
  .lightbox-close {
    position: absolute; top: 24px; right: 28px;
    background: none; border: none; color: var(--gold);
    font-size: 32px; cursor: pointer;
  }
  .lightbox-img {
    max-width: 90vw; max-height: 85vh;
    border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    background: var(--charcoal-soft);
    padding: 40px;
  }
  .lightbox-img p { color: var(--gold-light); font-weight: 300; font-size: 14px; }

  /* ─── BACK TO TOP ─── */
  .back-top {
    position: fixed; bottom: 28px; left: 28px; z-index: 1500;
    width: 44px; height: 44px;
    background: rgba(255,254,249,0.9);
    border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; pointer-events: none;
    transition: all 0.3s;
    font-size: 18px; color: var(--gold);
  }
  .back-top.visible { opacity: 1; pointer-events: all; }
  .back-top:hover { background: var(--charcoal); border-color: var(--charcoal); }

  /* ─── LOADING OVERLAY ─── */
  .page-loader {
    position: fixed; inset: 0; z-index: 9998;
    background: var(--charcoal);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 20px;
    transition: opacity 0.6s, visibility 0.6s;
  }
  .page-loader.done { opacity: 0; visibility: hidden; }
  .loader-logo {
    font-family: var(--font-display); font-size: 32px;
    font-weight: 300; color: var(--cream); letter-spacing: 0.08em;
  }
  .loader-logo span { color: var(--gold); }
  .loader-bar {
    width: 200px; height: 1px; background: rgba(201,168,76,0.2);
    overflow: hidden;
  }
  .loader-bar-fill {
    height: 100%; background: var(--gold);
    animation: loadbar 1.2s ease forwards;
  }
  @keyframes loadbar {
    from { width: 0; }
    to { width: 100%; }
  }

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

  /* ─── RESPONSIVE ─── */

  /* ── Large tablet (≤1024px) ── */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero::before { display: none; }
    .hero-left { padding: 60px 5vw 40px; }
    .hero-right { background: var(--charcoal); padding: 40px 5vw 60px; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .quote-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .email-bar-inner { flex-direction: column; gap: 24px; text-align: center; }
    .email-form { width: 100%; justify-content: center; }
    .section-inner { padding: 80px 5vw; }
  }

  /* ── Tablet portrait & large mobile (≤768px) ── */
  @media (max-width: 768px) {
    :root { --nav-h: 116px; }
    .nav-logo-img { height: 96px !important; }
    section { padding: 64px 5vw; }
    .section-inner { padding: 64px 5vw; }
    .nav-links { display: none; }
    .nav-mobile-btn { display: flex; }
    .topbar { font-size: 11px; padding: 8px 16px; letter-spacing: .06em; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
    .gallery-header { flex-direction: column; gap: 20px; }
    .gallery-filters { flex-wrap: wrap; gap: 6px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat-num { font-size: 28px; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .chatbot-window { width: calc(100vw - 32px); right: 16px; bottom: 96px; }
    .chatbot-toggle { bottom: 20px; right: 20px; width: 54px; height: 54px; }
    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .email-bar-inner { flex-direction: column; gap: 24px; text-align: center; }
    .email-form { flex-direction: column; width: 100%; max-width: 420px; margin: 0 auto; }
    .email-form input { width: 100%; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; text-align: center; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn-primary, .hero-actions .btn-outline { width: auto; }
    .quote-info { display: none; }
    .back-top { bottom: 80px; right: 16px; }
    .faq-question { font-size: 14px; }
    .marquee-wrap { overflow: hidden; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 11px; }
    nav { padding: 0 4vw; }
    .nav-inner { padding: 0; }
  }

  /* ── Mobile (≤480px) ── */
  @media (max-width: 480px) {
    .topbar { display: none; }
    .hero-title { font-size: 36px; }
    .hero-desc { font-size: 14px; }
    .hero-left { padding: 48px 5vw 32px; }
    .hero-stats { justify-content: space-between; }
    .section-title { font-size: 28px !important; }
    .review-card { padding: 28px 24px; }
    .review-text { font-size: 16px; }
    .footer-brand p { font-size: 13px; }
    .footer-col ul li { font-size: 13px; }
    .chatbot-window { width: calc(100vw - 16px); right: 8px; left: 8px; }
    .quick-btn { font-size: 9px; padding: 5px 8px; }
    :root { --nav-h: 92px; }
    .nav-logo-img { height: 74px !important; }
    .loader-logo { font-size: 24px; }
    .btn-primary, .btn-outline { padding: 13px 20px; font-size: 10px; }
    .back-top { width: 40px; height: 40px; font-size: 14px; }
    .gallery-grid { grid-template-columns: 1fr; }
  }
