/* ============================================
   ABIDE REALTY — style.css
   Mobile-first responsive design
   Brand Colors: Green #00391F, Gold #9B7D0D
   ============================================ */

/* --- CSS Variables --- */
:root {
  --brand-gold: #9B7D0D;
  --brand-gold-light: #b8960f;
  --brand-gold-hover: #856b0b;
  --brand-green: #00391F;
  --brand-green-light: #004d2a;
  --brand-green-hover: #002a16;
  --white: #FFFFFF;
  --off-white: #F9F8F6;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --border: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.15);
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  min-height: 44px;
  line-height: 1;
}

.btn-green {
  background: var(--brand-green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--brand-green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-gold {
  background: var(--brand-gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--brand-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--brand-green);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: all var(--transition);
  height: 70px;
}

.nav.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 60px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.nav.scrolled .nav-logo img {
  height: 38px;
}

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

.nav-logo .logo-mobile {
  display: block;
  height: 40px;
}

.nav-links {
  display: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  padding: 8px 12px;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--brand-gold);
}

/* Mobile nav controls */
.nav-mobile-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--brand-green);
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
}

.nav-phone-btn:hover {
  background: var(--brand-green-light);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition);
}

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

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

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

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--brand-green);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--brand-gold);
}

.mobile-menu .text-justin-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 32px;
  background: var(--brand-gold);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(135deg, #1a4a2e 0%, #00391F 30%, #2d5a1e 60%, #8a7a2e 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 15, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero .subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.hero-buttons .btn {
  width: 100%;
  max-width: 280px;
}

/* Sub-page hero (shorter) */
.hero-sub {
  min-height: 40vh;
  padding: 100px 20px 40px;
}

/* ============================================
   ABOUT / BIO SECTION
   ============================================ */
.about {
  padding: 60px 20px;
  background: var(--white);
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.about-text .tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-medium);
  font-size: 18px;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-medium);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-photo {
  width: 100%;
  max-width: 350px;
}

.about-photo .photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--off-white), var(--border));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

/* ============================================
   TEXTABLE REALTOR BANNER
   ============================================ */
.textable-banner {
  background: var(--brand-green);
  padding: 28px 20px;
  text-align: center;
}

.textable-banner p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
}

.textable-banner a {
  color: var(--brand-gold-light);
  font-weight: 700;
  transition: color var(--transition);
}

.textable-banner a:hover {
  color: var(--brand-gold);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 60px 20px;
  background: var(--white);
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  background: var(--white);
}

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

.service-card .card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--off-white), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--brand-green);
  overflow: hidden;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .card-label {
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

/* ============================================
   MEET THE TEAM
   ============================================ */
.team {
  padding: 60px 20px;
  background: var(--off-white);
  text-align: center;
}

.team h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.team-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-medium);
  font-size: 18px;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  padding: 32px 24px;
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.team-photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--brand-green);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.team-card .team-role {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--brand-gold);
  font-size: 15px;
  margin-bottom: 16px;
}

.team-card .team-bio {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.team-contact a {
  font-size: 14px;
  color: var(--brand-green);
  font-weight: 600;
  transition: color var(--transition);
}

.team-contact a:hover {
  color: var(--brand-gold);
}

/* ============================================
   MORTGAGE CALCULATOR
   ============================================ */
.calculator {
  position: relative;
  padding: 60px 20px;
  background: var(--brand-green);
  color: var(--white);
  overflow: hidden;
}

.calculator::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 15, 0.85);
  z-index: 1;
}

.calculator-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.calculator h2 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 8px;
}

.calculator .calc-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 28px;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}

.calc-form input {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  transition: border-color var(--transition);
}

.calc-form input:focus {
  outline: none;
  border-color: var(--brand-gold);
}

.calc-result {
  margin-top: 20px;
  text-align: center;
  min-height: 60px;
}

.calc-result .result-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.calc-result .result-amount {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--brand-gold-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 60px 20px;
  background: var(--white);
  text-align: center;
}

.testimonials h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 32px;
}

.stars svg {
  width: 32px;
  height: 32px;
  fill: var(--brand-gold);
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto 32px;
  min-height: 120px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
}

