@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================
   HUMAN WORK — BRAND + RESET
   ============================================ */
:root {
  --amber:       #DA8044;
  --amber-light: #f0b07a;
  --ink:         #1C1410;
  --cream:       #FAF6F2;
  --peach:       #F6E0D2;
  --sage:        #7A8C6E;
  --ink-soft:    #3a2c20;
  --muted:       #6b5a4a;
  --border:      rgba(218,128,68,0.18);
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', Arial, sans-serif;
  --max:         1160px;
  --pad:         80px;
  --pad-v:       96px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--cream); color: var(--ink); line-height: 1.7; font-size: 17px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; height: auto; }
a  { color: inherit; text-decoration: none; }

/* ============================================
   NAV
   ============================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(28,20,16,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(218,128,68,0.15);
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
}
.nav-brand { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand .b1 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--cream); letter-spacing: 0.02em; }
.nav-brand .b2 { font-size: 10px; font-weight: 400; color: var(--amber); letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,246,242,0.65); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.nav-cta { background: var(--amber) !important; color: var(--ink) !important; padding: 7px 16px; border-radius: 2px; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--amber-light) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--cream); display: block; transition: 0.3s; border-radius: 1px; }

/* Mobile nav drawer */
@media (max-width: 860px) {
  .site-nav { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(28,20,16,0.98); flex-direction: column;
    padding: 24px 20px; gap: 0; border-bottom: 1px solid rgba(218,128,68,0.2);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; font-size: 14px; border-bottom: 1px solid rgba(218,128,68,0.08); }
  .nav-links li:last-child a { border-bottom: none; margin-top: 12px; text-align: center; }
  .nav-cta { padding: 12px 20px !important; }
}

/* ============================================
   PAGE WRAPPER
   ============================================ */
.page-wrap { padding-top: 64px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; transition: all 0.2s; cursor: pointer; border: none; font-family: var(--font-body); white-space: nowrap; }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(250,246,242,0.3); }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: #2e2118; }
@media (max-width: 480px) {
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
}

/* ============================================
   SECTION UTILS
   ============================================ */
.wrap { max-width: var(--max); margin: 0 auto; }
.section { padding: var(--pad-v) var(--pad); }
.section-label { font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--amber); flex-shrink: 0; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); font-weight: 700; line-height: 1.15; color: var(--ink); margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--amber); }
.section-lead { font-size: 18px; color: var(--muted); line-height: 1.7; font-weight: 300; max-width: 600px; margin-bottom: 48px; }

@media (max-width: 768px) {
  :root { --pad: 24px; --pad-v: 60px; }
  .section-lead { font-size: 16px; margin-bottom: 32px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--ink);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(218,128,68,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-text {
  padding: 80px var(--pad) 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--amber); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--amber); }
.hero h1 { font-family: var(--font-display); font-size: clamp(38px, 4.5vw, 64px); font-weight: 700; line-height: 1.08; color: var(--cream); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--amber); }
.hero-anchor { font-family: var(--font-display); font-style: italic; font-size: clamp(15px, 1.8vw, 19px); color: var(--amber); margin-bottom: 20px; line-height: 1.5; }
.hero-lead { font-size: clamp(15px, 1.6vw, 18px); color: rgba(250,246,242,0.68); line-height: 1.7; font-weight: 300; margin-bottom: 40px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-photo { position: relative; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(0.82) saturate(0.9); }
.hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--ink) 0%, transparent 35%); }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { height: 380px; order: -1; }
  .hero-photo::after { background: linear-gradient(to bottom, var(--ink) 0%, transparent 40%); }
  .hero-text { padding: 40px 24px 60px; }
  .hero-lead { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero-photo { height: 280px; }
}

/* ============================================
   ANCHOR STRIP
   ============================================ */
.anchor-strip { background: var(--amber); padding: 24px var(--pad); }
.anchor-strip p { font-family: var(--font-display); font-style: italic; font-size: clamp(16px, 2vw, 21px); color: var(--ink); line-height: 1.45; max-width: var(--max); margin: 0 auto; }
@media (max-width: 768px) { .anchor-strip { padding: 20px 24px; } }

/* ============================================
   PHILOSOPHY — EXAMINE / DECIDE / CHANGE
   ============================================ */
