/*
Theme Name: Stour Spaces
Theme URI: https://stourspaces.com
Author: Stour Spaces
Description: Custom theme for Stour Spaces self-storage and workshop bay rental, Stour Provost, Dorset.
Version: 1.0.0
License: Proprietary
Text Domain: stourspaces
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Stone */
  --stone-50:  #FAF8F3;
  --stone-100: #F5F0E8;
  --stone-200: #EAE0CC;
  --stone-300: #D9CEAF;
  --stone-400: #C2B48E;

  /* Forest */
  --forest-50:  #EEF4F0;
  --forest-100: #D4E4D9;
  --forest-200: #A8C9B4;
  --forest-300: #7AA88A;
  --forest-500: #2E6648;
  --forest-600: #245437;
  --forest-700: #1E3A2E;
  --forest-800: #152B22;
  --forest-900: #0A1410;

  /* Terra */
  --terra-100: #F7DDD0;
  --terra-200: #EFBBA1;
  --terra-300: #E49970;
  --terra-400: #D87848;
  --terra-500: #C4622D;
  --terra-600: #A34E22;
  --terra-700: #7E3B18;

  /* Ink */
  --ink-900: #1A1A14;
  --ink-700: #3D3D33;
  --ink-500: #6B6B5C;
  --ink-300: #9E9E8F;
  --ink-100: #C5C5B8;

  /* Semantic */
  --bg:        var(--stone-50);
  --text:      var(--ink-900);
  --heading:   var(--forest-700);
  --accent:    var(--terra-500);
  --border:    var(--stone-200);

  /* Shadows */
  --shadow-soft:     0 2px 16px rgba(30,58,46,.08);
  --shadow-card:     0 4px 24px rgba(30,58,46,.10);
  --shadow-elevated: 0 8px 40px rgba(30,58,46,.14);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--heading);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p { line-height: 1.7; }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}

.section-subheading {
  font-size: 1.125rem;
  color: var(--ink-500);
  line-height: 1.7;
  max-width: 640px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: 5rem; }
.section-sm { padding-block: 3rem; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 2rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: .375rem;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--terra-500);
  color: #fff;
  border-color: var(--terra-500);
}
.btn-primary:hover {
  background: var(--terra-600);
  border-color: var(--terra-600);
  color: #fff;
}

.btn-secondary {
  background: var(--forest-700);
  color: #fff;
  border-color: var(--forest-700);
}
.btn-secondary:hover {
  background: var(--forest-800);
  border-color: var(--forest-800);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--forest-700);
  border-color: var(--stone-300);
}
.btn-outline:hover {
  background: var(--stone-100);
  color: var(--forest-700);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
}

.btn-sm {
  padding: .5rem 1.25rem;
  font-size: .875rem;
}

.btn svg {
  vertical-align: middle;
  flex-shrink: 0;
}

.btn svg {
  vertical-align: middle;
  flex-shrink: 0;
}

/* ============================================================
   CARD
   ============================================================ */
.card {
  background: #fff;
  border-radius: .75rem;
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.card-body { padding: 1.75rem; }

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .625rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-terra {
  background: var(--terra-100);
  color: var(--terra-700);
}
.badge-forest {
  background: var(--forest-100);
  color: var(--forest-700);
}
.badge-stone {
  background: var(--stone-200);
  color: var(--forest-700);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--forest-800);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
  transition: box-shadow .3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  padding-inline: 1.5rem;
  max-width: 1200px;
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
}

.nav-logo .logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--terra-500);
  color: #fff;
  border-radius: .375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.nav-links {
  display: none;
  gap: .25rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}

.nav-links a {
  padding: .5rem .875rem;
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: .375rem;
  transition: color .2s, background .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}

.nav-cta {
  display: none;
}
@media (min-width: 768px) {
  .nav-cta { display: flex; align-items: center; gap: .75rem; }
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest-700);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  flex-direction: column;
  padding: 1.5rem;
}
.mobile-menu.open { display: flex; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink-700);
  padding: .5rem;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.mobile-menu nav a {
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink-700);
  border-bottom: 1px solid var(--stone-200);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 4.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest-800) 0%, var(--forest-700) 60%, var(--forest-600) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .15;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  padding: .375rem 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.hero h1 em {
  font-style: italic;
  color: var(--terra-300);
}