.testimonial-slide blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.testimonial-slide cite {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-size: 14px;
  color: var(--text-medium);
  font-weight: 600;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}

.testimonial-dots button.active {
  background: var(--text-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brand-green);
  color: var(--white);
  padding: 50px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
  text-align: center;
}

.footer-col h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-logo img {
  height: 80px;
  width: auto;
  margin: 0 auto 12px;
}

.footer-logo .tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
  display: block;
  padding: 4px 0;
}

.footer-contact a {
  display: block;
  padding: 4px 0;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 16px;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--brand-gold);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.footer-legal img {
  height: 40px;
  width: auto;
}

.footer-legal .realtor-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
}

.footer-legal .equal-housing {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.email-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--brand-green);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-hover);
  transition: all var(--transition);
}

.email-fab:hover {
  background: var(--brand-green-hover);
  transform: translateY(-2px);
}

.email-fab svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ============================================
   FORMS (Contact & Home Valuation)
   ============================================ */
.form-section {
  padding: 60px 20px;
  background: var(--white);
}

.form-section-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.form-content .form-desc {
  color: var(--text-medium);
  margin-bottom: 28px;
  line-height: 1.8;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group label .required {
  color: #c0392b;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  min-height: 48px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-green);
}

.form-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 16px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Contact info card */
.contact-card {
  text-align: center;
}

.contact-card .photo-placeholder {
  width: 200px;
  height: 250px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--off-white), var(--border));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
}

.contact-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-card .company {
  color: var(--text-medium);
  margin-bottom: 12px;
}

.contact-card .info-line {
  font-size: 14px;
  color: var(--text-medium);
  padding: 2px 0;
}

.contact-card .info-line a {
  color: var(--brand-green);
}

.contact-card .info-line a:hover {
  color: var(--brand-gold);
}

/* Valuation right column image */
.valuation-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.valuation-image .photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--off-white), var(--border));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

/* ============================================
   MEDIA QUERIES — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 56px;
  }

  .hero .subtitle {
    font-size: 20px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-buttons .btn {
    width: auto;
  }

  .about-inner {
    flex-direction: row;
    text-align: left;
  }

  .about-text {
    flex: 1;
  }

  .about-photo {
    flex: 0 0 280px;
  }

  .textable-banner p {
    font-size: 26px;
  }

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

  .services h2 {
    font-size: 38px;
  }

  .testimonial-slide blockquote {
    font-size: 34px;
  }

  .team h2 {
    font-size: 38px;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-logo img {
    margin: 0 0 12px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .form-section-inner {
    flex-direction: row;
  }

  .form-content {
    flex: 1;
  }

  .form-sidebar {
    flex: 0 0 280px;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row .form-group {
    flex: 1;
  }
}

/* ============================================
   MEDIA QUERIES — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .nav {
    height: 80px;
  }

  .nav.scrolled {
    height: 70px;
  }

  .nav-inner {
    justify-content: center;
    gap: 0;
  }

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

  .nav-links-left {
    margin-right: auto;
  }

  .nav-links-right {
    margin-left: auto;
  }

  .nav-logo {
    margin: 0 24px;
  }

  .nav-logo .logo-desktop {
    display: block;
    height: 50px;
  }

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

  .nav.scrolled .nav-logo .logo-desktop {
    height: 42px;
  }

  .nav-mobile-controls {
    display: none;
  }

  .hero h1 {
    font-size: 64px;
    letter-spacing: 4px;
  }

  .about-inner {
    gap: 60px;
  }

  .about-text h2 {
    font-size: 38px;
  }

  .textable-banner p {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services h2 {
    font-size: 42px;
  }

  .calculator-inner {
    max-width: 500px;
  }

  .testimonials {
    padding: 80px 20px;
  }

  .testimonials h2 {
    font-size: 36px;
  }

  .stars svg {
    width: 42px;
    height: 42px;
  }

  .testimonial-slide blockquote {
    font-size: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .email-fab {
    bottom: 32px;
    left: 32px;
  }
}

/* ============================================
   MEDIA QUERIES — Large Desktop (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .hero h1 {
    font-size: 72px;
  }

  .container {
    padding: 0 40px;
  }
}
