/* ==========================================================================
   Tropical Inspections — Design System
   ========================================================================== */

:root {
  /* Palette — deep forest green from the logo, warm coastal cream */
  --forest-900: #0E2B22;
  --forest-800: #14382C;
  --forest-700: #1C4938;
  --forest-600: #1F4E3D;
  --forest-500: #2E6A54;
  --forest-300: #6E9A88;
  --forest-100: #CDE0D6;
  --forest-50:  #E9F1EC;

  --sand-50:    #FBF8F2;
  --sand-100:   #F5EFE4;
  --sand-200:   #E9E0CE;

  --ink-900:    #111815;
  --ink-700:    #2C3530;
  --ink-500:    #556158;
  --ink-300:    #8A9389;

  --white:      #FFFFFF;
  --accent-coral: #C7633F;

  /* Radius + shadow */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(14, 43, 34, .06), 0 1px 1px rgba(14, 43, 34, .04);
  --shadow-md: 0 10px 30px -12px rgba(14, 43, 34, .18), 0 2px 8px rgba(14, 43, 34, .06);
  --shadow-lg: 0 30px 60px -20px rgba(14, 43, 34, .25), 0 10px 24px rgba(14, 43, 34, .08);

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1200px;
  --container-wide: 1360px;
  --container-narrow: 820px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--forest-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--forest-500); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--forest-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.65rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; color: var(--ink-700); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 24px;
}
.container-wide { max-width: var(--container-wide); margin-inline: auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding: 0 24px; }

/* ==========================================================================
   TOP BAR — small announcement strip
   ========================================================================== */
.topbar {
  background: var(--forest-900);
  color: var(--sand-100);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  max-width: var(--container-wide);
  margin-inline: auto;
  gap: 16px;
}
.topbar a { color: var(--sand-100); }
.topbar a:hover { color: var(--white); }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span:before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: #E3B466;
  margin-right: 8px;
  transform: translateY(-2px);
}
.topbar-right { display: flex; gap: 20px; }
@media (max-width: 720px) {
  .topbar-left span:not(:first-child) { display: none; }
  .topbar-right a:first-child { display: none; }
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(14, 43, 34, .08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  max-width: var(--container-wide);
  margin-inline: auto;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--forest-900);
}
.brand img { width: 52px; height: 52px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: 1.15rem; letter-spacing: -0.01em; }
.brand-text small {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--forest-500);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--ink-700);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all .2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--forest-700); background: var(--forest-50); }
.nav-links a.active { color: var(--forest-800); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--accent-coral);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--forest-700);
  color: var(--white);
  box-shadow: 0 6px 16px -6px rgba(14, 43, 34, .45);
}
.btn-primary:hover { background: var(--forest-800); color: var(--white); transform: translateY(-1px); box-shadow: 0 10px 20px -6px rgba(14, 43, 34, .5); }
.btn-ghost {
  background: transparent;
  color: var(--forest-800);
  border: 1.5px solid rgba(14, 43, 34, .2);
}
.btn-ghost:hover { background: var(--forest-50); border-color: var(--forest-600); color: var(--forest-800); }
.btn-light {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
}
.btn-light:hover { background: rgba(255,255,255,.25); color: var(--white); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--forest-800);
}
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--sand-50);
    padding: 16px 24px 24px;
    gap: 4px;
    align-items: stretch;
    border-bottom: 1px solid rgba(14,43,34,.08);
  }
  .nav-links.open a { padding: 12px 16px; }
  .nav .btn-primary { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 12vw, 140px) 0 clamp(80px, 14vw, 160px);
  color: var(--white);
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(110, 154, 136, 0.35), transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 90%, rgba(14, 43, 34, 0.4), transparent 60%),
    linear-gradient(160deg, #14382C 0%, #0E2B22 55%, #1C4938 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: .6;
  pointer-events: none;
}
.hero-palm {
  position: absolute;
  right: -80px; bottom: -40px;
  width: min(50%, 620px);
  opacity: 0.08;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E3B466;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #E3B466;
  box-shadow: 0 0 10px #E3B466;
}
.hero h1 {
  color: var(--white);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: #E3B466;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 620px;
  color: rgba(255,255,255,.82);
  margin-top: 24px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
  max-width: 720px;
}
.hero-stats .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stats .stat-num em {
  font-style: italic;
  font-weight: 300;
  color: #E3B466;
}
.hero-stats .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* SMALL HERO for inner pages */
.hero-compact {
  padding: clamp(70px, 9vw, 120px) 0 clamp(50px, 7vw, 80px);
}
.hero-compact .hero-inner { display: block; }
.hero-compact h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: clamp(60px, 9vw, 110px) 0; }
.section-alt { background: var(--sand-100); }
.section-dark { background: var(--forest-900); color: var(--sand-100); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin-bottom: 56px;
}
.section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--forest-500);
}
.section-heading .eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--forest-500);
}
.section-heading h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--forest-500);
}
.section-heading p {
  font-size: 1.1rem;
  color: var(--ink-500);
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
  align-items: center;
}

