/* ============================================================
   Felix Clarke Marketing — shared styles
   ============================================================ */

:root {
  --cream:      #F3EFE8;
  --cream-line: #E2DCD0;
  --dark:       #17171D;
  --white:      #FFFFFF;

  --ink:        #1E1E24;   /* near-black headings / nav */
  --gold:       #9C8A5C;   /* eyebrows, italics, numerals */
  --gold-soft:  #B7A87E;   /* lighter gold on dark */
  --muted:      #8C8472;   /* body copy on light */
  --muted-dark: #BEBCB6;   /* body copy on dark */

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --colw: 760px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 26px;
}

/* ---------- Headings ---------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  margin: 0;
}

h2.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: 0.005em;
  margin-bottom: 30px;
}

p { margin: 0 0 22px; }
p:last-child { margin-bottom: 0; }

.muted { color: var(--muted); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid transparent;
}
.site-header.on-white { background: var(--white); }

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.brand {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 15px 26px;
  background: transparent;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease;
}
.btn:hover,
.btn:focus-visible { background: var(--gold); color: #fff; }

.btn-lg { padding: 18px 40px; }

/* ============================================================
   Sections
   ============================================================ */
section { padding: 96px 0; }

.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-dark  { background: var(--dark); }

.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark p { color: var(--muted-dark); }
.bg-dark .eyebrow { color: var(--gold-soft); }

/* column-width content block */
.col { max-width: var(--colw); margin: 0 auto; }

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 88px 0 104px;
}
.hero .eyebrow { margin-bottom: 34px; }
.hero h1 {
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 auto;
  max-width: 760px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero .lede {
  max-width: 560px;
  margin: 34px auto 46px;
  color: var(--muted);
  font-size: 17px;
}

/* ---------- Left-aligned narrative blocks ---------- */
.narrative { max-width: var(--colw); margin: 0 auto; }
.narrative .section-title { max-width: 620px; }

/* ---------- How it works (steps) ---------- */
.howto-head { text-align: center; margin-bottom: 66px; }
.howto-head .section-title { margin-bottom: 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  max-width: 1000px;
  margin: 0 auto;
}
.step .num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 22px;
}
.step h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}
.step p { color: var(--muted); margin: 0; }

/* ============================================================
   Contact form
   ============================================================ */
.contact-head { text-align: center; margin-bottom: 52px; }
.contact-head .section-title { margin-bottom: 18px; }
.contact-head .sub { color: var(--muted); max-width: 520px; margin: 0 auto; }

.form { max-width: 560px; margin: 0 auto; }

.field { margin-bottom: 26px; }

.field > label,
.field-group > legend,
.legend {
  display: block;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 600;
}
.req {
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sub-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #D8D3CA;
  padding: 13px 14px;
  border-radius: 0;
  transition: border-color .2s ease;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
}
textarea { min-height: 120px; resize: vertical; }
select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238C8472' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
}

.fieldset-reset { border: 0; padding: 0; margin: 0 0 26px; }

.form .btn { margin-top: 8px; }

/* honeypot */
.hp { position: absolute; left: -5000px; }

/* ============================================================
   Privacy page
   ============================================================ */
.policy { padding: 84px 0 110px; }
.policy h1 {
  font-size: clamp(46px, 7vw, 78px);
  font-weight: 600;
  margin-bottom: 44px;
}
.policy .col { max-width: 880px; margin: 0; }
.policy .updated { color: var(--ink); margin-bottom: 30px; }
.policy h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 34px 0 14px;
}
.policy p { color: #3a3a40; }
.policy .addr { margin-top: 48px; color: var(--ink); line-height: 1.8; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--cream-line);
  padding: 64px 0 56px;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand .brand { display: inline-block; margin-bottom: 22px; }
.footer-social {
  display: inline-flex;
  width: 26px; height: 26px;
  align-items: center; justify-content: center;
  color: var(--ink);
  margin-bottom: 18px;
}
.footer-social svg { width: 20px; height: 20px; }
.footer-privacy {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  width: max-content;
  padding-bottom: 2px;
}
.footer-privacy:hover { color: var(--gold); }

.footer-contact {
  text-align: left;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
}
.footer-contact a { text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }

/* ---------- Thank you ---------- */
.thanks { text-align: center; padding: 140px 0; }
.thanks h1 { font-size: clamp(38px,5vw,56px); margin-bottom: 22px; }
.thanks p { color: var(--muted); max-width: 480px; margin: 0 auto 36px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 780px) {
  .wrap { padding: 0 22px; }
  .site-header .wrap { height: 74px; }
  .brand { font-size: 19px; }
  .site-header .btn { font-size: 10px; padding: 12px 16px; letter-spacing: 0.12em; }
  section { padding: 70px 0; }
  .hero { padding: 56px 0 72px; }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .name-row { grid-template-columns: 1fr; }
  .site-footer .wrap { gap: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
