 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black: #0a0a0a;
    --white: #ffffff;
    --off-white: #f8f7f5;
    --gold: #C8A96E;
    --gold-dim: rgba(200,169,110,0.15);
    --gray-700: #4a4a4a;
    --gray-500: #9a9a9a;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); font-size: 16px; line-height: 1.6; }

  .concept-badge {
    position: fixed; top: 16px; right: 16px; z-index: 9999;
    background: var(--gold); color: var(--black);
    font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 14px;
  }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--black); border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0 60px; display: flex; align-items: center; justify-content: space-between; height: 72px;
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700;
    color: var(--white); text-decoration: none; letter-spacing: 0.02em;
  }
  .nav-logo em { color: var(--gold); font-style: normal; }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    border: 1px solid var(--gold); color: var(--gold); padding: 10px 24px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; transition: all 0.2s;
  }
  .nav-cta:hover { background: var(--gold); color: var(--black); }

  /* HERO */
  .hero {
    min-height: 100vh; background: var(--black);
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 60px 80px; position: relative; overflow: hidden;
  }
  .hero::before {
    content: 'C'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif; font-size: 600px; font-weight: 700;
    color: rgba(200,169,110,0.04); line-height: 1; pointer-events: none; user-select: none;
  }
  .hero-issue { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; display: flex; align-items: center; gap: 16px; }
  .hero-issue::before { content: ''; display: block; width: 48px; height: 1px; background: var(--gold); }
  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(72px, 10vw, 130px);
    font-weight: 300; line-height: 0.92; letter-spacing: -0.02em;
    color: var(--white); margin-bottom: 0;
  }
  .hero-headline em { color: var(--gold); font-style: italic; }
  .hero-bottom { margin-top: 64px; display: flex; align-items: flex-end; justify-content: space-between; }
  .hero-sub { max-width: 420px; font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.8; font-weight: 300; }
  .hero-cta-block { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
  .btn-gold {
    background: var(--gold); color: var(--black);
    padding: 18px 48px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; text-decoration: none; display: inline-block; transition: opacity 0.2s;
  }
  .btn-gold:hover { opacity: 0.85; }
  .hero-guarantee { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; }
  .hero-guarantee span { color: var(--gold); }

  /* TICKER */
  .ticker { border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 16px 0; overflow: hidden; }
  .ticker-inner { display: flex; gap: 80px; animation: ticker 25s linear infinite; white-space: nowrap; }
  .ticker span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 500; }
  .ticker-dot { color: var(--gold) !important; }
  @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* SECTION BASE */
  section { padding: 120px 60px; }
  .section-num { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 20px; }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 6vw, 72px); font-weight: 300; line-height: 1.05;
    color: var(--white); margin-bottom: 24px; letter-spacing: -0.01em;
  }
  .section-title em { color: var(--gold); font-style: italic; }
  .section-title strong { font-weight: 600; }
  .section-sub { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 500px; font-weight: 300; }
  .gold-line { width: 48px; height: 2px; background: var(--gold); margin-bottom: 32px; }

  /* HOW IT WORKS */
  .process { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
  .process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .process-steps { display: flex; flex-direction: column; gap: 0; }
  .step {
    display: flex; gap: 32px; align-items: flex-start;
    padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .step:first-child { padding-top: 0; }
  .step-num {
    font-family: 'Cormorant Garamond', serif; font-size: 60px; font-weight: 300;
    color: rgba(255,255,255,0.08); line-height: 0.85; flex-shrink: 0; width: 64px;
  }
  .step-content {}
  .step-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
  .step-text { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; font-weight: 300; }
  .step-tag { display: inline-block; margin-top: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(200,169,110,0.3); padding: 4px 12px; }

  /* SERVICES */
  .services { background: #0f0f0f; border-top: 1px solid rgba(255,255,255,0.06); }
  .services-header { margin-bottom: 80px; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
  .service-card { background: #0f0f0f; padding: 48px 40px; position: relative; overflow: hidden; transition: background 0.3s; }
  .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
  .service-card:hover { background: rgba(200,169,110,0.04); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.2); margin-bottom: 32px; }
  .service-name { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
  .service-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 32px; font-weight: 300; }
  .service-price { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--gold); }

  /* PRICING */
  .pricing { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
  .pricing-note { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 16px; font-style: italic; }
  .pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 72px; }
  .pricing-card { border: 1px solid rgba(255,255,255,0.08); padding: 48px 40px; position: relative; }
  .pricing-card.featured { border-color: var(--gold); background: rgba(200,169,110,0.04); }
  .popular-tag { position: absolute; top: -1px; right: 32px; background: var(--gold); color: var(--black); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 14px; }
  .p-tier { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
  .pricing-card.featured .p-tier { color: var(--gold); }
  .p-price { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: var(--white); line-height: 1; }
  .p-mo { font-size: 13px; color: rgba(255,255,255,0.3); margin-bottom: 40px; font-weight: 300; }
  .p-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 32px; }
  .p-features { list-style: none; margin-bottom: 48px; display: flex; flex-direction: column; gap: 14px; }
  .p-features li { font-size: 14px; color: rgba(255,255,255,0.6); display: flex; gap: 12px; align-items: flex-start; font-weight: 300; }
  .p-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-weight: 300; }
  .p-btn {
    display: block; text-align: center; padding: 16px 24px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
    transition: all 0.2s;
  }
  .p-btn:hover { border-color: var(--white); color: var(--white); }
  .pricing-card.featured .p-btn { background: var(--gold); color: var(--black); border-color: var(--gold); }
  .pricing-card.featured .p-btn:hover { opacity: 0.85; }

  /* GUARANTEE */
  .guarantee {
    background: var(--off-white); padding: 100px 60px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .guarantee-left {}
  .g-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .g-title { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 600; color: var(--black); line-height: 1.05; margin-bottom: 24px; }
  .g-text { font-size: 16px; color: var(--gray-700); line-height: 1.8; font-weight: 300; }
  .guarantee-right { display: flex; flex-direction: column; gap: 24px; }
  .g-item { display: flex; gap: 20px; align-items: flex-start; padding: 28px; background: var(--white); border-left: 3px solid var(--gold); }
  .g-item-icon { font-size: 24px; flex-shrink: 0; }
  .g-item-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
  .g-item-text { font-size: 13px; color: var(--gray-700); line-height: 1.65; font-weight: 300; }

  /* ABOUT */
  .about { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
  .about-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; align-items: center; }
  .about-text p { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.9; font-weight: 300; margin-bottom: 24px; }
  .about-text p strong { color: var(--white); font-weight: 500; }
  .about-stats { display: flex; flex-direction: column; gap: 0; }
  .about-stat { padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .about-stat:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
  .about-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 300; color: var(--gold); line-height: 1; }
  .about-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; font-weight: 500; }

  /* FAQ */
  .faq { background: #0f0f0f; border-top: 1px solid rgba(255,255,255,0.06); }
  .faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
  .faq-list { display: flex; flex-direction: column; }
  .faq-item { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .faq-q { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
  .faq-a { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; font-weight: 300; }

  /* CONTACT */
  .contact { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .contact-form { display: flex; flex-direction: column; gap: 20px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
  input, select, textarea {
    width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    color: var(--white); font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 300;
    padding: 14px 18px; outline: none; transition: border-color 0.2s;
  }
  input:focus, select:focus, textarea:focus { border-color: var(--gold); }
  select option { background: var(--black); }
  textarea { resize: vertical; min-height: 100px; }
  .contact-info { display: flex; flex-direction: column; gap: 40px; }
  .contact-detail {}
  .contact-detail-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 10px; }
  .contact-detail-value { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--white); }

  /* FOOTER */
  footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.06); padding: 80px 60px 48px; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: var(--white); }
  .footer-logo em { color: var(--gold); font-style: normal; }
  .footer-nav { display: flex; gap: 40px; }
  .footer-nav a { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); text-decoration: none; }
  .footer-nav a:hover { color: var(--gold); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); font-weight: 300; }
  .footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; color: rgba(255,255,255,0.2); }