/* ============================================
   Horseshoe Bend Hosting — Brand Styles
   Colors: #194259, #25332b, #ae401d, #dacec1, #f0f0ee
   Fonts: Noto Serif, Playlist Script, Roboto
   ============================================ */

:root {
  --announcement-height: 44px;
  --navy: #194259;
  --forest: #25332b;
  --rust: #ae401d;
  --beige: #dacec1;
  --cream: #f0f0ee;
  --off-white: #f7f7f7;
  --black: #1a1a1a;
  --white: #ffffff;
  --gold: #c9a84c;

  --font-serif: 'Noto Serif', Georgia, serif;
  --font-script: 'Playlist Script', cursive;
  --font-sans: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(25, 66, 89, 0.08);
  --shadow-md: 0 8px 30px rgba(25, 66, 89, 0.12);
  --shadow-lg: 0 16px 50px rgba(25, 66, 89, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(72px + var(--announcement-height));
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  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;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }

h1 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--beige);
  font-weight: 400;
}

.script-accent {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--rust);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.1rem;
  color: #555;
  max-width: 640px;
  margin: 16px auto 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section {
  padding: 96px 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--rust);
  color: var(--white);
  border-color: var(--rust);
}

.btn-primary:hover {
  background: #963618;
  border-color: #963618;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: #0f2d3f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* ---- Announcement Bar ---- */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--forest);
  color: var(--beige);
  height: var(--announcement-height);
  display: flex;
  align-items: center;
}

.announcement-bar-inner {
  width: 100%;
}

.announcement-bar-inner p {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.4;
}

.announcement-bar strong {
  color: var(--white);
}

.announcement-bar a {
  color: var(--white);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 4px;
}

.announcement-bar a:hover {
  color: var(--beige);
}

/* ---- Header / Nav ---- */
.site-header {
  position: fixed;
  top: var(--announcement-height);

  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(25, 66, 89, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 44px;
  height: 44px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.nav-logo-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rust);
  transition: width var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--rust);
}

.nav-cta {
  background: var(--rust);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
}

.nav-cta:hover {
  background: #963618;
}

.nav-cta::after {
  display: none !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(72px + var(--announcement-height));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(25, 66, 89, 0.88) 0%,
    rgba(37, 51, 43, 0.75) 50%,
    rgba(25, 66, 89, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--beige);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--forest);
  padding: 20px 0;
}

.trust-bar-inner p {
  text-align: center;
  color: var(--beige);
  font-size: 0.95rem;
}

.trust-bar-inner strong {
  color: var(--white);
}

/* ---- Services ---- */
.services {
  background: var(--off-white);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(25, 66, 89, 0.06);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card-featured {
  border: 2px solid var(--navy);
  position: relative;
}

.service-card-header {
  margin-bottom: 20px;
}

.service-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.service-badge-gold {
  background: var(--navy);
  color: var(--beige);
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-tagline {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-value {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
}

.price-detail {
  font-size: 0.85rem;
  color: #888;
}

.service-best-for {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream);
}

.service-features {
  flex: 1;
  margin-bottom: 28px;
}

.service-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: #444;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rust);
  font-weight: 700;
}

.service-value {
  margin-bottom: 32px;
  padding: 32px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--navy);
  box-shadow: var(--shadow-sm);
}

.service-value p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.75;
  margin: 0;
}

.partnership-note {
  text-align: left;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  padding: 24px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--forest);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  margin: 24px 0 0;
}

.owner-relief {
  margin: 0 0 72px;
  padding: 36px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--rust);
  box-shadow: var(--shadow-sm);
}

.owner-relief p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--navy);
  font-style: italic;
  margin: 0;
}

.partner-standards {
  margin-bottom: 72px;
  padding: 36px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--navy);
  box-shadow: var(--shadow-sm);
}

.partner-standards h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  text-align: center;
  color: var(--navy);
}

.direct-booking-note {
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 24px 32px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--rust);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.direct-booking-note p {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.65;
}

.direct-booking-note a {
  color: var(--rust);
  font-weight: 600;
}

.guidebook-feature {
  margin-top: 32px;
  padding: 36px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--navy);
  box-shadow: var(--shadow-sm);
}

.guidebook-feature .section-eyebrow {
  margin-bottom: 8px;
}