.philosophy { background: white; }
.phil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.phil-intro p { font-size: 18px; color: var(--ink-soft); line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.phil-intro .anchor-line { font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 24px); font-style: italic; color: var(--amber); border-left: 3px solid var(--amber); padding-left: 20px; margin: 32px 0; line-height: 1.45; }
.phil-steps { display: grid; gap: 16px; }
.phil-step { background: var(--cream); border-left: 3px solid var(--amber); padding: 24px 28px; }
.phil-step h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.phil-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.neuro-bar { background: var(--ink); padding: 36px 44px; margin-top: 48px; display: grid; grid-template-columns: 56px 1fr; gap: 28px; align-items: center; }
.neuro-bar .icon { font-size: 40px; }
.neuro-bar h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.neuro-bar p { font-size: 14px; color: rgba(250,246,242,0.72); line-height: 1.7; font-weight: 300; }

@media (max-width: 860px) {
  .phil-grid { grid-template-columns: 1fr; gap: 40px; }
  .neuro-bar { grid-template-columns: 1fr; gap: 12px; padding: 28px 24px; }
  .neuro-bar .icon { font-size: 32px; }
}

/* ============================================
   FIVE LENSES
   ============================================ */
.lenses { background: var(--cream); }
.lenses-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--border); margin-top: 40px; }
.lens { padding: 32px 24px; border-right: 1px solid var(--border); transition: background 0.2s; }
.lens:last-child { border-right: none; }
.lens:hover { background: white; }
.lens-num { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: rgba(218,128,68,0.12); line-height: 1; margin-bottom: 16px; }
.lens-icon { font-size: 24px; margin-bottom: 12px; }
.lens h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 10px; }
.lens p { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.lens a { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.lens a:hover { gap: 8px; }

@media (max-width: 1024px) { .lenses-grid { grid-template-columns: repeat(3, 1fr); } .lens:nth-child(3) { border-right: none; } .lens:nth-child(4) { border-right: 1px solid var(--border); } .lens:nth-child(5) { border-right: none; } }
@media (max-width: 600px) { .lenses-grid { grid-template-columns: 1fr 1fr; } .lens { border-right: 1px solid var(--border); } .lens:nth-child(2n) { border-right: none; } .lens:nth-child(3) { border-right: 1px solid var(--border); } }
@media (max-width: 400px) { .lenses-grid { grid-template-columns: 1fr; } .lens { border-right: none; border-bottom: 1px solid var(--border); } .lens:last-child { border-bottom: none; } }

/* ============================================
   ABOUT STRIP
   ============================================ */
.about-strip { background: var(--ink); }
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: center; max-width: var(--max); margin: 0 auto; }
.about-img-wrap { position: relative; }
.about-img-wrap::before { content: ''; position: absolute; top: -14px; left: -14px; right: 14px; bottom: 14px; border: 1px solid rgba(218,128,68,0.25); z-index: 0; border-radius: 1px; }
.about-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; border-radius: 1px; position: relative; z-index: 1; }
.about-text .section-label { color: var(--amber); }
.about-text .section-label::before { background: var(--amber); }
.about-text .section-title { color: var(--cream); }
.about-text p { font-size: 16px; color: rgba(250,246,242,0.7); line-height: 1.8; font-weight: 300; margin-bottom: 18px; }
.about-text .anchor-line { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--amber); border-left: 3px solid var(--amber); padding-left: 16px; margin: 24px 0; line-height: 1.5; }

@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } .about-img-wrap { max-width: 280px; } }

/* ============================================
   SUBSCRIBE
   ============================================ */
