/* ===================================================================
   Heart & Home Companions — stylesheet
   =================================================================== */

:root {
  --green-900: #3a4530;
  --green-700: #4c5a40;
  --green-600: #5c6f4c;
  --green-500: #6f8360;
  --green-400: #8ba178;
  --green-100: #e7ecdf;

  --tan-700: #9c7644;
  --tan-600: #b58a52;
  --tan-500: #c9a06a;
  --tan-200: #ecd9b8;
  --tan-100: #f4e8d3;

  --cream: #faf6ee;
  --cream-dark: #f2ead9;
  --white: #ffffff;
  --ink: #33362c;
  --ink-soft: #5b5f4f;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 34px;

  --shadow-sm: 0 2px 10px rgba(58, 69, 48, 0.08);
  --shadow-md: 0 10px 30px rgba(58, 69, 48, 0.12);
  --shadow-lg: 0 24px 60px -12px rgba(58, 69, 48, 0.22);
  --shadow-float: 0 16px 40px -14px rgba(58, 69, 48, 0.3);

  --grad-brand: linear-gradient(135deg, var(--green-500), var(--tan-500));
  --grad-brand-soft: linear-gradient(135deg, rgba(111, 131, 96, 0.14), rgba(201, 160, 106, 0.14));
  --grad-dark: linear-gradient(150deg, var(--green-700), var(--green-900));

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --header-h: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  position: relative;
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle film-grain texture for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--green-700);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section { padding: 108px 0; position: relative; }
@media (max-width: 720px) {
  .section { padding: 72px 0; }
}

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tan-700);
  margin: 0 0 0.85em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  display: inline-block;
}

.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-sub { font-size: 1.05rem; }

.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--green-700);
  border-left: 3px solid var(--tan-500);
  padding-left: 18px;
  margin-top: 1.4em;
}

a { color: var(--green-600); }

.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-700);
  color: #fff;
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s cubic-bezier(.22,1,.36,1), box-shadow 0.25s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-icon {
  display: inline-flex;
  width: 16px; height: 16px;
  transition: transform 0.25s cubic-bezier(.22,1,.36,1);
}
.btn:hover .btn-icon { transform: translateX(4px); }

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-float);
}
.btn-primary:hover { box-shadow: 0 20px 46px -12px rgba(58,69,48,0.4); }
.btn-ghost {
  background: var(--white);
  border-color: rgba(111,131,96,0.25);
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--green-100); border-color: var(--green-500); }
.btn-small { padding: 11px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 100;
  pointer-events: none;
  transition: height 0.3s ease;
}
.site-header.scrolled { height: 78px; }

.nav-shell {
  pointer-events: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(58, 69, 48, 0.06);
  position: relative;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
  border-color: rgba(58,69,48,0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark { width: 38px; height: 38px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-serif); color: var(--green-700); font-size: 1.1rem; }
.brand-text em { font-family: var(--font-serif); color: var(--tan-600); font-style: italic; font-size: 0.82rem; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.nav-link {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.93rem;
  position: relative;
  padding: 9px 16px;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-link:hover { background: rgba(111,131,96,0.1); }
.nav-link.active-link { color: var(--green-900); background: var(--green-100); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
  color: var(--green-700);
  font-weight: 600;
  font-size: 0.9rem;
}
.header-phone .icon { width: 17px; height: 17px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green-700);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .header-phone { display: none; }
}

@media (max-width: 820px) {
  .site-header { padding: 0 16px; }
  .nav-shell { border-radius: var(--radius-lg); }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(58,69,48,0.06);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease;
  }
  .main-nav.open { max-height: 420px; opacity: 1; }
  .main-nav ul {
    flex-direction: column;
    padding: 14px;
    gap: 2px;
  }
  .nav-link { display: block; padding: 13px 16px; }
  .header-actions .btn-small { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 110px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  transition: transform 0.4s ease-out;
}
.blob-1 {
  width: 520px; height: 520px;
  background: var(--green-100);
  top: -140px; right: -160px;
}
.blob-2 {
  width: 420px; height: 420px;
  background: var(--tan-100);
  bottom: -180px; left: -140px;
}
.hero-dots {
  position: absolute;
  top: 10%; right: 4%;
  width: 220px; height: 220px;
  background-image: radial-gradient(rgba(76,90,64,0.18) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.6;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-lead { font-size: 1.14rem; max-width: 52ch; }

.check-list { list-style: none; margin: 0 0 2.2em; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink); }
.check-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-brand); color: #fff;
  font-size: 0.72rem; flex-shrink: 0;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; position: relative; padding-bottom: 40px; }
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  z-index: 1;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; }