.guidebook-feature h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.guidebook-feature p {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

.origin-property {
  margin-bottom: 56px;
  padding: 24px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--rust);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.origin-property p {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
}

.origin-property a {
  color: var(--rust);
  font-weight: 600;
  font-family: var(--font-serif);
}

.referral-banner {
  background: var(--navy);
  padding: 72px 0;
}

.referral-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.referral-banner .section-eyebrow {
  color: var(--beige);
}

.referral-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.referral-banner-text p:last-child {
  color: var(--beige);
  font-size: 1.05rem;
  margin: 0;
}

.partner-standards p {

  font-size: 0.98rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

.commission-note {

  text-align: center;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  padding: 24px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--rust);
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
}

/* ---- How It Works ---- */
.how-it-works {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--off-white);
  transition: var(--transition);
}

.step:hover {
  background: var(--cream);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rust);
  opacity: 0.5;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* ---- About Us ---- */
.about-us {
  background: var(--cream);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.about-intro-content h2 {
  margin-bottom: 24px;
}

.about-intro-content p {
  color: #555;
  margin: 0 0 24px;
  font-size: 1.05rem;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin-bottom: 72px;
}

.why-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}

.why-list svg {
  width: 24px;
  height: 24px;
  color: var(--rust);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list strong {
  display: block;
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 4px;
}

.why-list span {
  font-size: 0.92rem;
  color: #666;
}

.about-us-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-us-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-roots {
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--rust);
  margin-top: 8px;
}

.about-team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}

.team-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rust);
  margin-bottom: 16px;
}

.team-card p:last-child {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.values-section {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid rgba(25, 66, 89, 0.1);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--rust);
}

.value-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.value-card-featured {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 440px;
  text-align: center;
}

.value-card-featured h3,
.value-card-featured p {
  text-align: center;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.service-highlight {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border-top: 3px solid var(--rust);
  box-shadow: var(--shadow-sm);
}

.service-highlight h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-highlight p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
/* ---- Compare Table ---- */
.compare {
  background: var(--white);
}

.compare-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table thead {
  background: var(--navy);
  color: var(--white);
}

.compare-table th {
  padding: 18px 24px;
  text-align: left;
  font-family: var(--font-serif);
  font-weight: 600;
}

.compare-table th span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 2px;
}

.compare-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--cream);
}

.compare-table tbody tr:hover {
  background: var(--off-white);
}

.compare-table td:first-child {
  font-weight: 500;
  color: var(--navy);
}

.compare-table .yes {
  color: var(--forest);
  font-weight: 600;
}

.compare-table .no {
  color: #999;
}

.compare-table .partial {
  color: var(--rust);
  font-weight: 500;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--navy);
  padding: 72px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-text h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner-text p {
  color: var(--beige);
  font-size: 1.05rem;
}

/* ---- Contact ---- */
.contact {
  background: var(--off-white);
}

.contact-info-centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-info-centered .contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  text-align: left;
}

.contact-info-centered .contact-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-bottom: none;
  box-shadow: var(--shadow-sm);
}

.contact-info-centered .contact-founder {
  text-align: left;
}

.contact-info p {
  color: #555;
  margin: 16px 0 32px;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream);
  transition: color var(--transition);
}

a.contact-item:hover {
  color: var(--rust);
}

.contact-item svg {
  width: 22px;
  height: 22px;
  color: var(--rust);
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
}

.contact-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
}

.contact-founder {
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--rust);
}

.contact-founder p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--navy);
}

.form-section {
  background: var(--cream);
  padding: 80px 0 96px;
}

.form-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.google-form-embed {
  width: 100%;
  background: var(--white);
  padding: 48px 56px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-embed-heading {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 8px;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
}

h2.form-embed-heading {
  font-size: 1.55rem;
}

.form-embed-sub {
  font-size: 0.95rem;
  color: #666;
  text-align: center;
  margin-bottom: 24px;
}

.google-form-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--off-white);
}

.google-form-wrapper iframe {
  width: 100%;
  height: 900px;
  border: 0;
  display: block;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--forest);
  color: var(--beige);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand img {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(218, 206, 193, 0.15);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid,
  .service-highlights,
  .about-team {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info-centered .contact-details {
    grid-template-columns: 1fr;
  }

  .about-us-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --announcement-height: 52px;
  }

  .announcement-bar-inner p {
    font-size: 0.8rem;
    padding: 0 8px;
  }

  .section {
    padding: 64px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: calc(72px + var(--announcement-height));
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--cream);
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-logo-text {
    display: none;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }

  .cta-banner-inner,
  .referral-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .guidebook-feature,
  .origin-property {
    padding: 28px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-section {
    padding: 64px 0;
  }

  .form-section-inner {
    padding: 0 16px;
  }

  .google-form-embed {
    padding: 28px 20px;
  }

  .google-form-wrapper iframe {
    height: 850px;
  }

  .values-grid,
  .service-highlights,
  .about-team {
    grid-template-columns: 1fr;
  }

  .why-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}