.subscribe { background: var(--peach); text-align: center; }
.subscribe .section-title { font-size: clamp(24px, 3.5vw, 38px); }
.subscribe p { font-size: 17px; color: #5a4030; max-width: 500px; margin: 0 auto 32px; font-weight: 300; line-height: 1.65; }
.sub-form { display: flex; max-width: 440px; margin: 0 auto; box-shadow: 0 4px 20px rgba(28,20,16,0.1); }
.sub-form input { flex: 1; padding: 15px 18px; font-size: 15px; font-family: var(--font-body); border: none; background: white; color: var(--ink); outline: none; border-radius: 2px 0 0 2px; min-width: 0; }
.sub-form input::placeholder { color: #bbb; }
.sub-form button { background: var(--ink); color: var(--cream); padding: 15px 22px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; font-family: var(--font-body); border-radius: 0 2px 2px 0; transition: background 0.2s; white-space: nowrap; }
.sub-form button:hover { background: var(--amber); }
.sub-note { font-size: 12px; color: #8a6a58; margin-top: 12px; }
@media (max-width: 480px) { .sub-form { flex-direction: column; } .sub-form input { border-radius: 2px; } .sub-form button { border-radius: 2px; padding: 14px; } }

/* ============================================
   WHAT IT IS NOT
   ============================================ */
.not-section { background: var(--ink); }
.not-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.not-inner .section-label { justify-content: center; color: var(--amber); }
.not-inner .section-title { color: var(--cream); }
.not-inner p { font-size: clamp(16px, 2vw, 18px); color: rgba(250,246,242,0.68); font-weight: 300; line-height: 1.8; margin-bottom: 18px; }
.not-inner .closing { font-family: var(--font-display); font-style: italic; font-size: clamp(17px, 2.2vw, 21px); color: var(--amber); line-height: 1.6; margin-top: 12px; }

/* ============================================
   PAGE HEROES (inner pages)
   ============================================ */
.page-hero { background: var(--ink); padding: 100px var(--pad) 72px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(34px, 5vw, 60px); font-weight: 700; color: var(--cream); line-height: 1.1; max-width: 680px; }
.page-hero h1 em { font-style: italic; color: var(--amber); }
.page-hero p { font-size: clamp(16px, 2vw, 19px); color: rgba(250,246,242,0.62); max-width: 540px; font-weight: 300; line-height: 1.65; margin-top: 20px; }
@media (max-width: 768px) { .page-hero { padding: 90px 24px 52px; } }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 260px 1fr; gap: 72px; align-items: start; max-width: var(--max); margin: 0 auto; }
.about-sidebar { position: sticky; top: 84px; }
.about-sidebar img { width: 100%; border-radius: 2px; margin-bottom: 24px; }
.sidebar-card { background: white; border: 1px solid var(--border); padding: 24px; }
.sidebar-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.sidebar-card li { font-size: 13px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); list-style: none; display: flex; align-items: flex-start; gap: 8px; }
.sidebar-card li:last-child { border-bottom: none; }
.sidebar-card li::before { content: '→'; color: var(--amber); font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.about-body h2 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--ink); line-height: 1.2; margin: 48px 0 16px; }
.about-body h2:first-child { margin-top: 0; }
.about-body p { font-size: 16px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 18px; font-weight: 300; }
.pullquote { border-left: 3px solid var(--amber); padding: 16px 28px; margin: 36px 0; background: white; }
.pullquote p { font-family: var(--font-display); font-style: italic; font-size: clamp(17px, 2.2vw, 21px); color: var(--ink); margin: 0; line-height: 1.5; }
.pullquote cite { display: block; font-size: 11px; font-style: normal; color: var(--amber); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 10px; font-family: var(--font-body); font-weight: 600; }
.about-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; }
@media (max-width: 860px) { .about-inner { grid-template-columns: 1fr; gap: 36px; } .about-sidebar { position: static; } .about-sidebar img { max-width: 240px; } }

/* ============================================
   WRITING PAGE
   ============================================ */