/* ==========================================================================
   SERVICES GRID (home page)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(14, 43, 34, .08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 200px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-500), var(--forest-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 43, 34, .12);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--forest-50);
  color: var(--forest-700);
  border-radius: var(--radius-md);
  transition: background .3s ease, color .3s ease;
}
.service-card:hover .service-icon {
  background: var(--forest-700);
  color: var(--white);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--forest-900);
}
.service-card .arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest-700);
  letter-spacing: 0.02em;
}
.service-card:hover .arrow .arrow-icon { transform: translateX(4px); }
.arrow-icon { transition: transform .2s ease; }

/* ==========================================================================
   ABOUT / FOUNDER SPLIT
   ========================================================================== */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .founder { grid-template-columns: 1fr; gap: 40px; }
}
.founder-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--forest-600), var(--forest-800));
  box-shadow: var(--shadow-lg);
}
.founder-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(227, 180, 102, .15), transparent 50%);
}
.founder-card .badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(251, 248, 242, .95);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-800);
  font-weight: 700;
  z-index: 2;
}
.founder-card .portrait-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.founder-card .portrait-placeholder svg {
  width: 60%;
  height: auto;
  opacity: 0.8;
}
.founder-card .caption {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  color: rgba(255,255,255,.85);
  z-index: 2;
}
.founder-card .caption .name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.founder-card .caption .title {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E3B466;
  font-weight: 600;
}
.founder-content h2 { margin-bottom: 24px; }
.founder-content p { font-size: 1.05rem; color: var(--ink-700); }
.founder-content .meta {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(14,43,34,.08);
  border-radius: var(--radius-lg);
}
.meta-item .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-500);
  font-weight: 700;
  margin-bottom: 6px;
}
.meta-item .value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest-900);
}

/* ==========================================================================
   WHY / VALUE PROPS BAND
   ========================================================================== */
.why-band {
  background:
    linear-gradient(180deg, transparent, rgba(14,43,34,.03)),
    var(--sand-100);
  border-top: 1px solid rgba(14,43,34,.06);
  border-bottom: 1px solid rgba(14,43,34,.06);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--forest-500);
  font-weight: 400;
  line-height: 1;
}
.why-item h4 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--forest-900);
}
.why-item p {
  font-size: 0.95rem;
  color: var(--ink-500);
  margin: 0;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0;
  background: linear-gradient(120deg, var(--forest-800), var(--forest-600));
  color: var(--white);
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 40px 40px;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band h2 em { color: #E3B466; font-style: italic; }
.cta-band p {
  max-width: 540px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
}
.cta-band .btn-primary {
  background: #E3B466;
  color: var(--forest-900);
}
.cta-band .btn-primary:hover { background: #F0C578; color: var(--forest-900); }
.cta-band .btn-row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }

/* ==========================================================================
   PRICING LISTS (services page)
   ========================================================================== */
.pricing-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.price-card {
  background: var(--white);
  border: 1px solid rgba(14,43,34,.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-card h3 {
  margin: 0;
  font-size: 1.5rem;
}
.price-card .price-intro {
  font-size: 0.95rem;
  color: var(--ink-500);
  margin: 0;
}
.price-card .price-intro strong { color: var(--forest-800); font-weight: 700; }
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(14,43,34,.12);
  font-size: 15px;
  gap: 16px;
}
.price-list li:last-child { border-bottom: 0; }
.price-list .label {
  color: var(--ink-700);
  font-weight: 500;
}
.price-list .price {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--forest-700);
  font-size: 1.1rem;
  white-space: nowrap;
}
.price-list .price.contact {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-coral);
  font-weight: 700;
}

/* ==========================================================================
   PROSE PAGE (buyers/sellers/about)
   ========================================================================== */
.prose {
  max-width: 760px;
  margin-inline: auto;
}
.prose h2 {
  margin-top: 2.5em;
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8em; color: var(--forest-800); }
.prose p, .prose ul { font-size: 1.05rem; color: var(--ink-700); }
.prose ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 1.2em 0;
}
.prose ul li {
  padding-left: 28px;
  position: relative;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 14px; height: 2px;
  background: var(--forest-500);
}
.prose strong { color: var(--forest-900); font-weight: 700; }

