  :root {
    --ivory: #FAF9F6;
    --linen: #F0EDE8;
    --stone: #C8C4BE;
    --ash: #6B6861;
    --ink: #2C2B28;
    --night: #1A1A18;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 400;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 68px;
    background: rgba(250,249,246,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--stone);
    transition: all 0.3s ease;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--night);
  }

  .nav-monogram {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.05em;
  }

  .nav-rule {
    width: 1px;
    height: 18px;
    background: var(--stone);
  }

  .nav-wordmark {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    letter-spacing: -0.02em;
    color: var(--night);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--ash);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--night); }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .nav-login {
    font-size: 13px;
    font-weight: 400;
    color: var(--ash);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }
  .nav-login:hover { color: var(--night); }

  /* ── PROFILE DROPDOWN ── */
  .nav-profile {
    position: relative;
    display: none; /* shown after sign-in */
  }
  .nav-profile.visible { display: block; }

  .nav-profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--stone);
    border-radius: 40px;
    padding: 6px 12px 6px 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--ink);
  }
  .nav-profile-btn:hover {
    border-color: var(--ash);
    background: var(--linen);
  }
  .nav-profile-avatar {
    width: 24px; height: 24px;
    background: var(--night);
    color: var(--ivory);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
  }
  .nav-profile-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-profile-chevron {
    font-size: 9px;
    color: var(--ash);
    transition: transform 0.2s;
  }
  .nav-profile.open .nav-profile-chevron { transform: rotate(180deg); }

  .nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--ivory);
    border: 1px solid var(--stone);
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(26,26,24,0.12);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 500;
  }
  .nav-profile.open .nav-dropdown { display: flex; }

  .nav-dropdown-user {
    padding: 14px 16px;
    border-bottom: 1px solid var(--linen);
  }
  .nav-dropdown-user-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--night);
    margin-bottom: 2px;
  }
  .nav-dropdown-user-email {
    font-size: 11px;
    color: var(--ash);
  }

  .nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 13px;
    color: var(--ink);
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s;
    font-family: var(--font-body);
  }
  .nav-dropdown-item:hover { background: var(--linen); color: var(--night); }
  .nav-dropdown-item svg { color: var(--ash); flex-shrink: 0; }
  .nav-dropdown-divider { height: 1px; background: var(--linen); margin: 4px 0; }
  .nav-dropdown-item.danger { color: var(--ash); }
  .nav-dropdown-item.danger:hover { color: var(--night); }

  .cart-btn {
    position: relative;
    background: none;
    border: 1px solid var(--stone);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--ink);
  }

  .cart-btn:hover {
    background: var(--linen);
    border-color: var(--ash);
  }

  .cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--night);
    color: var(--ivory);
    font-size: 10px;
    font-weight: 500;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
  }

  .cart-badge.visible { opacity: 1; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 48px 80px;
    text-align: center;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 30%, rgba(200,196,190,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 50% 80% at 80% 80%, rgba(240,237,232,0.6) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 20% 70%, rgba(240,237,232,0.5) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: 28px;
    animation: fadeUp 1s ease both;
  }

  .hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(48px, 7.5vw, 104px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--night);
    max-width: 820px;
    margin-bottom: 20px;
    animation: fadeUp 1s 0.15s ease both;
  }

  .hero-title em {
    font-style: italic;
    color: var(--ash);
  }

  .hero-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--ash);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto 0;
    animation: fadeUp 1s 0.25s ease both;
  }

  /* ── MOCKUP SHOWCASE ── */
  .hero-mockup-stage {
    position: relative;
    width: 100%;
    max-width: 1118px;
    height: clamp(286px, 39vw, 494px);
    margin: 36px auto 36px;
    animation: fadeUp 1s 0.35s ease both;
  }

  .hero-mockup-img {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(26,26,24,0.14));
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
  }

  .hero-mockup-img.state-enter {
    animation: mockupEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .hero-mockup-img.state-hold {
    opacity: 1;
    transform: translateX(-50%);
  }
  .hero-mockup-img.state-exit {
    animation: mockupExit 0.9s cubic-bezier(0.55, 0, 0.45, 1) forwards;
  }

  @keyframes mockupEnter {
    0%   { opacity: 0; transform: translateX(calc(-50% + 60px)) translateY(18px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0px); }
  }
  @keyframes mockupExit {
    0%   { opacity: 1; transform: translateX(-50%)              translateY(0px); }
    100% { opacity: 0; transform: translateX(calc(-50% - 80px)) translateY(-20px); }
  }

  .hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    animation: fadeUp 1s 0.5s ease both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--night);
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 16px 32px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .btn-primary:hover {
    background: var(--ink);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(26,26,24,0.2);
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ash);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 16px 24px;
    border: 1px solid var(--stone);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .btn-ghost:hover {
    border-color: var(--ash);
    color: var(--ink);
  }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeUp 1s 0.7s ease both;
  }

  .hero-scroll span {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--stone), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--night);
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--stone);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--stone);
  }

  /* ── SECTION SHARED ── */
  section {
    padding: 120px 48px;
  }

  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--night);
    margin-bottom: 20px;
  }

  .section-sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--ash);
    line-height: 1.75;
    max-width: 500px;
  }

  /* ── DESIGNS SECTION ── */
  .designs-section {
    background: var(--linen);
    overflow: hidden;
  }

  .designs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 24px;
  }

  /* ── GROUP HOVER — entire card group shades as one unit ── */
  .designs-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 48px;
    cursor: pointer;
  }

  /* All cards shade together when anywhere in the wrapper is hovered */
  .designs-track-wrapper:hover .design-card {
    opacity: 0.45;
    filter: grayscale(25%);
    animation-play-state: paused;
    transition: opacity 0.3s ease, filter 0.3s ease;
  }

  /* Overlay CTA centred over the whole group */
  .designs-cta-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 20;
  }

  .designs-track-wrapper:hover .designs-cta-overlay {
    opacity: 1;
  }

  .designs-cta-btn {
    background: var(--ink);
    color: var(--ivory);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 13px 32px;
    border-radius: 2px;
    pointer-events: auto;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(26,26,24,0.28);
    text-decoration: none;
  }

  .designs-track {
    display: flex;
    gap: 24px;
    /* No auto-scroll — cards float gently in place via CSS animation */
  }

  .design-card {
    flex-shrink: 0;
    width: 320px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--ivory);
    border: 1px solid var(--stone);
    /* No cursor or individual hover — whole group is the clickable unit */
    pointer-events: none;
    transform-origin: bottom center;
    position: relative;
    will-change: transform;
  }

  /* Individual float animations — each card bobs independently */
  .design-card:nth-child(1) { animation: cardFloat1 6s ease-in-out infinite; }
  .design-card:nth-child(2) { animation: cardFloat2 7s ease-in-out infinite; }
  .design-card:nth-child(3) { animation: cardFloat3 5.5s ease-in-out infinite; }
  .design-card:nth-child(4) { animation: cardFloat4 6.5s ease-in-out infinite; }
  .design-card:nth-child(5) { animation: cardFloat5 7.5s ease-in-out infinite; }

  .design-preview {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
  }

  /* Fallback gradients — visible until iframe loads */
  .preview-1 { background: linear-gradient(160deg, #1a1a18 0%, #2c2b28 100%); }
  .preview-2 { background: linear-gradient(135deg, #FAF9F6 0%, #F0EDE8 100%); }
  .preview-3 { background: linear-gradient(160deg, #3D2E1E 0%, #7A6555 100%); }
  .preview-4 { background: linear-gradient(135deg, #F0EDE8 0%, #C8C4BE 100%); }
  .preview-5 { background: linear-gradient(160deg, #1a1a18 0%, #C8C4BE 40%, #FAF9F6 100%); }

  /* Coming-soon badge on unbuilt templates */
  .preview-soon {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    pointer-events: none;
  }
  .preview-soon.dark { border-color: rgba(0,0,0,0.25); color: rgba(0,0,0,0.4); }

  /* Scaled iframe container */
  .preview-iframe-wrap {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .preview-iframe-wrap.loaded { opacity: 1; }
  .preview-iframe-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 1200px;
    height: 1575px;
    border: none;
    pointer-events: none;
    transform: scale(0.2667);
    transform-origin: top left;
  }

  .design-meta {
    padding: 20px 24px;
    border-top: 1px solid var(--stone);
  }

  .design-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--night);
    margin-bottom: 4px;
  }

  .design-desc {
    font-size: 12px;
    color: var(--ash);
  }

  /* ── HOW IT WORKS ── */
  .how-section {
    background: var(--ivory);
  }

  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 64px;
  }

  .how-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .how-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
  }

  .step-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 300;
    color: var(--stone);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
  }

  .step-content h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--night);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

  .step-content p {
    font-size: 14px;
    font-weight: 300;
    color: var(--ash);
    line-height: 1.75;
  }

  .how-visual {
    position: relative;
    height: 500px;
    background: var(--linen);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .how-mock {
    width: 260px;
    background: var(--ivory);
    border: 1px solid var(--stone);
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(26,26,24,0.1);
  }

  .mock-url-bar {
    background: var(--linen);
    border: 1px solid var(--stone);
    border-radius: 2px;
    padding: 8px 12px;
    font-size: 11px;
    color: var(--ash);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .mock-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--stone); }

  .mock-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
  }

  .mock-names-big {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--night);
    text-align: center;
  }

  .mock-line { width: 30px; height: 1px; background: var(--stone); }

  .mock-date-sm {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ash);
  }

  /* ── ADD-ONS / PRICING ── */
  .addons-section { background: var(--night); color: var(--ivory); }

  .addons-section .section-title { color: var(--ivory); }
  .addons-section .section-eyebrow { color: var(--stone); }
  .addons-section .section-sub { color: var(--stone); }

  .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
    margin-bottom: 64px;
    border: 1px solid rgba(200,196,190,0.15);
  }

  .package-card {
    padding: 48px 36px;
    border-right: 1px solid rgba(200,196,190,0.15);
    position: relative;
    transition: background 0.3s;
  }

  .package-card:last-child { border-right: none; }
  .package-card.prestige-card { opacity: 0.72; }
  .package-card.prestige-card:hover { opacity: 1; transition: opacity .2s; }
  .prestige-cta-link.btn-outline-light {
    display: block; text-align: center; text-decoration: none;
  }

  .package-card.featured {
    background: rgba(250,249,246,0.05);
  }

  .featured-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    border: 1px solid rgba(200,196,190,0.3);
    padding: 4px 10px;
  }

  .pkg-name {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 16px;
  }

  .pkg-price {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 300;
    color: var(--ivory);
    line-height: 1;
    margin-bottom: 8px;
  }

  .pkg-currency {
    font-size: 20px;
    vertical-align: top;
    line-height: 1.8;
  }

  .pkg-period {
    font-size: 13px;
    color: var(--stone);
    margin-bottom: 32px;
  }

  .pkg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }

  .pkg-features li {
    font-size: 13px;
    font-weight: 300;
    color: var(--stone);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .pkg-features li::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--stone);
    flex-shrink: 0;
  }

  .pkg-features li.included {
    color: var(--ivory);
  }

  .pkg-features li.included::before {
    background: var(--ivory);
  }

  .btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border: 1px solid rgba(200,196,190,0.4);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    width: 100%;
    justify-content: center;
  }

  .btn-outline-light:hover {
    background: rgba(250,249,246,0.08);
    border-color: var(--stone);
  }

  .btn-light-filled {
    background: var(--ivory);
    color: var(--night);
    border-color: var(--ivory);
  }

  .btn-light-filled:hover {
    background: var(--linen);
  }

  /* ── ADD-ONS ── */
  .addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(200,196,190,0.15);
    border: 1px solid rgba(200,196,190,0.15);
  }

  .addon-item {
    background: var(--night);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
  }

  .addon-item:hover { background: rgba(250,249,246,0.04); }

  .addon-icon {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .addon-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ivory);
  }

  .addon-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--stone);
    line-height: 1.6;
  }

  .addon-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    color: var(--ivory);
    margin-top: auto;
  }

  .addon-add-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(200,196,190,0.3);
    border-radius: 50%;
    background: none;
    color: var(--stone);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
  }

  .addon-add-btn:hover {
    background: var(--ivory);
    color: var(--night);
    border-color: var(--ivory);
  }

  .addon-add-btn.added {
    background: var(--ivory);
    color: var(--night);
    border-color: var(--ivory);
  }

  /* ── DOMAIN CHECK ── */
  .domain-section { background: var(--linen); }

  .domain-form-wrapper {
    max-width: 640px;
    margin: 64px auto 0;
  }

  .domain-input-row {
    display: flex;
    border: 1px solid var(--stone);
    border-radius: 2px;
    overflow: hidden;
    background: var(--ivory);
    transition: border-color 0.2s;
  }

  .domain-input-row:focus-within {
    border-color: var(--ink);
  }

  .domain-prefix {
    padding: 0 16px;
    background: var(--linen);
    border-right: 1px solid var(--stone);
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--ash);
    white-space: nowrap;
  }

  #domainInput {
    flex: 1;
    padding: 16px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--night);
    outline: none;
  }

  #domainInput::placeholder { color: var(--stone); }

  .domain-suffix {
    padding: 0 16px;
    background: var(--linen);
    border-left: 1px solid var(--stone);
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--ash);
  }

  .domain-check-btn {
    padding: 0 28px;
    background: var(--night);
    color: var(--ivory);
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .domain-check-btn:hover { background: var(--ink); }

  #domainResult {
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: 2px;
    font-size: 14px;
    display: none;
    align-items: center;
    gap: 10px;
  }

  #domainResult.available {
    background: rgba(44,43,40,0.06);
    border: 1px solid rgba(44,43,40,0.15);
    color: var(--night);
    display: flex;
  }

  #domainResult.unavailable {
    background: rgba(200,196,190,0.2);
    border: 1px solid var(--stone);
    color: var(--ash);
    display: flex;
  }

  .result-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .result-dot.green { background: #5a8a6a; }
  .result-dot.red { background: #8a5a5a; }

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: var(--ivory); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
  }

  .testimonial-card {
    padding: 48px 36px;
    border: 1px solid var(--linen);
    background: var(--ivory);
    transition: background 0.2s;
  }

  .testimonial-card:hover { background: var(--linen); }

  .testimonial-quote {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .testimonial-couple {
    font-size: 12px;
    font-weight: 500;
    color: var(--night);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .testimonial-date {
    font-size: 11px;
    color: var(--ash);
    margin-top: 4px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--night);
    color: var(--stone);
    padding: 64px 48px 40px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 64px;
  }

  .footer-brand .nav-wordmark {
    font-size: 16px;
    color: var(--ivory);
    display: block;
    margin-bottom: 16px;
  }

  .footer-brand p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--stone);
    max-width: 280px;
  }

  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-col ul a {
    font-size: 13px;
    font-weight: 300;
    color: var(--stone);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col ul a:hover { color: var(--ivory); }

  .footer-bottom {
    border-top: 1px solid rgba(200,196,190,0.15);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom p {
    font-size: 12px;
    color: var(--ash);
  }

  /* ── MODALS ── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,26,24,0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .modal-overlay.active { display: flex; }

  .modal {
    background: var(--ivory);
    border-radius: 4px;
    padding: 48px;
    max-width: 460px;
    width: 100%;
    position: relative;
    animation: modalIn 0.3s ease;
  }

  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--stone);
    border-radius: 50%;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--ash);
    transition: all 0.2s;
  }

  .modal-close:hover {
    background: var(--linen);
    color: var(--night);
  }

  /* Quote modal */
  .quote-tabs { display:flex; gap:0; margin-bottom:24px; border:1px solid var(--linen); border-radius:3px; overflow:hidden; }
  .quote-tab { flex:1; padding:12px 16px; text-align:center; font-size:11px; font-weight:500; letter-spacing:.04em; text-transform:uppercase; cursor:pointer; background:var(--ivory); color:var(--ash); border:none; font-family:var(--font-body); transition:background .2s,color .2s; }
  .quote-tab.active { background:var(--night); color:var(--ivory); }
  .quote-tab:not(.active):hover { background:var(--linen); }
  .quote-panel { display:none; }
  .quote-panel.active { display:block; }
  .quote-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
  .quote-success { display:none; text-align:center; padding:32px 16px; }
  .quote-success svg { margin-bottom:12px; }
  .quote-success h3 { font-family:var(--font-display); font-weight:300; font-size:22px; margin-bottom:8px; color:var(--night); }
  .quote-success p { font-size:13px; color:var(--ash); line-height:1.6; margin-bottom:0; }

  .modal h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--night);
    margin-bottom: 8px;
  }

  .modal p {
    font-size: 14px;
    color: var(--ash);
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
  }

  .form-group label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ash);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--stone);
    border-radius: 2px;
    background: var(--ivory);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--night);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .form-group textarea { resize: vertical; line-height: 1.5; }

  .form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%236B6861' stroke-width='1.5' d='M1 1l4 4 4-4'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--ink); }

  .form-divider {
    text-align: center;
    font-size: 12px;
    color: var(--stone);
    margin: 20px 0;
    position: relative;
  }

  .form-divider::before,
  .form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--stone);
  }

  .form-divider::before { left: 0; }
  .form-divider::after { right: 0; }

  .modal-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--ash);
  }

  .modal-switch a {
    color: var(--night);
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    font-size: 13px;
  }

  /* ── SOCIAL BUTTONS ── */
  .btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 8px;
  }

  .btn-google {
    background: var(--ivory);
    border: 1px solid var(--stone);
    color: var(--ink);
  }

  .btn-google:hover {
    background: var(--linen);
    border-color: var(--ash);
  }

  /* ── T&C CHECKBOX ── */
  .tc-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 12px 0 4px;
  }

  .tc-row input[type=checkbox] {
    margin-top: 3px;
    accent-color: var(--night);
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    cursor: pointer;
  }

  .tc-row label {
    font-size: 12px;
    font-weight: 300;
    color: var(--ash);
    line-height: 1.6;
    cursor: pointer;
  }

  .tc-row label a {
    color: var(--ink);
    text-decoration: underline;
  }

  /* ── AUTH FEEDBACK ── */
  .auth-error {
    font-size: 13px;
    color: #8a5a5a;
    background: rgba(138,90,90,0.08);
    border: 1px solid rgba(138,90,90,0.2);
    padding: 10px 14px;
    border-radius: 2px;
    margin-bottom: 8px;
  }

  .auth-success {
    font-size: 13px;
    color: #4a7a5a;
    background: rgba(90,138,106,0.08);
    border: 1px solid rgba(90,138,106,0.2);
    padding: 10px 14px;
    border-radius: 2px;
    margin-bottom: 8px;
  }

  /* ── CART DRAWER ── */
  .cart-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 440px;
    height: 100vh;
    background: var(--ivory);
    z-index: 1500;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--stone);
    box-shadow: -20px 0 60px rgba(26,26,24,0.1);
  }

  .cart-drawer.open { right: 0; }

  .cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,26,24,0.3);
    z-index: 1400;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .cart-overlay.open {
    display: block;
    opacity: 1;
  }

  .cart-header {
    padding: 28px 32px;
    border-bottom: 1px solid var(--linen);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--night);
  }

  .cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    gap: 12px;
    color: var(--stone);
  }

  .cart-empty p { font-size: 14px; }

  .cart-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--linen);
    gap: 12px;
  }

  .cart-item-name {
    font-size: 14px;
    font-weight: 400;
    color: var(--night);
    margin-bottom: 4px;
  }

  .cart-item-desc {
    font-size: 12px;
    color: var(--ash);
  }

  .cart-item-price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 300;
    color: var(--night);
    white-space: nowrap;
  }

  .cart-remove {
    background: none;
    border: none;
    color: var(--stone);
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
  }

  .cart-remove:hover { color: var(--night); }

  .cart-footer {
    padding: 24px 32px;
    border-top: 1px solid var(--linen);
  }

  .discount-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
  }

  #discountInput {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--stone);
    border-radius: 2px;
    background: var(--ivory);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--night);
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  #discountInput:focus { border-color: var(--ink); }

  .discount-apply {
    padding: 10px 18px;
    background: var(--linen);
    border: 1px solid var(--stone);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--ink);
  }

  .discount-apply:hover {
    background: var(--stone);
    color: var(--ivory);
  }

  .discount-success {
    font-size: 12px;
    color: #5a8a6a;
    display: none;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(90,138,106,0.08);
    border-radius: 2px;
  }

  .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
  }

  .cart-total-label {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ash);
  }

  .cart-total-amount {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    color: var(--night);
  }

  .cart-total-amount.crossed {
    text-decoration: line-through;
    color: var(--stone);
    font-size: 20px;
  }

  .cart-total-free {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    color: var(--night);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.4; }
    50% { transform: scaleY(0.6); opacity: 0.8; }
  }

  /* Individual card float keyframes — subtle, staggered, stays in place */
  @keyframes cardFloat1 {
    0%,100% { transform: translateY(-10px) rotate(-0.4deg); }
    50%      { transform: translateY(6px)  rotate(-0.2deg); }
  }
  @keyframes cardFloat2 {
    0%,100% { transform: translateY(8px)   rotate(0.3deg); }
    50%      { transform: translateY(-8px)  rotate(0.5deg); }
  }
  @keyframes cardFloat3 {
    0%,100% { transform: translateY(-6px)  rotate(-0.3deg); }
    50%      { transform: translateY(10px)  rotate(0.1deg); }
  }
  @keyframes cardFloat4 {
    0%,100% { transform: translateY(10px)  rotate(0.4deg); }
    50%      { transform: translateY(-6px)  rotate(0.2deg); }
  }
  @keyframes cardFloat5 {
    0%,100% { transform: translateY(-8px)  rotate(-0.5deg); }
    50%      { transform: translateY(6px)   rotate(-0.2deg); }
  }

  @keyframes modalIn {
    from { opacity: 0; transform: scale(0.96) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }

  /* ── DOMAIN CHECK LOADING ── */
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .checking-spinner {
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--stone);
    border-top-color: var(--ink);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    section { padding: 80px 24px; }
    .hero { padding: 100px 24px 60px; }
    .how-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .trust-bar { gap: 32px; padding: 20px 24px; }
  }
