/* John C. York — Deep Teal & Gold */
:root {
  --teal-900: #14332F;
  --teal: #1E4B47;
  --teal-soft: #5E8A80;
  --teal-tint: #E8EFEC;
  --ivory: #F7F2E8;
  --ivory-deep: #EFE7D7;
  --gold: #C9A24B;
  --gold-deep: #A88434;
  --ink: #1E2422;
  --ink-soft: #4A524F;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(30, 75, 71, 0.10);
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--teal-900); }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
h3 { font-size: 1.45rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 75, 71, 0.10);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; color: var(--teal-900); letter-spacing: 0.01em; }
.brand span { color: var(--gold-deep); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); border-color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--teal); cursor: pointer; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform .15s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--teal); color: var(--ivory); }
.btn-primary:hover { background: var(--teal-900); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--teal-900); }
.btn-gold:hover { background: var(--gold-deep); color: var(--ivory); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--ivory); }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ============ Hero ============ */
.hero {
  background: var(--teal);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 90px solid rgba(201, 162, 75, 0.14);
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { color: var(--ivory); margin: 6px 0 22px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lead { font-size: 1.15rem; color: rgba(247, 242, 232, 0.85); max-width: 34rem; margin-bottom: 34px; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Photo placeholders */
.photo-ph {
  background: var(--teal-900);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--teal-soft);
  text-align: center;
  border: 1px dashed rgba(201, 162, 75, 0.45);
  min-height: 300px;
}
.photo-ph .ph-icon { font-size: 2.4rem; color: var(--gold); font-family: var(--serif); }
.photo-ph small { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }
.photo-ph.light { background: var(--ivory-deep); color: var(--teal-soft); border-color: rgba(30, 75, 71, 0.3); }
.hero-photo { aspect-ratio: 4 / 5; }

/* ============ Sections ============ */
.section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head p { color: var(--ink-soft); margin-top: 14px; }
.section.alt { background: var(--white); }
.section.teal-band { background: var(--teal); color: var(--ivory); }
.section.teal-band h2 { color: var(--ivory); }
.section.teal-band p { color: rgba(247, 242, 232, 0.85); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
}
.section.alt .card { background: var(--ivory); box-shadow: none; border: 1px solid rgba(30, 75, 71, 0.12); border-top: 3px solid var(--gold); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.97rem; flex: 1; }
.card .card-link { margin-top: 18px; font-weight: 600; font-size: 0.9rem; color: var(--teal); }
.card .card-link:hover { color: var(--gold-deep); }

.card-logo { height: 48px; margin-bottom: 18px; display: flex; align-items: center; }
.card-logo img { max-height: 48px; width: auto; border-radius: 10px; }
.card-logo img.wide { max-height: 34px; border-radius: 0; }

.tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--teal-tint);
  color: var(--teal);
  margin-bottom: 16px;
}
.tag.gold { background: rgba(201, 162, 75, 0.16); color: var(--gold-deep); }
.tag.soon { background: var(--ivory-deep); color: var(--ink-soft); }

/* Quote / verse band */
.verse {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.verse blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  line-height: 1.4;
}
.verse cite { display: block; margin-top: 18px; font-style: normal; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

/* Topics list */
.topic-list { list-style: none; display: grid; gap: 18px; }
.topic-list li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.topic-list li strong { font-family: var(--serif); font-size: 1.2rem; color: var(--teal-900); display: block; margin-bottom: 4px; }
.topic-list li span { color: var(--ink-soft); font-size: 0.95rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 30px 26px 26px; background: rgba(247, 242, 232, 0.07); border: 1px solid rgba(247, 242, 232, 0.18); border-radius: var(--radius); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.step h3 { color: var(--ivory); font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: 0.93rem; }

/* Instagram */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ig-ph { aspect-ratio: 1; min-height: 0; }
.ig-ph .ph-icon { font-size: 1.6rem; }

/* Forms */
.form-card { background: var(--white); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--teal-900); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--sans);
  font-size: 0.97rem;
  padding: 13px 15px;
  border: 1.5px solid rgba(30, 75, 71, 0.22);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(94, 138, 128, 0.2);
}
.form-field textarea { resize: vertical; min-height: 140px; }

/* Footer */
footer { background: var(--teal-900); color: rgba(247, 242, 232, 0.75); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
footer h4 { font-family: var(--serif); color: var(--ivory); font-size: 1.15rem; margin-bottom: 14px; }
footer ul { list-style: none; display: grid; gap: 9px; }
footer a { color: rgba(247, 242, 232, 0.75); font-size: 0.92rem; }
footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(247, 242, 232, 0.15); padding-top: 24px; font-size: 0.82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-brand { font-family: var(--serif); font-size: 1.5rem; color: var(--ivory); margin-bottom: 10px; }
.footer-brand span { color: var(--gold); }

/* Page hero (inner pages) */
.page-hero { background: var(--teal); color: var(--ivory); padding: 76px 0; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -140px; bottom: -220px; width: 420px; height: 420px; border-radius: 50%; border: 70px solid rgba(201, 162, 75, 0.13); }
.page-hero h1 { color: var(--ivory); font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-top: 6px; }
.page-hero p { max-width: 38rem; color: rgba(247, 242, 232, 0.85); margin-top: 18px; font-size: 1.08rem; position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); }

/* CTA band */
.cta-band { background: var(--gold); }
.cta-band .inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 52px 0; }
.cta-band h2 { color: var(--teal-900); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-band p { color: rgba(30, 36, 34, 0.75); margin-top: 6px; }

/* Notice */
.notice { background: var(--teal-tint); border-left: 4px solid var(--teal-soft); border-radius: 0 10px 10px 0; padding: 16px 20px; font-size: 0.92rem; color: var(--ink-soft); margin-top: 26px; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero-inner, .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(30, 75, 71, 0.12);
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-inner { padding: 64px 24px; }
}