.hero-info-card {
  position: absolute;
  left: -6%;
  bottom: 6px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(111,131,96,0.12);
  padding: 20px 22px;
  max-width: 270px;
}
.hero-info-card .info-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  flex-shrink: 0;
}
.hero-info-card .info-icon .icon { width: 19px; height: 19px; }
.hero-info-card strong {
  display: block;
  font-family: var(--font-serif);
  color: var(--green-700);
  font-size: 0.98rem;
  margin-bottom: 7px;
}
.hero-info-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 5px; }
.hero-info-card li { font-size: 0.82rem; color: var(--ink-soft); display: flex; align-items: center; gap: 7px; }
.hero-info-card li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--tan-500);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-info-card { left: 4%; }
}
@media (max-width: 460px) {
  .hero-visual { padding-bottom: 0; }
  .hero-info-card { position: static; margin: -32px 14px 0; max-width: none; }
}

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-float);
  border-radius: 999px;
  padding: 11px 18px 11px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-900);
  z-index: 2;
  animation: float-chip 5s ease-in-out infinite;
}
.float-chip .chip-icon {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  flex-shrink: 0;
}
.float-chip .chip-icon .icon { width: 15px; height: 15px; }

@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.scroll-cue {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: var(--green-500);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .check-list { grid-template-columns: 1fr; }
  .float-chip { font-size: 0.74rem; padding: 9px 14px 9px 9px; }
}
@media (max-width: 460px) {
  .float-chip { position: static; margin: 10px auto 0; animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .float-chip, .scroll-cue { animation: none; }
  .btn:hover, .service-card:hover, .why-grid li:hover { transform: none; }
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Intro / stats bar ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(111,131,96,0.1);
  position: relative;
  overflow: hidden;
}
.stat-bar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-brand);
}
.stat-card {
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(111,131,96,0.12);
}
.stat-card:last-child { border-right: none; }
.stat-card-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  margin-bottom: 4px;
}
.stat-card-icon .icon { width: 20px; height: 20px; }
.stat-number-row { display: flex; align-items: baseline; gap: 2px; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--green-600);
  font-weight: 700;
}
.stat-suffix { font-family: var(--font-serif); font-size: 2.5rem; color: var(--tan-600); font-weight: 700; }
.stat-label { display: block; color: var(--ink-soft); font-size: 0.9rem; }

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .stat-bar { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(111,131,96,0.12); }
  .stat-card:last-child { border-bottom: none; }
}

/* ---------- Services (bento grid) ---------- */
.services { background: var(--cream-dark); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 22px;
}
.service-card {
  grid-column: span 2;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(111,131,96,0.1);
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(111,131,96,0.3); }

.service-card-feature { grid-column: span 4; }
.service-card-tall { grid-row: span 2; }
.service-card-wide { grid-column: span 3; }

