/* ============================================================
   ZEN SPACE FENG SHUI — Static Site Stylesheet
   Design language: Jade & Marble (Opulent Organic Luxury)
   Palette: Deep Emerald + Soft Warm White + Warm Gold
   Typography: Cormorant Garamond (display) + Lato (body)
   ============================================================ */

:root {
  --emerald: #1A4731;
  --emerald-dark: #0D2818;
  --emerald-light: #2D6A4F;
  --gold: #B8963E;
  --gold-light: #D4AF6A;
  --warm-white: #FDFCF9;
  --warm-cream: #F5F0E8;
  --line: #E8E4DC;
  --text: #3a3a3a;
  --text-soft: #5a5a5a;
  --text-mute: #aaaaaa;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --max-width: 1200px;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 3px rgba(13, 40, 24, 0.06);
  --shadow-md: 0 4px 16px rgba(13, 40, 24, 0.08);
  --shadow-lg: 0 16px 40px rgba(13, 40, 24, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }

a { color: var(--emerald); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--emerald);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container { padding: 0 48px; }
}

/* ---------- Reusable elements ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-rule {
  display: block;
  width: 60px;
  height: 1.5px;
  background: var(--gold);
  margin: 0;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--emerald-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--emerald-dark);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: white;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: white;
}

.btn-emerald {
  background: var(--emerald);
  color: white;
  border-color: var(--emerald);
}
.btn-emerald:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 500ms ease, box-shadow 500ms ease;
  background: transparent;
}
.navbar.scrolled {
  background: var(--emerald);
  box-shadow: var(--shadow-md);
}
.navbar.solid {
  background: var(--emerald);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .nav-inner { padding: 18px 48px; }
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 40px; height: 40px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212, 175, 106, 0.3);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-logo svg { width: 26px; height: 26px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  color: white;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-tag {
  color: var(--gold-light);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  cursor: pointer;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: white;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none;
  background: var(--emerald);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 24px 24px;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  cursor: pointer;
}
.mobile-menu .btn-gold { margin-top: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(13,40,24,0.92) 0%, rgba(26,71,49,0.75) 50%, rgba(26,71,49,0.20) 100%),
    linear-gradient(135deg, var(--emerald-dark), var(--emerald) 50%, var(--emerald-light));
  z-index: -2;
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 130px;
  background: linear-gradient(to top, var(--warm-white), transparent);
}
.hero-bagua {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.07;
  pointer-events: none;
  z-index: -1;
  display: none;
}
@media (min-width: 1024px) { .hero-bagua { display: block; } }
.hero-bagua svg { width: 380px; height: 380px; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  max-width: 720px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow .section-label { color: var(--gold-light); }

.hero h1 {
  color: white;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero-hint {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  color: white;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  z-index: 2;
}
.hero-scroll span {
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ---------- Cinematic reveal ---------- */
.reveal {
  background: var(--warm-white);
  padding: 80px 0;
  text-align: center;
}
.reveal-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--emerald);
  line-height: 1.5;
  max-width: 880px;
  margin: 0 auto;
}
.reveal-text strong {
  color: var(--gold);
  font-weight: 700;
}
.reveal-text .em {
  font-style: italic;
  color: var(--emerald-light);
}
.reveal-divider {
  width: 80px;
  height: 1.5px;
  background: var(--gold);
  margin: 32px auto;
}
.reveal-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ---------- Generic section ---------- */
.section {
  padding: 96px 0;
}
.section-cream { background: var(--warm-cream); position: relative; overflow: hidden; }
.section-cream::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(26,71,49,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}
.section-emerald {
  background: var(--emerald);
  color: rgba(255,255,255,0.85);
  position: relative;
  overflow: hidden;
}
.section-emerald h2 { color: white; }
.section-emerald p { color: rgba(255,255,255,0.75); }
.section-emerald .section-label { color: var(--gold-light); }

.section-emerald::before, .section-emerald::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  background: var(--warm-white);
  z-index: 1;
}
.section-emerald::before { top: -1px; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0); }
.section-emerald::after { bottom: -1px; clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%); }
.section-emerald > .container { position: relative; z-index: 2; padding-top: 30px; padding-bottom: 30px; }

.section-head { margin-bottom: 32px; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 18px;
}