.writing-page { background: var(--cream); }
.category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-top: 40px; }
.cat-item { background: var(--cream); padding: 44px 40px; display: flex; gap: 28px; align-items: flex-start; transition: background 0.2s; }
.cat-item:hover { background: white; }
.cat-item:last-child { grid-column: 1 / -1; }
.cat-num { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: rgba(218,128,68,0.14); line-height: 1; flex-shrink: 0; width: 56px; }
.cat-body .tag { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.cat-body h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.25; }
.cat-body p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.cat-body a { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.cat-body a:hover { gap: 9px; }
.substack-cta { background: var(--ink); padding: 44px 52px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-top: 2px; }
.substack-cta p { font-family: var(--font-display); font-size: 20px; color: var(--cream); font-weight: 700; margin-bottom: 6px; }
.substack-cta span { font-size: 14px; color: rgba(250,246,242,0.6); font-weight: 300; }
@media (max-width: 768px) { .category-grid { grid-template-columns: 1fr; } .cat-item:last-child { grid-column: auto; } .cat-item { padding: 28px 20px; gap: 16px; } .substack-cta { padding: 32px 24px; flex-direction: column; text-align: center; } }

/* ============================================
   COURSES / SPEAKING COMING SOON
   ============================================ */
.coming-hero { background: var(--ink); min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 24px 72px; }
.coming-inner { max-width: 620px; }
.coming-badge { font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--amber); margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.coming-badge::before, .coming-badge::after { content: ''; width: 20px; height: 1px; background: var(--amber); }
.coming-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); font-weight: 700; color: var(--cream); line-height: 1.1; margin-bottom: 24px; }
.coming-hero h1 em { font-style: italic; color: var(--amber); }
.coming-hero .lead { font-size: clamp(15px, 2vw, 18px); color: rgba(250,246,242,0.65); line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
.coming-hero .sub { font-size: 15px; color: rgba(250,246,242,0.45); line-height: 1.7; font-weight: 300; margin-bottom: 44px; }
.coming-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.coming-note { font-size: 12px; color: rgba(250,246,242,0.3); margin-top: 16px; }
.preview-section { background: var(--cream); }
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-top: 40px; }
.preview-card { background: white; padding: 36px 40px; border-top: 3px solid var(--amber); }
.preview-card .tag { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.preview-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.25; }
.preview-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.model-strip { background: var(--peach); padding: 48px var(--pad); display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; text-align: center; margin-top: 2px; }
.model-item .icon { font-size: 28px; margin-bottom: 10px; }
.model-item h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.model-item p { font-size: 13px; color: #5a4030; line-height: 1.6; }
.topic-list { display: grid; gap: 14px; margin: 28px 0; }
.topic-card { background: white; border: 1px solid var(--border); padding: 28px 32px; border-left: 4px solid var(--amber); }
.topic-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.topic-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.speaking-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start; }
.speak-sidebar { background: var(--ink); padding: 36px 32px; position: sticky; top: 84px; }
.speak-sidebar h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--cream); margin-bottom: 14px; }
.speak-sidebar p { font-size: 14px; color: rgba(250,246,242,0.65); line-height: 1.65; font-weight: 300; margin-bottom: 20px; }
.speak-sidebar .email { font-size: 13px; color: var(--amber); margin-top: 16px; display: block; }
@media (max-width: 860px) { .preview-grid { grid-template-columns: 1fr; } .model-strip { grid-template-columns: 1fr; padding: 40px 24px; } .speaking-layout { grid-template-columns: 1fr; } .speak-sidebar { position: static; } }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; max-width: var(--max); margin: 0 auto; }
.contact-options { display: grid; gap: 16px; }
.contact-opt { background: white; border: 1px solid var(--border); padding: 24px 28px; display: flex; gap: 16px; align-items: flex-start; }
.opt-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.opt-body h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.opt-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.opt-body a { color: var(--amber); font-weight: 500; font-size: 13px; }
.contact-form h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--ink); margin-bottom: 24px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 13px 15px; font-size: 15px; font-family: var(--font-body); border: 1px solid var(--border); background: white; color: var(--ink); outline: none; border-radius: 2px; transition: border-color 0.2s; -webkit-appearance: none; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--amber); }
.form-row textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; padding: 15px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: center; }
.form-note a { color: var(--amber); }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--ink); padding: 56px var(--pad) 36px; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(218,128,68,0.12); }
.footer-brand .fb1 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--cream); display: block; margin-bottom: 3px; }
.footer-brand .fb2 { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(250,246,242,0.5); line-height: 1.65; max-width: 240px; font-weight: 300; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: rgba(250,246,242,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { max-width: var(--max); margin: 28px auto 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(250,246,242,0.3); flex-wrap: wrap; gap: 12px; }
.social-links { display: flex; gap: 20px; }
.social-links a { color: rgba(250,246,242,0.4); font-size: 12px; transition: color 0.2s; }
.social-links a:hover { color: var(--amber); }
@media (max-width: 860px) { footer { padding: 48px 24px 28px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }
