/* ============================================================
   THE HOOPER PRESERVE — Main Stylesheet
   Colors: Navy #0F1E2E | Ivory #F4F1EA | Gold #B9946C
           Charcoal #3A3A3A | Sage #8A9A8A
   Fonts: Playfair Display (serif) | Montserrat (sans-serif)
   ============================================================ */

:root {
  --navy: #0F1E2E;
  --ivory: #F4F1EA;
  --gold: #B9946C;
  --gold-light: #d4b896;
  --charcoal: #3A3A3A;
  --sage: #8A9A8A;
  --white: #ffffff;
  --border: rgba(185, 148, 108, 0.3);
  --shadow: 0 4px 32px rgba(15, 30, 46, 0.12);
  --shadow-lg: 0 8px 48px rgba(15, 30, 46, 0.2);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
  --nav-h: 90px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TYPOGRAPHY ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.centered { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.centered { text-align: center; }

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--charcoal);
  font-size: 15px;
  opacity: 0.8;
}

.body-text {
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.8;
  opacity: 0.85;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

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

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(244, 241, 234, 0.6);
}
.btn-outline:hover {
  background: rgba(244, 241, 234, 0.15);
  border-color: var(--ivory);
}

.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(244, 241, 234, 0.7);
  font-size: 10px;
}
.btn-outline-light:hover {
  background: var(--ivory);
  color: var(--navy);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 30, 46, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(185, 148, 108, 0.2);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(15, 30, 46, 0.99);
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-the {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  color: rgba(244, 241, 234, 0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-link {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.7);
  padding: 8px 12px;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--ivory);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 10px 20px;
  transition: all var(--transition);
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--gold-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(185, 148, 108, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(138, 154, 138, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, rgba(15, 30, 46, 0.95) 0%, rgba(15, 30, 46, 0.8) 100%);
}

/* Decorative grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(185, 148, 108, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 148, 108, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 32px;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: heroFadeIn 1.2s 0.2s ease both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroFadeIn 1.2s 0.4s ease both;
}

.hero-the {
  font-family: var(--font-sans);
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 400;
  letter-spacing: 0.4em;
  color: rgba(244, 241, 234, 0.6);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(48px, 9vw, 110px);
  font-weight: 500;
  color: var(--ivory);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto;
  animation: heroFadeIn 1.2s 0.6s ease both;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  color: rgba(244, 241, 234, 0.75);
  margin-bottom: 48px;
  animation: heroFadeIn 1.2s 0.7s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s 0.9s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
  animation: heroFadeIn 1.2s 1.2s ease both;
}
.hero-scroll span {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── INTRO SECTION ── */
.intro {
  padding: 120px 0;
  background: var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.monogram-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}
.monogram-circle::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(185, 148, 108, 0.3);
}
.monogram-text {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.04em;
}
.monogram-caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
  text-align: center;
  line-height: 1.5;
  opacity: 0.75;
}

/* ── PROPERTIES SECTION ── */
.properties-section {
  padding: 120px 0;
  background: #f0ece3;
}

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

.property-card {
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.property-img {
  position: relative;
  height: 260px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.property-img-1 {
  background-image: url('../images/prop-1-scottsdale.jpg');
  background-size: cover;
  background-position: center;
}
.property-img-2 {
  background-image: url('../images/prop-2-lajolla.jpg');
  background-size: cover;
  background-position: center;
}
.property-img-3 {
  background-image: url('../images/prop-3-paradise.jpg');
  background-size: cover;
  background-position: center;
}

.property-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 5px 12px;
  z-index: 2;
}

.property-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 46, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.property-card:hover .property-overlay { opacity: 1; }

.property-view {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(244, 241, 234, 0.7);
  padding: 10px 20px;
  transition: all var(--transition);
}
.property-view:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.property-info {
  padding: 24px;
  border-top: 2px solid var(--gold);
}
.property-location {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.property-name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.property-details {
  font-size: 12px;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 12px;
}
.property-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}

/* IDX Placeholder */
.idx-placeholder {
  display: none; /* hidden until IDX enabled */
  background: var(--white);
  border: 1px dashed rgba(185, 148, 108, 0.5);
  padding: 80px 40px;
  text-align: center;
  margin-bottom: 48px;
}
.idx-icon {
  font-size: 48px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
}
.idx-placeholder h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}
.idx-placeholder p {
  font-size: 14px;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 8px;
}
.idx-note { font-size: 12px !important; }
.idx-note code {
  background: rgba(185, 148, 108, 0.15);
  padding: 2px 6px;
  border-radius: 2px;
  font-family: monospace;
}

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

