/* ============================================
   HERON LIVING — Brand Design System
   ============================================ */

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

:root {
  /* Brand Colors */
  --color-primary: #00D68F;
  --color-secondary: #00B4D8;
  --color-accent: #0077B6;
  --color-cta-warm: #FF8C61;
  --color-star: #F4C430;
  --color-success: #A8D8A8;

  /* Backgrounds */
  --color-bg-white: #F7F9F8;
  --color-bg-mint: #EEF6F2;
  --color-bg-sky: #E8F4F8;
  --color-bg-linen: #FDF8F2;

  /* Text */
  --color-text-heading: #1A2E3B;
  --color-text-body: #4A6572;
  --color-text-caption: #8AA8B2;

  /* Typography */
  --font-heading: 'Lora', serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-padding: clamp(3rem, 8vw, 6rem);
  --container-max: 1200px;
}

/* ── RESET & BASE ─────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--color-text-body);
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-secondary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-accent); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  font-weight: 400;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 500; }

/* ── UTILITIES ────────────────────────────── */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.section {
  padding: var(--section-padding) 0;
}

.section--mint { background: var(--color-bg-mint); }
.section--sky { background: var(--color-bg-sky); }
.section--linen { background: var(--color-bg-linen); }
.section--accent { background: var(--color-accent); color: #fff; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--color-text-body);
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  margin: 1.5rem auto;
}

.text-center { text-align: center; }

/* ── GRID ─────────────────────────────────── */

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 600px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── BUTTONS ──────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: #00b87a;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.btn-warm {
  background: var(--color-cta-warm);
  color: #fff;
}
.btn-warm:hover {
  background: #e87a52;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ── HEADER / NAV ─────────────────────────── */

.site-header {
  background: var(--color-accent);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-cta {
  margin-left: 0.5rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu open */
.nav-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  background: var(--color-accent);
  padding: 1rem clamp(1rem, 4vw, 3rem) 1.5rem;
}

.nav-open .mobile-nav {
  display: block;
}

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: #fff;
}

.mobile-nav .btn {
  margin-top: 1rem;
  width: 100%;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ── HERO ─────────────────────────────────── */

.hero {
  background: linear-gradient(135deg, var(--color-accent) 0%, #005f8f 50%, #00997a 100%);
  color: #fff;
  padding: clamp(4rem, 10vw, 8rem) 0;
  text-align: center;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page hero (smaller, for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--color-accent) 0%, #005f8f 100%);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto;
  font-weight: 300;
}

.page-hero .eyebrow {
  color: var(--color-primary);
}

/* ── CARDS ────────────────────────────────── */

.card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-mint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── TRUST SIGNALS ────────────────────────── */

.trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item h4 {
  margin-bottom: 0.4rem;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--color-text-caption);
}

/* ── TESTIMONIALS ─────────────────────────── */

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.testimonial-stars {
  color: var(--color-star);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--color-text-body);
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-weight: 500;
  color: var(--color-text-heading);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-text-caption);
}

/* ── CTA BAND ─────────────────────────────── */

.cta-band {
  text-align: center;
  padding: var(--section-padding) 0;
}

.cta-band h2 {
  margin-bottom: 1.5rem;
}

.cta-band h2 em {
  color: var(--color-primary);
  font-style: italic;
}

.cta-band-sub {
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ── PRICING CARDS ────────────────────────── */

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.pricing-card--featured {
  border-color: var(--color-primary);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 1.25rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-text-heading);
  margin-bottom: 0.5rem;
}

.pricing-rate {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.pricing-rate span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-caption);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--color-text-caption);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.pricing-features {
  text-align: left;
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 600;
  flex-shrink: 0;
}

.pricing-features li.excluded {
  color: var(--color-text-caption);
  text-decoration: line-through;
  opacity: 0.6;
}

.pricing-features li.excluded::before {
  content: '—';
  color: var(--color-text-caption);
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--color-text-caption);
  margin-top: 2rem;
}

/* ── SERVICE CARDS (services page) ────────── */

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  padding: 0.3rem 0;
  font-size: 0.92rem;
  padding-left: 1.2rem;
  position: relative;
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ── ABOUT PAGE ───────────────────────────── */

.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.about-story .story-text h2 {
  margin-bottom: 1.5rem;
}

.about-story .story-text p {
  margin-bottom: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .about-story { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.team-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-card {
  background: var(--color-bg-white);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--color-primary);
}

.team-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-card p:last-child {
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
}

.team-note {
  font-size: 0.92rem;
  font-weight: 300;
  margin-top: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.value-item h4 {
  margin-bottom: 0.3rem;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--color-text-caption);
}

/* ── CONTACT PAGE ─────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 4rem; }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-heading);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d0d8dd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-heading);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 214, 143, 0.15);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #e74c3c;
}

.form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 0.3rem;
  display: none;
}

.form-submit-btn {
  width: 100%;
  font-size: 1rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-caption);
  text-align: center;
  margin-top: 0.75rem;
}

.form-success {
  background: var(--color-bg-mint);
  border: 1px solid var(--color-success);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  display: none;
}

.form-success h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--color-bg-mint);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.contact-detail p {
  font-size: 0.92rem;
}

.next-steps-box {
  background: var(--color-bg-linen);
  border-radius: 12px;
  padding: 1.75rem;
  margin-top: 2rem;
}

.next-steps-box h4 {
  margin-bottom: 0.75rem;
}

.next-steps-box ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.next-steps-box li {
  font-size: 0.9rem;
}

/* ── LEGAL PAGE ───────────────────────────── */

.legal-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e0e4e7;
  margin-bottom: 2.5rem;
}

