/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #FAFAF7;
  --fg:           #1C1B19;
  --accent:       #9B6A3E;
  --accent-dark:  #6F4C2B;
  --gold:         #C9A96E;
  --muted:        #7A7268;
  --border:       #E6E1D8;
  --surface:      #F3EFE8;
  --white:        #FFFFFF;
  --success:      #4A7C59;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

/* ─── Nav ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 2rem;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--fg); }
.nav__cta {
  background: var(--fg);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.55rem 1.2rem;
  border-radius: 3px;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.nav__cta:hover { background: var(--accent); }

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--accent);
}
.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--fg);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 1.75rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--accent); }
.hero__meta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.hero__meta-check {
  width: 14px;
  height: 14px;
  stroke: var(--success);
  fill: none;
}
.hero__visual {
  position: relative;
}
.hero__mockup {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(28,27,25,0.13);
  background: var(--white);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
}
.hero__mockup-header {
  background: var(--fg);
  padding: 0.65rem 1rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.hero__mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.hero__mockup-body {
  flex: 1;
  padding: 2rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mockup-line {
  height: 6px;
  border-radius: 3px;
  background: var(--border);
}
.mockup-line--title { width: 60%; height: 14px; background: var(--accent); opacity: 0.4; }
.mockup-line--sub   { width: 80%; }
.mockup-line--sub2  { width: 70%; }
.mockup-line--short { width: 35%; }
.mockup-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mockup-block-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
}
.mockup-block-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
}
.mockup-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 3px;
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}
.hero__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 20px rgba(28,27,25,0.08);
}
.hero__badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero__badge-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ─── Proof Bar ────────────────────────────────────── */
.proof-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 2rem;
}
.proof-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proof-bar__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.proof-bar__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.proof-bar__stat {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.proof-bar__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}
.proof-bar__stat-label {
  font-size: 0.78rem;
  color: var(--muted);
}
.proof-bar__divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ─── Verticals ───────────────────────────────────── */
.verticals {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.verticals__header {
  text-align: center;
  margin-bottom: 3rem;
}
.verticals__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.verticals__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}
.verticals__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.vertical-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.vertical-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(28,27,25,0.07);
}
.vertical-card__icon {
  width: 48px;
  height: 48px;
  background: var(--surface);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.vertical-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vertical-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.vertical-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.vertical-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.vertical-card__feature {
  font-size: 0.85rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.vertical-card__feature::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'%3E%3Cpath d='M1 5l4 4 8-8' stroke='%239B6A3E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
}
.vertical-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* ─── Workflow (dark section) ─────────────────────── */
.workflow-section {
  background: var(--fg);
  color: var(--white);
  padding: 5rem 2rem;
}
.workflow-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.workflow-section__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}
.workflow-section__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.workflow-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.workflow-step:last-child { border-bottom: none; }
.workflow-step__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 2rem;
  opacity: 0.7;
}
.workflow-step__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.workflow-step__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ─── Gallery ─────────────────────────────────────── */
.gallery {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.gallery__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(28,27,25,0.1);
}
.gallery-card__preview {
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.75rem;
  background: var(--surface);
}
.gallery-card__preview-tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}
.gallery-card__preview-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
.gallery-card__preview-lines {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
}
.gallery-card__preview-line {
  height: 4px;
  border-radius: 2px;
  background: var(--border);
}
.gallery-card__body {
  padding: 1.25rem;
}
.gallery-card__tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.gallery-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
.gallery-card__meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
.gallery-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--success);
  margin-top: 0.4rem;
}
.gallery-card__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
}

/* ─── Waitlist ────────────────────────────────────── */
.waitlist {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.waitlist__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.waitlist__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.waitlist__sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.waitlist__form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1rem;
}
.waitlist__input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.waitlist__input:focus { border-color: var(--accent); }
.waitlist__input::placeholder { color: var(--muted); }
.waitlist__submit {
  background: var(--fg);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.waitlist__submit:hover { background: var(--accent); }
.waitlist__fine {
  font-size: 0.75rem;
  color: var(--muted);
}
.waitlist__msg {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.waitlist__msg--success { color: var(--success); }
.waitlist__msg--error { color: #c0392b; }

/* ─── Founder ─────────────────────────────────────── */
.founder {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}
.founder__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.founder__initials {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.founder__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.founder__role {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.founder__bio {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Footer ───────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  background: var(--bg);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero,
  .verticals__grid,
  .workflow-section__inner,
  .founder {
    grid-template-columns: 1fr;
  }
  .hero { gap: 2.5rem; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .waitlist__form { flex-direction: column; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .gallery__header { flex-direction: column; align-items: flex-start; }
}