/* ── SERVICES SECTION ── */
.services-section {
  padding: 120px 0;
  background: var(--navy);
}

.services-section .section-label { color: var(--gold); }
.services-section .section-title { color: var(--ivory); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.service-card {
  padding: 40px 28px;
  border: 1px solid rgba(185, 148, 108, 0.2);
  transition: all var(--transition);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.service-card:hover::before { width: 100%; }
.service-card:hover {
  border-color: rgba(185, 148, 108, 0.4);
  background: rgba(244, 241, 234, 0.04);
}

.service-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ivory);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 13px;
  color: rgba(244, 241, 234, 0.6);
  line-height: 1.8;
}

/* ── MARKETS SECTION ── */
.markets-section {
  padding: 120px 0;
  background: var(--ivory);
}

.markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

.market-panel {
  position: relative;
  height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.market-az {
  background-image: url('../images/prop-5-sedona.jpg');
  background-size: cover;
  background-position: center;
}
.market-ca {
  background-image: url('../images/prop-2-lajolla.jpg');
  background-size: cover;
  background-position: center;
}

.market-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 30, 46, 0.85) 0%, transparent 60%);
}

.market-content {
  position: relative;
  z-index: 1;
  padding: 40px;
}
.market-content h3 {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--ivory);
  margin-bottom: 8px;
}
.market-content p {
  font-size: 12px;
  color: rgba(244, 241, 234, 0.65);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 120px 0;
  background: #f0ece3;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.testimonial-card {
  padding: 40px 32px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow);
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 0;
  background: var(--navy);
  text-align: center;
}
.cta-section .section-label { color: var(--gold); }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--ivory);
  margin-bottom: 20px;
}
.cta-text {
  font-size: 15px;
  color: rgba(244, 241, 234, 0.65);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer {
  background: #080e14;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(185, 148, 108, 0.15);
}

.footer-logo-the {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--ivory);
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-size: 10px;
  color: rgba(244, 241, 234, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(244, 241, 234, 0.45);
}

.footer-nav h4,
.footer-markets h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav ul li,
.footer-markets ul li {
  margin-bottom: 10px;
}

.footer-nav a,
.footer-markets a {
  font-size: 13px;
  color: rgba(244, 241, 234, 0.55);
  transition: color var(--transition);
}
.footer-nav a:hover,
.footer-markets a:hover {
  color: var(--ivory);
}

.footer-contact p {
  font-size: 13px;
  color: rgba(244, 241, 234, 0.55);
  margin-bottom: 8px;
}
.footer-contact a {
  color: rgba(244, 241, 234, 0.55);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 11px;
  color: rgba(244, 241, 234, 0.25);
  letter-spacing: 0.05em;
}
.footer-bottom a:hover { color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 180px 0 100px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(185, 148, 108, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 148, 108, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero .section-label { color: var(--gold); }
.page-hero .section-title { color: var(--ivory); margin: 0 auto; }
.page-hero-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}

/* ── CONTACT FORM ── */
.contact-section {
  padding: 120px 0;
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 14px;
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 32px;
  line-height: 1.8;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex;
  flex-direction: column;
}
.contact-item-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 14px;
  color: var(--navy);
}
.contact-item-value a { color: var(--navy); transition: color var(--transition); }
.contact-item-value a:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(15, 30, 46, 0.2);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(15, 30, 46, 0.99);
    flex-direction: column;
    padding: 32px;
    gap: 16px;
    border-top: 1px solid rgba(185, 148, 108, 0.2);
  }
  .nav-links.open { display: flex; }

  .nav-toggle { display: flex; }

  .hero-actions { flex-direction: column; align-items: center; }

  .intro-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .intro-mark { order: -1; }

  .properties-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

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

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

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

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

  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── ADDITIONAL STYLES (v2 update) ── */

/* 5-card services grid */
.services-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* Service card learn more link */
.service-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}
.service-more:hover { opacity: 0.7; }

/* Market county sub-label */
.market-county {
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 8px !important;
  opacity: 1 !important;
}

/* Responsive: 5-col to 3-col on medium screens */
@media (max-width: 1200px) {
  .services-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .services-grid-5 { grid-template-columns: 1fr; }
}
