
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:      #0a0a0b;
      --bg2:     #101012;
      --bg3:     #161618;
      --border:  #222224;
      --border2: #2e2e32;
      --gold:    #c9a96e;
      --gold2:   #a8884e;
      --gold-soft: rgba(201,169,110,0.1);
      --gold-glow: rgba(201,169,110,0.25);
      --text1:   #f2ede8;
      --text2:   #8a8680;
      --muted:   #3e3c38;
      --success: #3a7d5a;
      --success-soft: rgba(58,125,90,0.12);
      --serif:   'Cormorant Garamond', Georgia, serif;
      --sans:    'DM Sans', sans-serif;
      --mono:    'DM Mono', monospace;
    }

    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--text1); font-family: var(--sans); overflow-x: hidden; }

    /* Grain */
    body::after {
      content: ''; position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.022; pointer-events: none; z-index: 9999;
    }

    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--border2); }

    /* ── Nav ─────────────────────────────────── */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 72px;
      background: rgba(10,10,11,0.92); backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo img { width: 40px; height: 40px; object-fit: cover; border-radius: 50%; border: 1px solid var(--border2); }
    .logo-text { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--text1); letter-spacing: 0.04em; }
    .logo-text span { color: var(--gold); }
    .navmenu { display: flex; gap: 36px; list-style: none; }
    .navmenu a {
      font-family: var(--mono); font-size: 11px; color: var(--text2);
      text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
      transition: color 0.2s; position: relative;
    }
    .navmenu a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.25s; }
    .navmenu a:hover, .navmenu a.active { color: var(--gold); }
    .navmenu a:hover::after, .navmenu a.active::after { width: 100%; }
    .nav-icons { display: flex; gap: 6px; align-items: center; }
    .nav-icon-btn {
      width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      color: var(--text2); font-size: 15px; text-decoration: none;
      transition: border-color 0.2s, color 0.2s; background: transparent; cursor: pointer;
    }
    .nav-icon-btn:hover { border-color: var(--gold); color: var(--gold); }
    .ham-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
    .ham-btn span { display: block; width: 20px; height: 1px; background: var(--text1); transition: transform 0.3s, opacity 0.3s; }
    .ham-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .ham-btn.open span:nth-child(2) { opacity: 0; }
    .ham-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
    .mobile-menu {
      display: none; position: fixed; inset: 0;
      background: rgba(10,10,11,0.98); z-index: 99;
      flex-direction: column; align-items: center; justify-content: center; gap: 36px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--text1); text-decoration: none; transition: color 0.2s; }
    .mobile-menu a:hover { color: var(--gold); }

    /* ── Page Hero ───────────────────────────── */
    .page-hero {
      padding-top: 72px; height: 320px;
      display: flex; align-items: center; justify-content: center;
      text-align: center; position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background-image: repeating-linear-gradient(135deg, transparent, transparent 80px, rgba(201,169,110,0.025) 80px, rgba(201,169,110,0.025) 81px);
    }
    /* Decorative circles */
    .page-hero::after {
      content: ''; position: absolute;
      width: 500px; height: 500px; border-radius: 50%;
      border: 1px solid rgba(201,169,110,0.06);
      top: 50%; left: 50%; transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .page-hero-inner { position: relative; z-index: 1; }
    .page-hero-tag {
      font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
      display: flex; align-items: center; justify-content: center; gap: 12px;
    }
    .page-hero-tag::before, .page-hero-tag::after { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); opacity: 0.5; }
    .page-hero-title { font-family: var(--serif); font-size: clamp(40px, 8vw, 80px); font-weight: 300; line-height: 1.0; color: var(--text1); margin-bottom: 14px; }
    .page-hero-title em { font-style: italic; color: var(--gold); }
    .page-hero-sub { font-family: var(--mono); font-size: 11px; color: var(--text2); letter-spacing: 0.1em; }

    /* ── Main Layout ─────────────────────────── */
    .main-wrap {
      max-width: 1280px; margin: 0 auto;
      padding: 72px 48px 120px;
      display: grid; grid-template-columns: 1fr 400px; gap: 80px;
      align-items: start;
    }

    /* ── Form Side ───────────────────────────── */
    .form-section-label {
      font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
      display: flex; align-items: center; gap: 8px;
    }
    .form-section-label::before { content: ''; width: 16px; height: 1px; background: var(--gold); }
    .form-title {
      font-family: var(--serif); font-size: clamp(30px, 4vw, 48px);
      font-weight: 300; line-height: 1.1; margin-bottom: 10px;
    }
    .form-title em { font-style: italic; color: var(--gold); }
    .form-subtitle { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: 40px; max-width: 500px; }

    /* Rating Stars */
    .rating-group { margin-bottom: 32px; }
    .rating-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text2); margin-bottom: 12px; }
    .star-row { display: flex; gap: 8px; }
    .star-btn {
      background: none; border: none; cursor: pointer;
      font-size: 28px; color: var(--border2); transition: color 0.15s, transform 0.15s;
      padding: 0; line-height: 1;
    }
    .star-btn.lit, .star-btn:hover { color: var(--gold); transform: scale(1.1); }
    .rating-text { font-family: var(--mono); font-size: 10px; color: var(--text2); margin-top: 8px; letter-spacing: 0.06em; min-height: 16px; }

    /* Category chips */
    .category-group { margin-bottom: 28px; }
    .chip-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text2); margin-bottom: 10px; }
    .chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
    .chip {
      font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--text2); padding: 7px 14px; border: 1px solid var(--border2);
      border-radius: 2px; cursor: pointer; background: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .chip:hover { border-color: var(--gold); color: var(--gold); }
    .chip.active { background: var(--gold-soft); border-color: var(--gold); color: var(--gold); }

    /* Form fields */
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
    .field-group { margin-bottom: 18px; }
    .field-label {
      font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text2); margin-bottom: 8px; display: block;
    }
    .field-input, .field-select, .field-textarea {
      width: 100%; background: var(--bg3); border: 1px solid var(--border2);
      border-radius: 2px; padding: 12px 14px;
      font-family: var(--sans); font-size: 14px; color: var(--text1);
      outline: none; transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
    }
    .field-input::placeholder, .field-textarea::placeholder { color: var(--muted); }
    .field-input:focus, .field-select:focus, .field-textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,169,110,0.08);
    }
    .field-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238a8680' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 12px center; background-size: 14px;
      background-color: var(--bg3); cursor: pointer;
    }
    .field-select option { background: var(--bg3); color: var(--text1); }
    .field-textarea { resize: vertical; min-height: 130px; line-height: 1.7; font-family: var(--sans); }

    /* Recommend toggle */
    .toggle-group { margin-bottom: 28px; }
    .toggle-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text2); margin-bottom: 10px; }
    .toggle-row { display: flex; gap: 10px; }
    .toggle-btn {
      flex: 1; padding: 11px; text-align: center;
      font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--text2); border: 1px solid var(--border2);
      border-radius: 2px; cursor: pointer; background: none;
      transition: all 0.2s;
    }
    .toggle-btn.yes.active { background: var(--success-soft); border-color: #3a7d5a; color: #6fcf9a; }
    .toggle-btn.no.active  { background: rgba(190,60,60,0.1); border-color: #8b2020; color: #ffb3b3; }
    .toggle-btn:hover { border-color: var(--gold); color: var(--gold); }

    /* Submit */
    .submit-btn {
      width: 100%; padding: 16px;
      background: var(--gold); color: var(--bg);
      font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
      border: none; border-radius: 2px; cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-top: 8px;
    }
    .submit-btn:hover { background: var(--gold2); transform: translateY(-1px); }
    .submit-btn:active { transform: translateY(0); }

    /* Success state */
    .success-msg {
      display: none; text-align: center; padding: 48px 32px;
      background: var(--bg2); border: 1px solid #3a7d5a;
      border-radius: 4px; margin-top: 20px;
    }
    .success-msg.show { display: block; }
    .success-icon { font-size: 48px; color: #6fcf9a; margin-bottom: 16px; }
    .success-msg h3 { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--text1); margin-bottom: 8px; }
    .success-msg h3 em { font-style: italic; color: var(--gold); }
    .success-msg p { font-size: 13px; color: var(--text2); line-height: 1.8; }

    /* ── Right Side Panel ────────────────────── */
    .side-panel { position: sticky; top: 100px; }

    /* Info card */
    .info-card {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: 4px; padding: 28px; margin-bottom: 16px;
      transition: border-color 0.2s;
    }
    .info-card:hover { border-color: var(--border2); }
    .info-card-title { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    .info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
    .info-item:last-child { margin-bottom: 0; }
    .info-icon {
      width: 34px; height: 34px; flex-shrink: 0;
      background: var(--gold-soft); border: 1px solid var(--gold-glow);
      border-radius: 4px; display: flex; align-items: center; justify-content: center;
      font-size: 15px; color: var(--gold);
    }
    .info-text .lbl { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
    .info-text .val { font-size: 13px; color: var(--text1); }

    /* Testimonials mini */
    .mini-reviews { margin-top: 0; }
    .mini-review {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: 4px; padding: 20px 22px; margin-bottom: 10px;
    }
    .mini-stars { display: flex; gap: 2px; color: var(--gold); font-size: 11px; margin-bottom: 8px; }
    .mini-text { font-family: var(--serif); font-size: 14px; font-style: italic; color: var(--text2); line-height: 1.6; margin-bottom: 10px; }
    .mini-author { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

    /* Progress bars */
    .rating-breakdown { background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; padding: 24px; margin-bottom: 16px; }
    .breakdown-title { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
    .breakdown-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
    .breakdown-row:last-child { margin-bottom: 0; }
    .breakdown-num { font-family: var(--mono); font-size: 10px; color: var(--text2); width: 12px; text-align: right; }
    .breakdown-bar-bg { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
    .breakdown-bar { height: 100%; background: var(--gold); border-radius: 2px; transition: width 1s ease; }
    .breakdown-pct { font-family: var(--mono); font-size: 9px; color: var(--muted); width: 28px; text-align: right; }
    .avg-score { text-align: center; margin-bottom: 16px; }
    .avg-num { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--gold); line-height: 1; }
    .avg-sub { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; color: var(--text2); margin-top: 4px; }

    /* ── Footer ──────────────────────────────── */
    .site-footer { border-top: 1px solid var(--border); background: var(--bg2); }
    .footer-inner { max-width: 1280px; margin: 0 auto; padding: 64px 48px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 2fr; gap: 48px; }
    .footer-brand .logo-text { font-size: 22px; margin-bottom: 12px; display: block; }
    .footer-brand p { font-size: 13px; line-height: 1.8; color: var(--text2); margin-bottom: 20px; max-width: 220px; }
    .footer-socials { display: flex; gap: 8px; }
    .social-btn { width: 34px; height: 34px; border: 1px solid var(--border2); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--text2); font-size: 14px; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
    .social-btn:hover { border-color: var(--gold); color: var(--gold); }
    .footer-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 13px; color: var(--text2); text-decoration: none; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--text1); }
    .footer-subscribe p { font-size: 13px; line-height: 1.8; color: var(--text2); margin-bottom: 16px; }
    .subscribe-form { display: flex; border: 1px solid var(--border2); border-radius: 2px; overflow: hidden; }
    .subscribe-form input { flex: 1; background: var(--bg3); border: none; outline: none; padding: 10px 14px; font-family: var(--mono); font-size: 11px; color: var(--text1); }
    .subscribe-form input::placeholder { color: var(--muted); }
    .subscribe-form button { background: var(--gold); border: none; padding: 10px 16px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bg); cursor: pointer; transition: background 0.2s; }
    .subscribe-form button:hover { background: var(--gold2); }
    .footer-bottom { border-top: 1px solid var(--border); padding: 20px 48px; max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
    .footer-bottom p { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .rd1 { transition-delay: 0.1s; }
    .rd2 { transition-delay: 0.2s; }

    /* ── Responsive ──────────────────────────── */
    @media (max-width: 1024px) {
      .main-wrap { grid-template-columns: 1fr; gap: 48px; }
      .side-panel { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
      .mini-reviews { display: none; }
    }
    @media (max-width: 768px) {
      header { padding: 0 20px; }
      .navmenu { display: none; }
      .ham-btn { display: flex; }
      .main-wrap { padding: 48px 20px 80px; }
      .field-row { grid-template-columns: 1fr; }
      .side-panel { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; padding: 40px 20px 24px; gap: 28px; }
      .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 8px; text-align: center; }
    }
    @media (max-width: 480px) {
      .footer-inner { grid-template-columns: 1fr; }
    }