/* ---------- What is Feng Shui ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col-reverse > :first-child { order: 2; }
@media (max-width: 1023px) {
  .two-col-reverse > :first-child { order: 0; }
}

.body-text { color: var(--text); margin-bottom: 1em; line-height: 1.7; }
.body-text strong { color: var(--emerald); font-weight: 700; }
.body-text em { font-style: italic; }

.intro-image {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  margin: 0 auto;
}
.intro-image::before {
  content: "";
  position: absolute; inset: 0;
  border: 2px solid rgba(184, 150, 62, 0.3);
  transform: translate(14px, 14px);
  border-radius: 2px;
}
.intro-image img,
.intro-image .placeholder {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}
.intro-image .placeholder {
  background:
    linear-gradient(135deg, rgba(26,71,49,0.6), rgba(26,71,49,0.2)),
    linear-gradient(45deg, var(--emerald-light), var(--emerald));
  display: grid; place-items: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  text-align: center;
  padding: 32px;
}

.goals-list {
  display: flex; flex-direction: column;
  gap: 14px;
}
.goal-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color var(--transition);
}
.goal-card:hover { border-color: rgba(184, 150, 62, 0.45); }
.goal-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--warm-cream);
  color: var(--emerald);
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.goal-card h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--emerald);
  text-transform: none;
  margin: 0 0 4px;
  letter-spacing: 0;
}
.goal-card p { font-size: 0.88rem; margin: 0; color: var(--text-soft); }

.subhead {
  color: var(--emerald);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 24px 0 14px;
}

/* ---------- Who Uses Feng Shui ---------- */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .who-grid { grid-template-columns: 1fr 1fr; } }
.who-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 28px;
  transition: all var(--transition);
}
.who-card:hover {
  border-color: rgba(184, 150, 62, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.who-card h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  display: flex; align-items: center; gap: 10px;
}
.who-card h3::before {
  content: "✦";
  color: var(--gold);
  font-size: 1.1rem;
}
.who-card p { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin: 0; }
.who-card strong { color: var(--emerald); font-weight: 700; }

/* ---------- Meet Mr. Yau ---------- */
.yau-image {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}
.yau-image::before {
  content: "";
  position: absolute; inset: 0;
  border: 2px solid rgba(184, 150, 62, 0.3);
  transform: translate(16px, 16px);
  border-radius: 2px;
}
.yau-image .placeholder, .yau-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center top;
}
.yau-image .placeholder {
  background:
    linear-gradient(135deg, var(--emerald-dark), var(--emerald) 50%, var(--emerald-light));
  display: grid; place-items: center;
  color: var(--gold-light);
}
.yau-image .placeholder::after {
  content: "Mr. Yau";
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 600;
}
.years-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--emerald);
  color: white;
  border-radius: 2px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: left;
}
.years-badge strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.years-badge span {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}
.specialty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .specialty-grid { grid-template-columns: 1fr 1fr 1fr; } }
.specialty-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--warm-cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text);
}
.specialty-pill::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
}

/* ---------- How Can Mr. Yau Help (dark emerald) ---------- */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .problems-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .problems-grid { grid-template-columns: repeat(4, 1fr); } }
.problem-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212, 175, 106, 0.25);
  border-radius: 2px;
  padding: 28px 24px;
  transition: all var(--transition);
}
.problem-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-3px);
}
.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.problem-card h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 10px;
}
.problem-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}
.section-emerald .section-head h2 em {
  color: var(--gold-light);
  font-style: italic;
}
.section-emerald .section-head p {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  max-width: 520px;
}

/* ---------- What to Expect ---------- */
.expect-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 1024px) { .expect-layout { grid-template-columns: 5fr 7fr; } }

.everything-included {
  background: var(--emerald);
  color: white;
  padding: 26px;
  border-radius: 2px;
  margin-top: 20px;
}
.everything-included strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.everything-included p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}
.everything-included p strong {
  display: inline;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: white;
  font-weight: 700;
}

.consult-quote-card {
  margin-top: 20px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  height: 200px;
  background:
    linear-gradient(180deg, transparent 30%, rgba(13,40,24,0.7) 100%),
    linear-gradient(135deg, var(--emerald-dark), var(--emerald-light));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.consult-quote-card span {
  color: white;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
}

.steps-list {
  display: flex; flex-direction: column;
  gap: 16px;
}
.step-card {
  display: flex; gap: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 22px 24px;
  transition: all var(--transition);
}
.step-card:hover {
  border-color: rgba(184, 150, 62, 0.4);
  box-shadow: var(--shadow-sm);
}
.step-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(184, 150, 62, 0.35);
  line-height: 1;
  width: 50px;
}
.step-body h3 {
  font-size: 1.2rem;
  margin: 0 0 6px;
}
.step-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.cta-strip {
  margin-top: 16px;
  padding: 24px;
  background: var(--warm-cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@media (min-width: 600px) { .cta-strip { flex-direction: row; align-items: center; justify-content: space-between; } }
.cta-strip-text strong {
  display: block;
  color: var(--emerald);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.cta-strip-text p { margin: 0; font-size: 0.88rem; color: var(--text-soft); }

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list {
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0 28px;
}
@media (min-width: 768px) { .faq-list { padding: 0 40px; } }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--emerald);
  line-height: 1.4;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 1.2rem;
  font-weight: 400;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.faq-item summary:hover .faq-toggle {
  background: var(--gold);
  color: white;
}
.faq-item[open] summary { color: var(--gold); }
.faq-item[open] .faq-toggle {
  background: var(--emerald);
  border-color: var(--emerald);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 0 22px;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-soft);
  padding-right: 40px;
}

/* ---------- Contact (split panel) ---------- */
.contact-section {
  background: var(--warm-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; } }

.contact-left {
  background: var(--emerald);
  padding: 64px 32px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .contact-left { padding: 80px 56px; } }
.contact-left::before, .contact-left::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,175,106,0.15);
  pointer-events: none;
}
.contact-left::before { width: 256px; height: 256px; bottom: -80px; right: -80px; }
.contact-left::after { width: 160px; height: 160px; bottom: -32px; right: -32px; border-color: rgba(212,175,106,0.10); }
.contact-left h2 { color: white; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; }
.contact-left .lead {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 30px 0 36px;
  max-width: 360px;
}
.contact-list {
  display: flex; flex-direction: column;
  gap: 18px;
  list-style: none;
  padding: 0; margin: 0;
}
.contact-list li {
  display: flex; align-items: flex-start; gap: 14px;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}
