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

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --charcoal:   #0f0f0f;
  --ivory:      #FAF7F2;
  --ivory-alt:  #F0EBE1;
  --gold:       #B8864E;
  --text:       #1A1816;
  --text-mid:   #3A3530;
  --text-muted: #7A7570;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
}

/* ─── Base ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  background-color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  z-index: 1;
}

.logo-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  letter-spacing: 0.22em;
  color: #EDE6D4;
  text-transform: uppercase;
  user-select: none;
}

.logo-rule {
  color: var(--gold);
  font-weight: 300;
  margin: 0 0.04em;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.62rem, 1.5vw, 0.7rem);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(237, 230, 212, 0.6);
}

.hero-cta {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(237, 230, 212, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 134, 78, 0.6);
  padding-bottom: 0.25rem;
  transition: color 0.25s, border-color 0.25s;
}

.hero-cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* soft fade into ivory */
.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--ivory));
  pointer-events: none;
}

/* ─── Gold Rule ──────────────────────────────────────────── */
.gold-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 2.8rem auto;
}

/* ─── About ──────────────────────────────────────────────── */
.about {
  padding: 3rem 0 4.5rem;
  background: var(--ivory);
}

.about-lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1.8rem;
}

.about-body {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.95;
  color: var(--text-mid);
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── Focus Areas ────────────────────────────────────────── */
.focus {
  padding: 4rem 0 5rem;
  background: var(--ivory-alt);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}

.focus-item h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  padding-bottom: 0.75rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid var(--gold);
}

.focus-item p {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-mid);
}

/* ─── Contact ────────────────────────────────────────────── */
.contact {
  padding: 5rem 0 6rem;
  background: var(--ivory);
}

.contact-wrap {
  max-width: 580px;
}

.contact .eyebrow { margin-bottom: 1.2rem; }

.contact-intro {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 3rem;
}

.honeypot { display: none; }

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.8rem;
}

label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.label-note {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.6rem;
  opacity: 0.8;
}

input, textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 24, 22, 0.3);
  padding: 0.6rem 0;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input:focus, textarea:focus {
  border-bottom-color: var(--gold);
}

textarea {
  resize: none;
  line-height: 1.75;
}

button[type="submit"] {
  display: block;
  margin: 2.2rem auto 0;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--text);
  border: none;
  padding: 1rem 2.8rem;
  cursor: pointer;
  transition: background 0.22s;
}

button[type="submit"]:hover {
  background: var(--gold);
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 3.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(237, 230, 212, 0.65);
}

.footer-email {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(237, 230, 212, 0.5);
}

.footer-email a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(237, 230, 212, 0.2);
  transition: color 0.2s, border-color 0.2s;
}

.footer-email a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-copy {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(237, 230, 212, 0.3);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 700px) {
  .focus-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-fade { height: 90px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.4rem; }
  .about { padding: 2rem 0 3.5rem; }
  .focus { padding: 3rem 0 4rem; }
  .contact { padding: 4rem 0 5rem; }
  .gold-rule { margin: 2.2rem auto; }
}
