@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --black: #0e0e0e;
  --white: #ffffff;
  --ink:   #1a1a1a;
  --muted: #666;
  --faint: #999;
  --rule:  #e8e8e8;
  --bg-off: #f9f9f8;

  --font-display: 'EB Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --pad-x: 64px;
  --pad-section: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px var(--pad-x);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-decoration: none;
  color: var(--ink);
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 28px; }

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s;
}

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

.nav-links a.nav-cta {
  border: 1px solid var(--rule);
  padding: 7px 14px;
  color: var(--ink);
  transition: border-color 0.2s;
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s;
  background: transparent;
  cursor: pointer;
}

.btn:hover { background: var(--ink); color: var(--white); }

.btn-ghost { border-color: var(--rule); color: var(--muted); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: transparent; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 13px 22px;
  font-size: 13px;
  font-family: var(--font-body);
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-wa:hover { opacity: 0.88; color: #fff; background: #25D366; }

/* EYEBROW */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--faint);
  display: block;
  margin-bottom: 18px;
}

/* TYPE */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(40px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: 17px; font-family: var(--font-body); font-weight: 500; }
p  { color: var(--muted); max-width: 660px; }

/* LAYOUT */
.wrap { max-width: 1100px; margin: auto; padding: var(--pad-section) var(--pad-x); }

/* GRIDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 48px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* CARDS */
.card { background: var(--white); padding: 36px 32px; transition: background 0.2s; }
.card:hover { background: var(--bg-off); }
.card .card-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 12px; }
.card h3 { margin-bottom: 10px; }
.card p  { font-size: 14px; max-width: 100%; }

/* SPLIT PANELS */
.split-left  { padding: var(--pad-section) var(--pad-x); border-right: 1px solid var(--rule); }
.split-right { padding: var(--pad-section) var(--pad-x); }
.split-left h2,
.split-right h2 { margin-bottom: 20px; }
.split-left p,
.split-right p  { margin-bottom: 16px; }

/* STEP */
.step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--rule); }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-display); font-size: 32px; color: var(--rule); line-height: 1; min-width: 36px; }
.step-body h3 { font-size: 15px; margin-bottom: 4px; color: var(--ink); }
.step-body p  { font-size: 13px; max-width: 100%; }

/* DETAIL ROWS */
.detail-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 14px; }
.detail-row:first-child { border-top: 1px solid var(--rule); }
.detail-label { color: var(--faint); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.detail-value { color: var(--ink); font-weight: 500; }

/* FAQ */
.faq-item { border-top: 1px solid var(--rule); padding: 24px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.faq-a { font-size: 14px; color: var(--muted); max-width: 100%; }

/* FOOTER */
footer {
  border-top: 1px solid var(--rule);
  padding: 48px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-left { font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); text-decoration: none; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { text-decoration: none; color: var(--faint); font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 12px; color: var(--faint); }

/* MOBILE */
@media (max-width: 768px) {
  :root { --pad-x: 24px; --pad-section: 64px; }
  nav { padding: 18px var(--pad-x); }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .split-left { border-right: none; border-bottom: 1px solid var(--rule); }
  footer { flex-direction: column; align-items: flex-start; gap: 20px; padding: 40px var(--pad-x); }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
