:root {
    --ivory: #FFFFFF; --ivory-deep: #F5FAFC;
    --wine: #64303D; --wine-deep: #45222B;
    --gold: #C3DBE7; --gold-light: #E4EFF4;
    --charcoal: #2A2530; --charcoal-soft: #6B5F68; --line: #D7E8F0;
    --font-display: 'Cormorant Garamond', serif; --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  }
  * { box-sizing: border-box; margin: 0; }
  ul, ol { padding: 0; }
  body { background: var(--ivory); color: var(--charcoal); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
  h1, h2, h3, p, span, a, div { overflow-wrap: break-word; }
  a { color: inherit; }
  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
  section { padding: 88px 0; }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes floatSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  @keyframes drawLine { from { width: 0; } to { width: 100%; } }

  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
  .reveal .stagger { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
  .reveal.in-view .stagger { opacity: 1; transform: translateY(0); }
  .reveal.in-view .stagger:nth-child(1) { transition-delay: 0.05s; }
  .reveal.in-view .stagger:nth-child(2) { transition-delay: 0.15s; }
  .reveal.in-view .stagger:nth-child(3) { transition-delay: 0.25s; }
  .reveal.in-view .stagger:nth-child(4) { transition-delay: 0.35s; }
  .reveal.in-view .stagger:nth-child(5) { transition-delay: 0.45s; }
  .reveal.in-view .stagger:nth-child(6) { transition-delay: 0.55s; }

  /* ── Nav ── */
  header.nav {
    position: sticky; top: 0; z-index: 20;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; max-width: 1120px; margin: 0 auto; }
  .logo { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 24px; color: var(--wine-deep); text-decoration: none; }
  .nav-links { display: flex; gap: 32px; list-style: none; font-size: 14px; font-weight: 500; }
  .nav-links a { text-decoration: none; color: var(--charcoal-soft); transition: color 0.2s ease; }
  .nav-links a:hover { color: var(--wine-deep); }
  .nav-cta {
    background: var(--wine-deep); color: #fff; text-decoration: none;
    padding: 10px 22px; border-radius: 99px; font-size: 14px; font-weight: 600;
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(69,34,43,0.4); }
  .nav-right { display: flex; align-items: center; gap: 14px; }
  .lang-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 99px; overflow: hidden; }
  .lang-toggle button {
    border: none; background: #fff; color: var(--charcoal-soft);
    font-family: var(--font-body); font-size: 12px; font-weight: 700;
    padding: 6px 12px; cursor: pointer; transition: background 0.2s ease, color 0.2s ease;
  }
  .lang-toggle button.active { background: var(--wine-deep); color: #fff; }
  .lang-toggle button:not(.active):hover { background: var(--ivory-deep); }
  .nav-toggle { display: none; }

  /* ── Hero ── */
  .hero { padding: 100px 0 60px; text-align: center; position: relative; overflow: hidden; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--wine); letter-spacing: 0.04em;
    background: var(--gold-light); padding: 9px 18px; border-radius: 18px; margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.05s forwards;
    text-align: center; max-width: 90%; margin-left: auto; margin-right: auto;
  }
  h1.hero-title {
    font-family: var(--font-display); font-weight: 500; font-size: clamp(38px, 6vw, 68px);
    line-height: 1.08; color: var(--wine-deep); max-width: 820px; margin: 0 auto 24px;
    opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.15s forwards;
  }
  h1.hero-title em { font-style: italic; color: var(--gold); }
  .hero-sub {
    font-size: 18px; color: var(--charcoal-soft); max-width: 540px; margin: 0 auto 40px;
    opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.28s forwards;
  }
  .hero-ctas {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 72px;
    opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
  }
  .btn-primary {
    background: var(--wine-deep); color: #fff; text-decoration: none;
    padding: 15px 30px; border-radius: 99px; font-size: 15px; font-weight: 600;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(69,34,43,0.45); }
  .btn-secondary {
    background: #fff; color: var(--wine-deep); text-decoration: none; border: 1px solid var(--line);
    padding: 15px 30px; border-radius: 99px; font-size: 15px; font-weight: 600;
    transition: border-color 0.25s ease, transform 0.25s var(--ease-out);
  }
  .btn-secondary:hover { border-color: var(--gold); transform: translateY(-2px); }

  /* Phone mockup made of pure CSS/SVG, no real screenshot needed */
  .hero-visual {
    position: relative; max-width: 300px; margin: 0 auto;
    opacity: 0; animation: fadeUp 1s var(--ease-out) 0.5s forwards;
  }
  .phone {
    background: var(--wine-deep); border-radius: 32px; padding: 12px;
    box-shadow: 0 40px 80px -30px rgba(69,34,43,0.4);
    animation: floatSlow 5s ease-in-out infinite;
  }
  .phone-screen { background: #fff; border-radius: 22px; overflow: hidden; }
  .phone-photo {
    height: 160px;
    background: linear-gradient(160deg, #8a6a70 0%, #45222B 60%, #2a1519 100%);
    position: relative;
  }
  .phone-photo::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 65% 35%, rgba(255,255,255,0.15), transparent 55%);
  }
  .phone-body { padding: 18px 16px; text-align: left; }
  .phone-names { font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--wine-deep); margin-bottom: 4px; }
  .phone-date { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal-soft); margin-bottom: 14px; }
  .phone-btn { background: var(--ivory-deep); border: 1px dashed var(--gold); border-radius: 10px; padding: 12px; text-align: center; font-size: 11px; color: var(--wine-deep); font-weight: 600; }
  .phone-dots { display: flex; gap: 5px; justify-content: center; margin-top: 14px; }
  .phone-dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--line); }
  .phone-dots span:first-child { background: var(--gold); }

  .floating-badge {
    position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 10px 14px; font-size: 12px; font-weight: 600; color: var(--wine-deep);
    box-shadow: 0 14px 30px -14px rgba(69,34,43,0.3);
    display: flex; align-items: center; gap: 8px;
  }
  .floating-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
  .badge-1 { top: 6%; left: -18%; animation: floatSlow 4.5s ease-in-out infinite; }
  .badge-2 { bottom: 12%; right: -20%; animation: floatSlow 5.5s ease-in-out infinite reverse; }

  /* ── Section titles ── */
  .section-head { text-align: center; max-width: 560px; margin: 0 auto 56px; }
  .section-eyebrow { font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
  .section-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 4vw, 42px); color: var(--wine-deep); margin-bottom: 12px; }
  .section-sub { color: var(--charcoal-soft); font-size: 16px; }

  /* ── How it works ── */
  #how { background: var(--ivory-deep); }
  .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
  .step { text-align: center; position: relative; }
  .step-num {
    width: 52px; height: 52px; border-radius: 50%; background: var(--wine-deep); color: #fff;
    font-family: var(--font-display); font-size: 22px; font-weight: 600;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  }
  .step h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
  .step p { font-size: 14px; color: var(--charcoal-soft); }

  /* ── Feature grid ── */
  .features-section { }
  .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .feature-card {
    background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(69,34,43,0.25); border-color: var(--gold); }
  .feature-icon {
    width: 44px; height: 44px; border-radius: 12px; background: var(--gold-light); color: var(--wine-deep);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  }
  .feature-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 8px; }
  .feature-card p { font-size: 14px; color: var(--charcoal-soft); }

  /* ── Design gallery teaser ── */
  .design-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
  .design-card {
    border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: #fff;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
    cursor: pointer;
  }
  .design-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 26px 50px -24px rgba(69,34,43,0.3); }

  /* Miniature real page mockup, not a flat color swatch */
  .mini-page { padding: 0; }
  .mini-chrome { display: flex; gap: 5px; padding: 10px 12px; background: var(--ivory-deep); border-bottom: 1px solid var(--line); }
  .mini-chrome span { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
  .mini-body { padding: 22px 16px 18px; text-align: center; }
  .mini-eyebrow { font-family: var(--font-display); font-style: italic; font-size: 11px; margin-bottom: 8px; }
  .mini-names { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 22px; margin-bottom: 4px; }
  .mini-date { font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
  .mini-photo { height: 90px; border-radius: 10px; margin: 0 10px 14px; position: relative; overflow: hidden; }
  .mini-photo .mini-photo-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.35; }
  .mini-btn { display: inline-block; font-size: 9px; font-weight: 600; padding: 7px 16px; border-radius: 99px; }

  /* Layout variant: split-band (photo on top, solid color band with text below) */
  .layout-band .mini-photo { height: 110px; margin: 0; border-radius: 0; }
  .layout-band .mini-band { padding: 20px 16px 18px; text-align: center; }
  .layout-band .mini-eyebrow, .layout-band .mini-names, .layout-band .mini-date { color: #fff; }
  .theme-a.layout-band .mini-band, .theme-c.layout-band .mini-band { background: var(--wine-deep); }
  .theme-b.layout-band .mini-band { background: #22331F; }
  .theme-d.layout-band .mini-band { background: #45573f; }
  .layout-band .mini-btn { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; }
  .layout-name-tag {
    display: inline-block; font-size: 10px; font-weight: 600; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px;
  }

  .theme-a .mini-body { background: #fff; }
  .theme-a .mini-eyebrow, .theme-a .mini-names { color: #22331F; }
  .theme-a .mini-date { color: #8a8070; }
  .theme-a .mini-photo { background: linear-gradient(160deg, #EAE0C4, #C2A467); }
  .theme-a .mini-btn { background: #F7F4EC; border: 1px dashed #C2A467; color: #22331F; }

  .theme-b .mini-body { background: #f5f8f5; }
  .theme-b .mini-eyebrow, .theme-b .mini-names { color: #22331F; }
  .theme-b .mini-date { color: #6b7d6e; }
  .theme-b .mini-photo { background: linear-gradient(160deg, #4a6b52, #22331F); }
  .theme-b .mini-btn { background: #e8efe9; border: 1px dashed #3C5844; color: #22331F; }

  .theme-c .mini-body { background: #fffaf9; }
  .theme-c .mini-eyebrow, .theme-c .mini-names { color: #8a3d3d; }
  .theme-c .mini-date { color: #b98787; }
  .theme-c .mini-photo { background: linear-gradient(160deg, #f3e6e6, #d9a9a9); }
  .theme-c .mini-btn { background: #fdf1f1; border: 1px dashed #d9a9a9; color: #8a3d3d; }

  .theme-d .mini-body { background: #f6f8f5; }
  .theme-d .mini-eyebrow, .theme-d .mini-names { color: #45573f; }
  .theme-d .mini-date { color: #8a9a83; }
  .theme-d .mini-photo { background: linear-gradient(160deg, #eef1ea, #b8c9b0); }
  .theme-d .mini-btn { background: #eef2ec; border: 1px dashed #b8c9b0; color: #45573f; }

  .design-label-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-top: 1px solid var(--line); }
  .design-label { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--wine-deep); }
  .design-view { font-size: 12px; font-weight: 600; color: var(--gold); }

  /* ── Design preview modal ── */
  .modal-overlay {
    position: fixed; inset: 0; background: rgba(69,34,43,0.55); backdrop-filter: blur(4px);
    display: none; align-items: center; justify-content: center; z-index: 100; padding: 24px;
    opacity: 0; transition: opacity 0.3s ease;
  }
  .modal-overlay.open { display: flex; }
  .modal-overlay.visible { opacity: 1; }
  .modal-box {
    background: #fff; border-radius: 20px; max-width: 340px; width: 100%; overflow: hidden;
    transform: scale(0.92) translateY(10px); transition: transform 0.35s var(--ease-out);
    max-height: 90vh; overflow-y: auto;
  }
  .modal-overlay.visible .modal-box { transform: scale(1) translateY(0); }
  .modal-close {
    position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.9); border: none;
    width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 16px; color: var(--charcoal);
    display: flex; align-items: center; justify-content: center; z-index: 2;
  }
  .modal-box .mini-body { padding: 40px 24px 32px; position: relative; }
  .modal-box .mini-eyebrow { font-size: 15px; margin-bottom: 12px; }
  .modal-box .mini-names { font-size: 34px; margin-bottom: 8px; }
  .modal-box .mini-date { font-size: 11px; margin-bottom: 20px; }
  .modal-box .mini-photo { height: 200px; margin: 0 0 20px; border-radius: 14px; }
  .modal-box .mini-welcome { font-family: var(--font-display); font-size: 15px; margin-bottom: 22px; max-width: 260px; margin-left: auto; margin-right: auto; }
  .modal-box .mini-btn { display: block; padding: 12px; font-size: 12px; }
  .modal-footer { padding: 18px 24px 24px; border-top: 1px solid var(--line); text-align: center; }
  .modal-footer .btn-primary { display: inline-block; font-size: 13px; padding: 11px 24px; }
  .modal-box.layout-band .mini-photo { height: 220px; }
  .modal-box.layout-band .mini-band { padding: 32px 24px 28px; }
  .modal-box.layout-band .mini-eyebrow { font-size: 15px; margin-bottom: 12px; }
  .modal-box.layout-band .mini-names { font-size: 34px; margin-bottom: 8px; }
  .modal-box.layout-band .mini-date { font-size: 11px; margin-bottom: 4px; }

  /* ── Pricing teaser ── */
  .pricing-section { background: var(--ivory-deep); }
  .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
  .price-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px 28px; text-align: center; position: relative; transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease; }
  .price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -22px rgba(69,34,43,0.25); }
  .price-card.featured { border: 2px solid var(--gold); }
  .price-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; padding: 5px 14px; border-radius: 99px; text-transform: uppercase; }
  .price-tier { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--wine-deep); margin-bottom: 6px; }
  .price-amount { font-family: var(--font-display); font-size: 42px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
  .price-amount span { font-size: 15px; color: var(--charcoal-soft); font-family: var(--font-body); font-weight: 500; }
  .price-desc { font-size: 13px; color: var(--charcoal-soft); margin-bottom: 20px; }
  .price-features { list-style: none; text-align: left; font-size: 14px; margin-bottom: 24px; }
  .price-features li { display: flex; align-items: center; gap: 8px; padding: 6px 0; color: var(--charcoal); }
  .price-features li::before { content: "✓"; color: var(--wine); font-weight: 700; }
  .price-cta { display: block; text-align: center; background: var(--ivory-deep); color: var(--wine-deep); text-decoration: none; padding: 12px; border-radius: 10px; font-weight: 600; font-size: 14px; transition: background 0.2s ease; }
  .price-card.featured .price-cta { background: var(--wine-deep); color: #fff; }
  .price-cta:hover { opacity: 0.9; }

  /* ── Final CTA ── */
  .cta-section { text-align: center; }
  .cta-box {
    background: var(--wine-deep); border-radius: 28px; padding: 72px 40px; color: #fff; position: relative; overflow: hidden;
  }
  .cta-box::before {
    content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(195,219,231,0.35), transparent 70%);
    top: -150px; right: -100px;
  }
  .cta-box h2 { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; position: relative; }
  .cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 32px; position: relative; }
  .cta-box .btn-primary { background: #fff; color: var(--wine-deep); position: relative; }
  .cta-box .btn-primary:hover { box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4); }

  .lead-form { position: relative; max-width: 420px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; text-align: left; }
  .lead-form input, .lead-form textarea {
    width: 100%; font-family: var(--font-body); font-size: 14px; color: var(--charcoal);
    border: none; border-radius: 10px; padding: 12px 14px; background: rgba(255,255,255,0.95);
  }
  .lead-form input:focus, .lead-form textarea:focus { outline: 2px solid var(--gold); }
  .lead-form textarea { resize: vertical; min-height: 70px; }
  .lead-form input[readonly] { color: var(--charcoal-soft); cursor: default; }
  .lead-form input[readonly]:not([value]):placeholder-shown { display: none; }
  .lead-form button { align-self: center; margin-top: 4px; }
  .turnstile-holder {
    display: flex; justify-content: center; margin: 4px 0;
    max-height: 80px; overflow: hidden; opacity: 1;
    transition: opacity 0.5s ease, max-height 0.5s ease, margin 0.5s ease;
  }
  .turnstile-holder.verified-hidden { opacity: 0; max-height: 0; margin: 0; pointer-events: none; }
  .lead-note { text-align: center; font-size: 13px; color: rgba(255,255,255,0.85); margin: 0; }

  /* ── Footer ── */
  footer { border-top: 1px solid var(--line); padding: 48px 0 32px; }
  .footer-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px; }
  .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; list-style: none; font-size: 13px; color: var(--charcoal-soft); margin: 0; padding: 0; }
  .footer-links a { text-decoration: none; }
  .footer-links a:hover { color: var(--wine-deep); }
  .footer-copy { font-size: 13px; color: var(--charcoal-soft); }

  @media (max-width: 900px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 720px) {
    .nav-links { display: none; }
    .badge-1, .badge-2 { display: none; }
    section { padding: 64px 0; }
    .feature-grid { grid-template-columns: 1fr; }
  }