/* Pull quote / callout */
.callout {
  background: var(--sand-100);
  border-left: 4px solid var(--forest-600);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}
.callout p:last-child { margin-bottom: 0; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-card {
  background: var(--forest-800);
  color: var(--sand-100);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 24px 24px;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.contact-card .sub { color: rgba(255,255,255,.7); margin-bottom: 32px; font-size: 0.95rem; }
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info .icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  color: #E3B466;
  flex-shrink: 0;
}
.contact-info .icon svg { width: 18px; height: 18px; }
.contact-info .label-row .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info .value {
  color: var(--white);
  font-size: 1rem;
}
.contact-info a { color: var(--white); }
.contact-info a:hover { color: #E3B466; }

/* Form */
.form {
  background: var(--white);
  border: 1px solid rgba(14,43,34,.08);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--forest-800);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-group label .req { color: var(--accent-coral); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid rgba(14,43,34,.12);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: var(--sand-50);
  transition: border-color .2s ease, background .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--forest-600);
  background: var(--white);
}
.form-group .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group .hint {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 2px;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 4px;
}
@media (max-width: 560px) { .checkbox-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }
.checkbox-grid label {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--sand-50);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(14,43,34,.1);
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .2s ease, background .2s ease;
}
.checkbox-grid label:hover { border-color: var(--forest-500); }
.checkbox-grid input[type="checkbox"] { accent-color: var(--forest-700); margin: 0; width: 16px; height: 16px; }

.form button[type="submit"] {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 15px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--forest-900);
  color: rgba(251, 248, 242, 0.8);
  padding: 80px 0 0;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {
  display: flex; flex-direction: column; gap: 20px;
}
.footer-brand .brand {
  color: var(--white);
}
.footer-brand .brand img {
  filter: brightness(0) invert(1);
}
.footer-brand .brand-text small { color: #E3B466; }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand p {
  color: rgba(251, 248, 242, 0.65);
  font-size: 15px;
  max-width: 320px;
  margin: 0;
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  transition: all .2s ease;
}
.footer-social a:hover {
  background: #E3B466;
  color: var(--forest-900);
  border-color: #E3B466;
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E3B466;
  font-weight: 700;
  margin: 0 0 20px;
}
.footer ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer ul a {
  color: rgba(251, 248, 242, 0.7);
  transition: color .2s ease;
}
.footer ul a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: 15px; }
.footer-contact .row { display: flex; gap: 12px; align-items: flex-start; color: rgba(251, 248, 242, 0.8); }
.footer-contact .row svg { flex-shrink: 0; margin-top: 3px; color: #E3B466; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(251, 248, 242, 0.55);
}
.footer-bottom a { color: rgba(251, 248, 242, 0.75); }
.footer-bottom a:hover { color: var(--white); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  animation: fadeUp .8s ease forwards;
}
.reveal-1 { animation-delay: .1s; }
.reveal-2 { animation-delay: .2s; }
.reveal-3 { animation-delay: .3s; }
.reveal-4 { animation-delay: .4s; }
.reveal-5 { animation-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