.legal-tab {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-caption);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all 0.2s;
}

.legal-tab:hover {
  color: var(--color-text-heading);
}

.legal-tab.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin: 0.75rem 0 1rem 1.5rem;
  list-style: disc;
}

.legal-content ol { list-style: decimal; }

.legal-content li {
  padding: 0.2rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-section {
  display: none;
}

.legal-section.active {
  display: block;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--color-text-caption);
  margin-bottom: 2rem;
}

/* ── FOOTER ───────────────────────────────── */

.site-footer {
  background: var(--color-accent);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
}

.footer-bottom a:hover {
  color: #fff;
}

/* ── SCROLL REVEAL ────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: show content immediately if JS is disabled or slow */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── HERO WITH PHOTO BACKGROUND ───────────── */

.hero-photo {
  position: relative;
  background: url('../images/property-exterior.jpg') center/cover no-repeat;
  color: #fff;
  padding: clamp(5rem, 12vw, 9rem) 0;
  text-align: center;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,119,182,0.88) 0%, rgba(0,150,100,0.78) 100%);
}

.hero-photo .container {
  position: relative;
  z-index: 1;
}

.hero-photo h1 { color: #fff; }

.hero-photo p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  font-weight: 300;
}

/* ── PHOTO GALLERY ────────────────────────── */

.photo-gallery-wrap {
  overflow: hidden;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 4vw, 3rem);
}

.photo-gallery {
  display: grid;
  gap: 4px;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 160px 160px;
  border-radius: 12px;
  overflow: hidden;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-gallery .photo-main {
  grid-row: 1 / 3;
}

@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px;
  }
  .photo-gallery .photo-main {
    grid-column: 1 / 3;
    grid-row: 1;
    height: 180px;
  }
  /* hide the 5th image on mobile to keep grid tidy */
  .photo-gallery img:nth-child(5) {
    display: none;
  }
}

/* ── MISSION & VISION ─────────────────────── */

.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .mv-grid { grid-template-columns: 1fr 1fr; }
}

.mv-card {
  border-radius: 14px;
  padding: 2.5rem 2rem;
}

.mv-card--mission {
  background: var(--color-accent);
  color: #fff;
}

.mv-card--mission .eyebrow { color: var(--color-primary); }
.mv-card--mission h3 { color: #fff; font-size: 1.4rem; margin-bottom: 1rem; }
.mv-card--mission p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.8; font-weight: 300; }

.mv-card--vision {
  background: var(--color-bg-mint);
}

.mv-card--vision .eyebrow { color: var(--color-primary); }
.mv-card--vision h3 { color: var(--color-text-heading); font-size: 1.4rem; margin-bottom: 1rem; }
.mv-card--vision p { color: var(--color-text-body); font-size: 1rem; line-height: 1.8; font-weight: 300; }

/* ── STR INVESTMENT TAGLINES ──────────────── */

.str-value {
  background: var(--color-text-heading);
  color: #fff;
  padding: var(--section-padding) 0;
}

.str-value .eyebrow { color: var(--color-primary); }

.str-value h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.str-value .section-header p {
  color: rgba(255,255,255,0.75);
}

.str-value .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
  font-weight: 300;
}

.str-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) { .str-points { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .str-points { grid-template-columns: repeat(4, 1fr); } }

.str-point {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.str-point-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.str-point h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.str-point p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.str-taglines {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.str-tagline {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 10px 10px 0;
}

.str-tagline-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,214,143,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.str-tagline-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.str-tagline h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.str-tagline p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── SUPERHOST BADGE ──────────────────────── */

.superhost-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.superhost-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  text-decoration: none;
}

.superhost-badge img {
  height: 40px;
  width: auto;
}

.superhost-badge-text {
  font-size: 0.85rem;
  color: var(--color-text-body);
  line-height: 1.4;
}

.superhost-badge-text strong {
  display: block;
  color: var(--color-text-heading);
  font-size: 0.95rem;
}

/* ── ARTICLES SECTION ─────────────────────── */

.article-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border-top: 3px solid var(--color-secondary);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.article-source {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.article-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.article-summary {
  font-size: 0.88rem;
  color: var(--color-text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-text-caption);
}

.article-link {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 0.85rem;
}

.article-link:hover { color: var(--color-accent); }

/* ── AIRBNB REVIEW CARDS ──────────────────── */

.airbnb-review-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-meta { flex: 1; }

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-heading);
}

.review-date {
  font-size: 0.8rem;
  color: var(--color-text-caption);
}

.review-stars {
  color: var(--color-star);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.airbnb-review-card blockquote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-body);
  font-style: italic;
  margin-bottom: 0.25rem;
}

.airbnb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-text-caption);
  margin-top: 1rem;
}

.airbnb-badge svg {
  width: 16px;
  height: 16px;
  fill: #FF5A5F;
}

/* ── RESPONSIVE FORM FIXES ───────────────── */

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 599px) {
  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
  }
}

/* ── GENERAL MOBILE POLISH ───────────────── */

@media (max-width: 599px) {
  .str-tagline {
    flex-direction: column;
    gap: 0.75rem;
  }

  .superhost-badge {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .cta-band h2 {
    font-size: 1.5rem;
  }

  .airbnb-review-card {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}