.service-card-feature {
  background: var(--grad-dark);
  color: #fff;
  justify-content: center;
}
.service-card-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(to left, #000, transparent 60%);
  mask-image: linear-gradient(to left, #000, transparent 60%);
}
.service-card-feature h3, .service-card-feature p { color: #fff; position: relative; z-index: 1; }
.service-card-feature p { color: rgba(255,255,255,0.82); }
.service-card-feature .service-icon { background: rgba(255,255,255,0.15); color: #fff; position: relative; z-index: 1; }

.service-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: var(--grad-brand-soft);
  color: var(--green-700);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-icon .icon { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 0.4em; }
.service-card p:last-of-type { margin-bottom: 0; }

.service-details { margin-top: auto; padding-top: 16px; }
.service-details summary {
  cursor: pointer;
  color: var(--tan-700);
  font-weight: 600;
  font-size: 0.9rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-details summary::-webkit-details-marker { display: none; }
.service-details summary::after {
  content: "+";
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.service-details[open] summary::after { transform: rotate(45deg); }
.service-details ul {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.service-details li {
  padding-left: 20px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.service-details li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tan-500);
}

@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .service-card, .service-card-feature, .service-card-wide { grid-column: span 2; }
  .service-card-tall { grid-row: auto; }
}
@media (max-width: 620px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-feature, .service-card-wide { grid-column: span 1; }
}

/* ---------- Founder ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.founder-portrait { position: relative; display: flex; justify-content: center; }
.portrait-frame {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius-xl);
  background: var(--grad-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  z-index: 1;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--radius-xl) - 12px);
  border: 1.5px dashed rgba(111,131,96,0.35);
}
.portrait-mark { width: 40%; opacity: 0.9; position: relative; z-index: 1; }

.founder-portrait .float-chip { position: absolute; }
.founder-portrait .chip-1 { top: 4%; left: -14%; animation-delay: 0.6s; }
.founder-portrait .chip-2 { bottom: 2%; right: -16%; animation-delay: 3s; }

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; text-align: center; }
  .founder-grid p { text-align: left; }
  .founder-portrait { margin-bottom: 28px; }
}
@media (max-width: 460px) {
  .founder-portrait .float-chip { position: static; margin: 10px auto 0; animation: none; }
}

/* ---------- Why us (bento grid) ---------- */
.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin-inline: auto;
}
.why-grid li {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(111,131,96,0.1);
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-grid li:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201,160,106,0.4); }
.why-grid li:first-child { grid-column: span 2; background: var(--grad-brand-soft); }
.why-grid li:last-child:nth-child(3n+1) { grid-column: 1 / -1; }

.heart-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  flex-shrink: 0;
}
.heart-icon .icon { width: 17px; height: 17px; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-grid li:first-child { grid-column: span 2; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-grid li:first-child { grid-column: span 1; }
}

/* ---------- Promise ---------- */
.promise {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(58,69,48,0.93), rgba(58,69,48,0.9)),
    url("../images/photos/promise-bg.jpg") center 25% / cover no-repeat;
}
.promise::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,106,0.18), transparent 65%);
  top: -280px; right: -180px;
}
.promise-quote-mark {
  width: 46px; height: 46px;
  color: var(--tan-500);
  opacity: 0.85;
  margin: 0 auto 20px;
}
.promise-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1;
}
.promise-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: #fff;
  line-height: 1.5;
}
.promise-quote cite {
  display: block;
  margin-top: 20px;
  color: var(--tan-200);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.contact-info li {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid rgba(111,131,96,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
}
.contact-info .contact-info-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-brand-soft);
  color: var(--tan-700);
  flex-shrink: 0;
}
.contact-info .contact-info-icon .icon { width: 17px; height: 17px; }
.contact-info a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-info a:hover { color: var(--green-600); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(111,131,96,0.1);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--grad-brand);
}
.form-row { margin-bottom: 18px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--green-700);
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid #ded6c2;
  background: var(--cream);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(111,131,96,0.15);
}
.form-row textarea { resize: vertical; }
.form-note { margin: 14px 0 0; font-size: 0.9rem; min-height: 1.4em; }
.form-note.success { color: var(--green-600); font-weight: 600; }
.form-note.error { color: #b3452f; font-weight: 600; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .form-row-split { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #dfe4d5; padding: 56px 0 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand strong { font-family: var(--font-serif); font-size: 1.05rem; color: #fff; }
.footer-brand p { margin: 2px 0 0; font-size: 0.85rem; font-style: italic; color: var(--tan-200); }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { color: #dfe4d5; text-decoration: none; font-size: 0.92rem; }
.footer-nav a:hover { color: #fff; }
.footer-badges {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tan-200);
  margin: 0;
}
.footer-badges .icon { width: 15px; height: 15px; }
.footer-bottom { padding: 20px 0 28px; }
.footer-bottom p { margin: 0; font-size: 0.82rem; color: rgba(223,228,213,0.7); text-align: center; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-float);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 90;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }
