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

  :root {
    --ink: #1a1814;
    --ink-muted: #6b6860;
    --ink-faint: #b0ada5;
    --paper: #f7f4ef;
    --paper-warm: #ede9e2;
    --paper-card: #ffffff;
    --accent: #0f9d8c;
    --accent-light: #f5ece6;
    --accent-dark: #8f3a10;
    --border: rgba(26,24,20,0.12);
    --border-strong: rgba(26,24,20,0.22);
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --max: 1140px;
    --radius: 4px;
  }

  html { scroll-behavior: smooth; }

  body {
  background-image: url('ChoandCoBackground.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    padding: 0 clamp(1.5rem, 5vw, 3rem);
  }

  .nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
  }

  .logo {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.01em;
  }

  .logo span { color: var(--accent); }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--ink-muted);
    text-decoration: none;
    transition: color 0.15s;
    letter-spacing: 0.02em;
  }

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

  .nav-cta {
    background: var(--ink);
    color: var(--paper) !important;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.8rem !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500 !important;
    transition: background 0.15s !important;
  }

  .nav-cta:hover { background: var(--accent) !important; color: var(--paper) !important; }

  /* ── HERO ── */
  #hero {
    padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 5vw, 3rem) clamp(4rem, 8vw, 7rem);
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: var(--accent-light);
    padding: 0.3rem 0.75rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
  }

  h1 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.25rem;
  }

  h1 em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-sub {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 42ch;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background 0.15s, transform 0.1s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

  .btn-ghost {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 2px;
    transition: color 0.15s;
  }

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

  .hero-visual {
    background: var(--paper-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .hero-stat {
    background: var(--paper-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
  }

  .hero-stat-num {
    font-family: var(--serif);
    font-size: 1.9rem;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 0.2rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .hero-bar-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
  }

  .bar-item { display: flex; flex-direction: column; gap: 0.25rem; }

  .bar-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--ink-muted);
  }

  .bar-track {
    height: 6px;
    background: var(--paper-warm);
    border-radius: 3px;
    overflow: hidden;
  }

  .bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    animation: grow 1.2s ease-out forwards;
    transform-origin: left;
  }

  @keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

  /* ── TRUST BAR ── */
  .trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--paper-warm);
    padding: 1rem clamp(1.5rem, 5vw, 3rem);
  }

  .trust-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .trust-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-faint);
    white-space: nowrap;
  }

  .trust-items {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
  }

  .trust-item {
    font-size: 0.8rem;
    color: var(--ink-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
  }

  .trust-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── SECTIONS ── */
  section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 3rem);
  }

  .section-inner { max-width: var(--max); margin: 0 auto; }

  .section-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.75rem;
  }

  h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1rem;
  }

  h2 em { font-style: italic; color: var(--accent); }

  .section-sub {
    font-size: 1rem;
    color: var(--ink-muted);
    max-width: 52ch;
    line-height: 1.7;
    margin-bottom: 3rem;
  }

  /* ── SERVICES ── */
  #services { background: var(--paper); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .service-card {
    background: var(--paper-card);
    padding: 2.5rem 2rem;
    transition: background 0.15s;
  }

  .service-card:hover { background: #fdfcf9; }

  .service-num {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 1.25rem;
    -webkit-text-stroke: 1px var(--accent);
    color: transparent;
  }

  h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
    color: var(--ink);
  }

  .service-desc {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .service-features li {
    font-size: 0.82rem;
    color: var(--ink-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .service-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 0.45em;
    flex-shrink: 0;
  }

  /* ── PROCESS ── */
  #process { background: var(--ink); color: var(--paper); }

  #process h2 { color: var(--paper); }
  #process h2 em { color: var(--accent); }
  #process .section-sub { color: rgba(247,244,239,0.6); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(247,244,239,0.12);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .process-step {
    padding: 2rem 1.75rem;
    border-right: 1px solid rgba(247,244,239,0.12);
    position: relative;
  }

  .process-step:last-child { border-right: none; }

  .step-num {
    font-family: var(--serif);
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
  }

  .step-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--paper);
    margin-bottom: 0.6rem;
  }

  .step-desc {
    font-size: 0.82rem;
    color: rgba(247,244,239,0.55);
    line-height: 1.6;
  }

  /* ── WHY ── */
  #why { background: var(--paper-warm); }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .why-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .why-icon {
    width: 40px;
    height: 40px;
    background: var(--paper-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .why-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; }

  .why-text h4 {
    font-family: var(--serif);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--ink);
  }

  .why-text p { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.6; }

  .why-callout {
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--radius);
    padding: 2.5rem;
  }

  .why-callout-quote {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.35;
    margin-bottom: 1.5rem;
    color: var(--paper);
  }

  .why-callout-stat {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(247,244,239,0.15);
  }

  .why-stat { flex: 1; }

  .why-stat-num {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.2rem;
  }

  .why-stat-label { font-size: 0.75rem; color: rgba(247,244,239,0.5); letter-spacing: 0.04em; }

  /* ── WORK / SHOWCASE ── */
  #showcase { background: var(--paper); }

  .showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .showcase-card {
    background: var(--paper-card);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .showcase-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-light);
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    width: fit-content;
  }

  .showcase-card h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--ink);
  }

  .showcase-card p { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.6; }

  .showcase-preview {
    background: var(--paper-warm);
    border: 1px solid var(--border);
    border-radius: 2px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--ink-faint);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    overflow: hidden;
  }

  /* mini chart */
  .mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
    padding: 10px;
  }

  .mini-bar {
    flex: 1;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
    opacity: 0.7;
    animation: rise 0.8s ease-out forwards;
    transform-origin: bottom;
  }

  @keyframes rise { from { transform: scaleY(0); } to { transform: scaleY(1); } }

  /* ── FAQ ── */
  #faq { background: var(--paper-warm); }

  .faq-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 720px;
  }

  .faq-item { border-bottom: 1px solid var(--border); background: var(--paper-card); }
  .faq-item:last-child { border-bottom: none; }

  .faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.1s;
  }

  .faq-q:hover { background: var(--paper-warm); }

  .faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--ink-muted);
    transition: transform 0.2s;
    fill: none;
    stroke-width: 1.5;
  }

  .faq-item.open .faq-icon { transform: rotate(45deg); stroke: var(--accent); }

  .faq-a {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
  }

  .faq-item.open .faq-a { display: block; }

  /* ── CONTACT ── */
  #contact { background: var(--ink); color: var(--paper); }

  #contact h2 { color: var(--paper); }
  #contact h2 em { color: var(--accent); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-info { display: flex; flex-direction: column; gap: 2rem; }

  .contact-sub {
    font-size: 1rem;
    color: rgba(247,244,239,0.6);
    line-height: 1.7;
  }

  .contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-detail a, .contact-detail span {
    font-size: 0.9rem;
    color: rgba(247,244,239,0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.15s;
  }

  .contact-detail a:hover { color: var(--accent); }

  .contact-form {
    background: rgba(247,244,239,0.05);
    border: 1px solid rgba(247,244,239,0.12);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }

  label {
    font-size: 0.78rem;
    color: rgba(247,244,239,0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  input, textarea, select {
    background: rgba(247,244,239,0.06);
    border: 1px solid rgba(247,244,239,0.15);
    border-radius: var(--radius);
    color: var(--paper);
    font-family: var(--sans);
    font-size: 0.9rem;
    padding: 0.7rem 0.9rem;
    transition: border 0.15s;
    width: 100%;
    outline: none;
  }

  input::placeholder, textarea::placeholder { color: rgba(247,244,239,0.25); }

  input:focus, textarea:focus {
    border-color: rgba(247,244,239,0.4);
    background: rgba(247,244,239,0.09);
  }

  textarea { resize: vertical; min-height: 110px; }

  .form-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.85rem;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
    letter-spacing: 0.02em;
  }

  .form-btn:hover { background: var(--accent-dark); }

  /* ── FOOTER ── */
  footer {
    background: #111009;
    padding: 2rem clamp(1.5rem, 5vw, 3rem);
    border-top: 1px solid rgba(247,244,239,0.08);
  }

  .footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: rgba(247,244,239,0.7);
    text-decoration: none;
  }

  .footer-logo span { color: var(--accent); }

  .footer-nav { display: flex; gap: 1.5rem; }
  .footer-nav a {
    font-size: 0.8rem;
    color: rgba(247,244,239,0.35);
    text-decoration: none;
    transition: color 0.15s;
  }
  .footer-nav a:hover { color: rgba(247,244,239,0.7); }

  .footer-copy { font-size: 0.75rem; color: rgba(247,244,239,0.25); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    #hero { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-step { border-right: none; border-bottom: 1px solid rgba(247,244,239,0.12); }
    .process-step:nth-child(2n) { border-right: none; }
    .why-grid { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    nav .nav-links { display: none; }
  }

  @media (max-width: 600px) {
    .process-steps { grid-template-columns: 1fr; }
    .hero-stat-grid { grid-template-columns: 1fr 1fr; }
  }

  /* Entrance animations */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

/* ── CONTACT MODAL ── */
/* ── MODAL OVERLAY ── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 24, 20, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }

  .modal-overlay.visible {
    opacity: 1;
    pointer-events: all;
  }

  /* ── MODAL PANEL ── */
  .modal {
    background: var(--ink);
    border-radius: 8px;
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
    opacity: 0;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
  }

  .modal-overlay.visible .modal {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  /* ── MODAL SIDEBAR ── */
  .modal-sidebar {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(247, 244, 239, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    justify-content: space-between;
  }

  .modal-logo {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: rgba(247, 244, 239, 0.9);
    text-decoration: none;
  }

  .modal-logo span { color: var(--accent); }

  .modal-sidebar-body { display: flex; flex-direction: column; gap: 1.25rem; }

  .modal-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 500;
  }

  .modal-heading {
    font-family: var(--serif);
    font-size: 1.65rem;
    line-height: 1.2;
    color: rgba(247, 244, 239, 0.95);
    letter-spacing: -0.02em;
  }

  .modal-heading em { font-style: italic; color: #f39040; }

  .modal-desc {
    font-size: 0.85rem;
    color: rgba(247, 244, 239, 0.5);
    line-height: 1.7;
  }

  .modal-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .modal-contact-list a,
  .modal-contact-list span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: rgba(247, 244, 239, 0.55);
    text-decoration: none;
    transition: color 0.15s;
  }

  .modal-contact-list a:hover { color: var(--accent); }

  .modal-contact-list svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
  }

  .modal-sidebar-footer {
    font-size: 0.72rem;
    color: rgba(247, 244, 239, 0.2);
    line-height: 1.5;
  }

  /* ── MODAL FORM SIDE ── */
  .modal-form-side {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
  }

  /* Close button */
  .modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 32px;
    height: 32px;
    background: rgba(247, 244, 239, 0.06);
    border: 1px solid rgba(247, 244, 239, 0.12);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    color: rgba(247, 244, 239, 0.5);
  }

  .modal-close:hover { background: rgba(247, 244, 239, 0.12); color: rgba(247, 244, 239, 0.9); }

  .modal-close svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

  .modal-form-heading {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: rgba(247, 244, 239, 0.8);
    margin-bottom: 0.25rem;
    padding-right: 2.5rem;
  }

  /* Form elements inherit from styles.css but override for dark context */
  .modal-form-side .form-group { display: flex; flex-direction: column; gap: 0.35rem; }

  .modal-form-side label {
    font-size: 0.72rem;
    color: rgba(247, 244, 239, 0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .modal-form-side input,
  .modal-form-side textarea,
  .modal-form-side select {
    background: rgba(247, 244, 239, 0.05);
    border: 1px solid rgba(247, 244, 239, 0.13);
    border-radius: 4px;
    color: rgba(247, 244, 239, 0.9);
    font-family: var(--sans);
    font-size: 0.875rem;
    padding: 0.65rem 0.85rem;
    transition: border 0.15s, background 0.15s;
    width: 100%;
    outline: none;
  }

  .modal-form-side input::placeholder,
  .modal-form-side textarea::placeholder {
    color: rgba(247, 244, 239, 0.2);
  }

  .modal-form-side input:focus,
  .modal-form-side textarea:focus,
  .modal-form-side select:focus {
    border-color: rgba(247, 244, 239, 0.35);
    background: rgba(247, 244, 239, 0.08);
  }

  .modal-form-side textarea { resize: vertical; min-height: 90px; }

  .modal-form-side .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .modal-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    letter-spacing: 0.02em;
    width: 100%;
  }

  .modal-submit:hover { background: #f39040; transform: translateY(-1px); }
  .modal-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

  /* Success state */
  .modal-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    height: 100%;
  }

  .modal-success.show { display: flex; }
  .modal-form-fields.hide { display: none; }

  .success-icon {
    width: 52px;
    height: 52px;
    background: rgba(29, 107, 63, 0.2);
    border: 1px solid rgba(29, 107, 63, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .success-icon svg { width: 22px; height: 22px; stroke: #4caf7d; fill: none; stroke-width: 1.5; }

  .success-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: rgba(247, 244, 239, 0.9);
  }

  .success-desc {
    font-size: 0.85rem;
    color: rgba(247, 244, 239, 0.5);
    line-height: 1.6;
    max-width: 30ch;
  }

  /* ── TRIGGER BUTTON (demo only) ── */
  .demo-page {
    min-height: 100vh;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }

  .demo-label {
    font-size: 0.8rem;
    color: var(--ink-faint);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .open-modal-btn {
    background: var(--ink);
    color: var(--paper);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.15s;
  }

  .open-modal-btn:hover { background: var(--accent); }

  /* ── RESPONSIVE ── */
  @media (max-width: 640px) {
    .modal {
      grid-template-columns: 1fr;
      max-height: 95vh;
    }

    .modal-sidebar {
      border-right: none;
      border-bottom: 1px solid rgba(247, 244, 239, 0.1);
      padding: 2rem 1.5rem 1.5rem;
      gap: 1rem;
    }

    .modal-sidebar-footer { display: none; }

    .modal-form-side { padding: 1.5rem; }

    .modal-form-side .form-row { grid-template-columns: 1fr; }
  }

  .file-hint{
    color: #f39040
  }