.hero-lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.hero-stat-label {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}

/* Page hero (non-home) */
.page-hero {
  background: linear-gradient(135deg, var(--forest-800) 0%, var(--forest-700) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.125rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--stone-200);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-soft);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--forest-700);
}

.trust-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--terra-500);
}

/* ============================================================
   BAY CARDS (overview)
   ============================================================ */
.bay-card {
  background: #fff;
  border-radius: .75rem;
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}

.bay-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.bay-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bay-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--forest-700), var(--forest-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 3rem;
}

.bay-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bay-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: .75rem;
}

.bay-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-700);
}

.bay-card-size {
  font-size: .875rem;
  color: var(--ink-500);
  margin-bottom: 1rem;
}

.bay-card-price {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--stone-200);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.bay-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-700);
}

.bay-price-period {
  font-size: .875rem;
  color: var(--ink-300);
}

/* ============================================================
   FEATURE GRID
   ============================================================ */
.feature-card {
  background: #fff;
  border-radius: .75rem;
  border: 1px solid var(--stone-200);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--forest-100);
  border-radius: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--forest-700);
}

.feature-icon svg { width: 1.5rem; height: 1.5rem; }

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--forest-700);
  margin-bottom: .5rem;
}

.feature-desc {
  font-size: .9375rem;
  color: var(--ink-500);
  line-height: 1.6;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--forest-800) 0%, var(--forest-700) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,.75);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section {
  background: var(--stone-100);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .story-grid { grid-template-columns: 1fr 1fr; }
}

.story-img {
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 400px;
  background: linear-gradient(135deg, var(--forest-700), var(--forest-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 4rem;
}

.story-label {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terra-500);
  margin-bottom: .75rem;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-card {
  background: #fff;
  border-radius: .75rem;
  border: 2px solid var(--stone-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--terra-500);
  box-shadow: var(--shadow-card);
}

.pricing-card-header {
  padding: 1.75rem;
  border-bottom: 1px solid var(--stone-200);
}

.pricing-card.featured .pricing-card-header {
  background: var(--forest-700);
}

.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-dims {
  color: #fff;
}

.pricing-card.featured .pricing-price {
  color: var(--terra-300);
}

.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-700);
  margin-bottom: .25rem;
}

.pricing-dims {
  font-size: .875rem;
  color: var(--ink-500);
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest-700);
}

.pricing-period {
  font-size: .875rem;
  color: var(--ink-300);
  font-family: 'Inter', sans-serif;
}

.pricing-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  flex: 1;
  margin-bottom: 1.75rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--ink-700);
}

.pricing-feature-icon {
  color: var(--terra-500);
  flex-shrink: 0;
  margin-top: .15rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: #fff;
  border-radius: .625rem;
  border: 1px solid var(--stone-200);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-700);
  transition: background .15s;
}

.faq-question:hover { background: var(--stone-50); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--terra-500);
  transition: transform .25s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: .9375rem;
  color: var(--ink-500);
  line-height: 1.7;
  border-top: 1px solid var(--stone-200);
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 3fr 2fr; }
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--stone-200);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--forest-100);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-700);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-300);
  margin-bottom: .25rem;
}

.contact-detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest-700);
}