.contact-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(212,175,106,0.15);
  border: 1px solid rgba(212,175,106,0.3);
  color: var(--gold-light);
  display: grid; place-items: center;
  margin-top: 2px;
}
.contact-icon svg { width: 14px; height: 14px; }

.contact-right {
  background: white;
  padding: 64px 32px;
}
@media (min-width: 1024px) { .contact-right { padding: 80px 56px; } }
.contact-right h3 {
  font-size: 1.7rem;
  margin: 0 0 8px;
}
.contact-intro {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin: 0 0 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) { .form-grid.two-col-fields { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.92rem;
  color: var(--emerald);
  background: white;
  border: 1px solid #d8d4cc;
  border-radius: 2px;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font-body);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(26,71,49,0.10);
}
.field textarea { min-height: 120px; resize: vertical; }
.privacy-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-mute);
  margin: 12px 0 0;
}
.honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.form-success {
  display: none;
  text-align: center;
  padding: 56px 24px;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(26,71,49,0.10);
  color: var(--emerald);
  display: grid; place-items: center;
  margin: 0 auto 22px;
  font-size: 1.6rem;
}
.form-success h3 { font-size: 1.7rem; margin-bottom: 10px; }
.form-success p { color: var(--text-soft); max-width: 320px; margin: 0 auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--emerald-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-brand .brand-logo {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,175,106,0.3);
}
.footer-brand p {
  margin: 14px 0 0;
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-col li.gold { color: var(--gold-light); font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 22px;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
  font-size: 0.78rem;
}
@media (min-width: 600px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom .tagline { color: rgba(212, 175, 106, 0.6); }

/* ---------- Page heros (blog) ---------- */
.page-hero {
  padding: 140px 0 60px;
  background: var(--emerald);
  color: white;
  text-align: center;
}
.page-hero h1 { color: white; font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 10px; }
.page-hero .crumb {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }

/* ---------- Blog list ---------- */
.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 150, 62, 0.4);
  box-shadow: var(--shadow-md);
}
.post-cover {
  aspect-ratio: 16/10;
  background:
    linear-gradient(135deg, rgba(26,71,49,0.5), rgba(26,71,49,0.15)),
    linear-gradient(45deg, var(--emerald-light), var(--gold));
  background-size: cover;
  background-position: center;
  display: grid; place-items: center;
  color: white;
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  padding: 24px;
  font-size: 1.1rem;
}
.post-body {
  padding: 24px;
  display: flex; flex-direction: column; flex: 1;
}
.post-meta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.post-card h3 {
  font-size: 1.4rem;
  margin: 0 0 12px;
  line-height: 1.25;
}
.post-card p {
  font-size: 0.92rem;
  margin: 0 0 20px;
  flex: 1;
  line-height: 1.6;
  color: var(--text-soft);
}
.read-more {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
}
.post-card:hover .read-more { color: var(--gold); }

/* ---------- Article (single post) ---------- */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}
.article .crumb {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.article h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 14px;
}
.article .article-meta {
  color: var(--text-mute);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
.article-cover {
  aspect-ratio: 16/9;
  border-radius: 2px;
  margin-bottom: 40px;
  background:
    linear-gradient(135deg, rgba(26,71,49,0.4), rgba(26,71,49,0.1)),
    linear-gradient(45deg, var(--emerald-light), var(--gold));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.article p, .article li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.article h2 {
  font-size: 1.7rem;
  margin: 1.6em 0 0.6em;
  color: var(--emerald);
}
.article-cta {
  margin-top: 48px;
  padding: 28px;
  background: var(--warm-cream);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}
.article-cta p { margin: 0 0 14px; }

/* ---------- Blog search ---------- */
.blog-search {
  margin: 0 auto 40px;
}
.blog-search-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.blog-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-mute);
  pointer-events: none;
}
.blog-search input[type="search"] {
  width: 100%;
  padding: 14px 18px 14px 48px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--emerald);
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.blog-search input[type="search"]::placeholder {
  color: var(--text-mute);
  font-weight: 500;
}
.blog-search input[type="search"]:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(26,71,49,0.10);
}
.blog-search input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round'><path d='M6 6l12 12M6 18L18 6'/></svg>");
  background-size: contain;
  cursor: pointer;
  opacity: 0.6;
}
.blog-search input[type="search"]::-webkit-search-cancel-button:hover { opacity: 1; }
.blog-search-empty {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 32px auto 0;
  font-style: italic;
}
