/* Brand: dark, premium, echoing the ICONIC palette (near-black navy + white) */

:root {
  --ink: #131c26;          /* primary dark, from the Iconic proposal cover */
  --ink-soft: #1d2935;
  --paper: #f7f6f3;
  --white: #ffffff;
  --accent: #c9a96a;       /* understated gold for CTAs */
  --accent-hover: #b8954f;
  --text-dark: #1d2935;
  --text-light: #e8e6e1;
  --text-muted: #8b97a3;
  --radius: 6px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 880px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.wordmark {
  color: var(--white); font-weight: 600; letter-spacing: 0.18em; font-size: 0.95rem;
}
.wordmark-sub {
  display: block; font-size: 0.65rem; color: var(--text-muted);
  letter-spacing: 0.3em; font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600;
  border: none; border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn-primary {
  background: var(--accent); color: var(--ink);
  padding: 16px 32px; font-size: 1rem;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-small {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 9px 18px; font-size: 0.85rem;
}
.btn-small:hover { border-color: var(--white); }
.btn-block { width: 100%; }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: 0.6; cursor: wait; }

/* Hero */
.hero {
  background: linear-gradient(170deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--text-light);
  padding: 110px 0 120px;
}
.hero-copy { max-width: 720px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.75rem;
  color: var(--accent); font-weight: 600; margin-bottom: 1.2rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero-sub { font-size: 1.15rem; margin-bottom: 2.2rem; color: var(--text-light); }
.hero-note { margin-top: 1rem; font-size: 0.85rem; color: var(--text-muted); }

/* Sections */
.section { padding: 90px 0; }
.section-light { background: var(--paper); color: var(--text-dark); }
.section-dark { background: var(--ink); color: var(--text-light); }
.section-dark h2 { color: var(--white); }

/* Cards */
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 2rem;
}
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: 0 1px 3px rgba(19, 28, 38, 0.08);
}
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; color: #4a5663; }

/* Process */
.process { list-style: none; margin-top: 2.5rem; display: grid; gap: 32px; }
.process li {
  display: grid; grid-template-columns: 70px 1fr; gap: 20px; align-items: start;
}
.step-num {
  font-family: var(--font-display); font-size: 1.8rem; color: var(--accent);
  border-top: 2px solid var(--accent); padding-top: 8px;
}
.process h3 { color: var(--white); margin-bottom: 0.3rem; grid-column: 2; }
.process p { grid-column: 2; color: var(--text-muted); }
.process li h3 { grid-row: 1; }

/* About */
.about { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: center; }
.photo-placeholder {
  width: 240px; height: 280px; border-radius: var(--radius);
  background: var(--ink-soft); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 3rem;
}
.about-copy p { margin-bottom: 1rem; }

/* Form */
.form-wrap {
  max-width: 640px; margin: 0 auto;
}
.form-sub { color: var(--text-muted); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 6px; color: var(--text-light);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--ink-soft); color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15); border-radius: var(--radius);
  padding: 13px 14px; font-size: 1rem; font-family: var(--font-body);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-privacy {
  margin-top: 14px; font-size: 0.8rem; color: var(--text-muted); text-align: center;
}
.form-error { margin-top: 14px; color: #e08585; text-align: center; font-size: 0.9rem; }

/* Footer */
.site-footer {
  background: var(--ink); color: var(--text-muted);
  padding: 40px 0; font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-fine { margin-top: 8px; font-size: 0.75rem; }

/* Responsive */
@media (max-width: 760px) {
  .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .photo-placeholder { margin: 0 auto; }
  .hero { padding: 70px 0 80px; }
  .section { padding: 60px 0; }
}