/* ============================================================
   FORM
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--forest-700);
  margin-bottom: .4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--stone-300);
  border-radius: .4375rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--forest-500);
  box-shadow: 0 0 0 3px rgba(30,58,46,.1);
}

.form-textarea { resize: vertical; min-height: 130px; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

.form-error {
  color: #c0392b;
  font-size: .8125rem;
  margin-top: .3rem;
}

.form-success {
  background: var(--forest-100);
  border: 1px solid var(--forest-200);
  color: var(--forest-700);
  padding: 1.25rem;
  border-radius: .5rem;
  text-align: center;
  font-weight: 500;
}

.form-error-msg {
  background: #fdf2f2;
  border: 1px solid #f5c6c6;
  color: #c0392b;
  padding: 1.25rem;
  border-radius: .5rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-card {
  background: #fff;
  border-radius: .75rem;
  border: 1px solid var(--stone-200);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-photo-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--forest-700), var(--forest-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 4rem;
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-700);
  margin-bottom: .25rem;
}

.team-role {
  font-size: .875rem;
  font-weight: 500;
  color: var(--terra-500);
  margin-bottom: .75rem;
}

.team-bio {
  font-size: .9375rem;
  color: var(--ink-500);
  line-height: 1.65;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--ink-700);
}

.check-icon-yes { color: var(--forest-500); flex-shrink: 0; }
.check-icon-no  { color: #c0392b; flex-shrink: 0; }

/* ============================================================
   MAP
   ============================================================ */
.map-wrapper {
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--stone-200);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  border: none;
}

/* ============================================================
   TERMS / PRIVACY PROSE
   ============================================================ */
.prose-stour {
  max-width: 800px;
  margin-inline: auto;
}

.prose-stour h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-700);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}

.prose-stour h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--forest-700);
  margin-top: 1.75rem;
  margin-bottom: .5rem;
}

.prose-stour p {
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.prose-stour ul, .prose-stour ol {
  margin: .75rem 0 1rem 1.5rem;
  color: var(--ink-700);
}

.prose-stour li {
  margin-bottom: .375rem;
  line-height: 1.65;
}

.prose-stour table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .9375rem;
}

.prose-stour th {
  background: var(--stone-100);
  font-weight: 600;
  color: var(--forest-700);
  padding: .75rem 1rem;
  text-align: left;
  border: 1px solid var(--stone-200);
}

.prose-stour td {
  padding: .75rem 1rem;
  border: 1px solid var(--stone-200);
  color: var(--ink-700);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--forest-800);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand .nav-logo { color: #fff; }
.footer-brand .nav-logo .logo-icon { background: var(--terra-500); }

.footer-tagline {
  font-size: .9375rem;
  color: rgba(255,255,255,.55);
  margin-top: 1rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-top: .625rem;
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-links a {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   INCLUDED FEATURES GRID
   ============================================================ */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .included-grid { grid-template-columns: repeat(3, 1fr); }
}

.included-item {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: .625rem;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.included-item-icon {
  color: var(--terra-500);
  flex-shrink: 0;
  margin-top: .1rem;
}

.included-item-text {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--forest-700);
}

/* ============================================================
   TERMS CALLOUT
   ============================================================ */
.terms-callout {
  background: var(--stone-100);
  border: 1px solid var(--stone-200);
  border-radius: .75rem;
  padding: 2rem;
}

.terms-callout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .terms-callout-grid { grid-template-columns: repeat(3, 1fr); }
}

.terms-item {
  text-align: center;
}
.terms-item-icon { font-size: 1.75rem; margin-bottom: .5rem; }
.terms-item-title {
  font-weight: 700;
  color: var(--forest-700);
  font-size: 1rem;
  margin-bottom: .25rem;
}
.terms-item-desc { font-size: .875rem; color: var(--ink-500); }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid var(--stone-200);
  margin-block: 3rem;
}

/* ============================================================
   NOTICE BOX
   ============================================================ */
.notice-box {
  background: var(--forest-100);
  border-left: 4px solid var(--forest-500);
  border-radius: 0 .5rem .5rem 0;
  padding: 1rem 1.25rem;
  font-size: .9375rem;
  color: var(--forest-700);
  line-height: 1.65;
}

/* ============================================================
   404
   ============================================================ */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}


/* ---- Nav visibility overrides ---- */
.site-header { background: #152B22 !important; }
.nav-logo { color: #fff !important; }
.nav-links a { color: rgba(255,255,255,.85) !important; }
.nav-links a:hover,
.nav-links a.active { color: #fff !important; background: rgba(255,255,255,.13) !important; }
