/* RE Brand Maintenance LLC — vibrant premium styles */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --color-bg: #faf7f2;
  --color-surface: #ffffff;
  --color-surface-soft: #f3eee6;
  --color-tint: #e8f3f2;
  --color-text: #121816;
  --color-text-muted: #5a635f;
  --color-primary: #0a4f4c;
  --color-primary-dark: #063836;
  --color-primary-mid: #0d6b66;
  --color-primary-soft: #d9efed;
  --color-gold: #c9a227;
  --color-gold-bright: #e0b93a;
  --color-gold-soft: #f7efd4;
  --color-coral: #d97b5c;
  --color-border: #e6e0d6;
  --color-border-strong: #d2c9bb;
  --color-star: #c9a227;
  --color-ink: #0b1f1e;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-sm: 0 2px 8px rgba(11, 31, 30, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 31, 30, 0.1);
  --shadow-lg: 0 24px 56px rgba(11, 31, 30, 0.16);
  --shadow-lift: 0 18px 40px rgba(10, 79, 76, 0.18);
  --radius: 16px;
  --radius-sm: 12px;
  --max-width: 1140px;
  --header-h: 4.35rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 1.025rem;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary-mid);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--color-primary-dark);
}

h1, h2, h3, .logo, .footer-brand {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-weight: 600;
}

/* —— Animations —— */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmerLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.fade-up {
  animation: fadeUp 0.7s var(--ease-out) both;
}

.fade-up-delay-1 { animation-delay: 0.08s; }
.fade-up-delay-2 { animation-delay: 0.16s; }
.fade-up-delay-3 { animation-delay: 0.24s; }
.fade-up-delay-4 { animation-delay: 0.32s; }

/* —— Header —— */
.site-header {
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 224, 214, 0.9);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.95rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  min-height: var(--header-h);
}

.logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.035em;
}

.logo:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.logo span {
  color: var(--color-primary-mid);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem 1.65rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 0.35rem 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-primary-mid));
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--color-text);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-phone {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  white-space: nowrap;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  background: var(--color-primary);
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(10, 79, 76, 0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.header-phone:hover {
  background: var(--color-primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(10, 79, 76, 0.32);
}

/* —— Main —— */
main {
  flex: 1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: clamp(480px, 78vh, 700px);
  display: flex;
  align-items: flex-end;
  background-color: var(--color-ink);
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center 35%;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(8, 28, 27, 0.92) 0%,
      rgba(8, 28, 27, 0.72) 42%,
      rgba(8, 28, 27, 0.42) 72%,
      rgba(8, 28, 27, 0.28) 100%
    ),
    linear-gradient(0deg, rgba(8, 28, 27, 0.55) 0%, transparent 45%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.22) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1.5rem 4.25rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin-bottom: 1.1rem;
  animation: fadeUp 0.65s var(--ease-out) both;
}

.hero-eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
}

.hero h1 {
  font-size: clamp(2.35rem, 6vw, 3.85rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.85rem;
  color: #fff;
  max-width: 12ch;
  animation: fadeUp 0.7s var(--ease-out) 0.06s both;
}

.hero .slogan {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: #f0e6c2;
  font-weight: 500;
  margin-bottom: 1.2rem;
  font-style: italic;
  animation: fadeUp 0.7s var(--ease-out) 0.12s both;
}

.hero .lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  margin-bottom: 2rem;
  line-height: 1.65;
  animation: fadeUp 0.7s var(--ease-out) 0.18s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.7s var(--ease-out) 0.24s both;
}

.hero .btn-primary {
  background: var(--color-gold);
  color: var(--color-ink);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
  border-color: transparent;
}

.hero .btn-primary:hover {
  background: var(--color-gold-bright);
  color: var(--color-ink);
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.45);
  transform: translateY(-2px);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease-out);
  font-family: inherit;
  letter-spacing: -0.01em;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(10, 79, 76, 0.28);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 8px 22px rgba(10, 79, 76, 0.36);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* —— Stats / trust bar —— */
.stats-bar {
  background: var(--color-ink);
  color: #fff;
  padding: 1.35rem 0;
  border-bottom: 3px solid var(--color-gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.5rem;
}

.stat-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.2rem;
  color: var(--color-gold-bright);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--color-surface);
}

.section-tint {
  background: var(--color-tint);
}

.section-tight {
  padding: 3.25rem 0;
}

.section-header {
  margin-bottom: 2.15rem;
  max-width: 42rem;
}

.section-header h2 {
  margin-bottom: 0.7rem;
}

.section-header p {
  margin-bottom: 0;
}

.section h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.035em;
  color: var(--color-text);
}

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.55rem;
}

.section p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  max-width: 42rem;
}

.section p:last-child {
  margin-bottom: 0;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 650;
  font-size: 0.98rem;
  margin-top: 1.85rem;
  color: var(--color-primary);
  position: relative;
}

.section-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}

.section-link:hover {
  gap: 0.6rem;
  color: var(--color-primary-dark);
}

.section-link:hover::after {
  transform: scaleX(1);
}

/* —— Intro split —— */
.intro-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.25rem;
  align-items: center;
}

.intro-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  position: relative;
}

.intro-visual::after {
  content: "";
  position: absolute;
  inset: auto -12px -12px auto;
  width: 40%;
  height: 40%;
  border: 3px solid var(--color-gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.7;
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.intro-visual:hover img {
  transform: scale(1.03);
}

/* Tall before/after collage — simple thin black frame */
.intro-visual--tall {
  aspect-ratio: auto;
  max-height: min(560px, 70vh);
  border-radius: 4px;
  box-shadow: none;
  border: 2px solid #111;
  background: #fff;
}

.intro-visual--tall::after {
  display: none;
}

.intro-visual--tall img {
  height: auto;
  max-height: min(560px, 70vh);
  object-fit: contain;
  object-position: center top;
  display: block;
}

.intro-visual--tall:hover img {
  transform: none;
}

.intro-visual-figure {
  margin: 0;
}

.photo-caption {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted, #5c6570);
  text-align: center;
  letter-spacing: 0.02em;
}

/* —— Intro copy (optional narrow text block) —— */
.intro-copy {
  max-width: 40rem;
}

.intro-copy h2 {
  margin-bottom: 1rem;
}

.intro-copy > p {
  margin-bottom: 1.5rem;
}

/* —— Cards —— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.45rem;
  margin-top: 0.5rem;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out), border-color 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-mid), var(--color-gold));
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 2;
}

.card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
  border-color: transparent;
}

.card:hover::before {
  opacity: 1;
}

.section-alt .card {
  background: var(--color-bg);
}

.section-tint .card {
  background: var(--color-surface);
}

.card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-surface-soft);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.card:hover .card-image img {
  transform: scale(1.06);
}

.card-body {
  padding: 1.4rem 1.45rem 1.55rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 650;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  letter-spacing: -0.025em;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  max-width: none;
  line-height: 1.55;
}

.card-plain {
  padding: 1.5rem 1.4rem;
}

.card-plain .card-body {
  padding: 0;
}

/* —— Info list —— */
.info-list {
  list-style: none;
  margin-top: 0.75rem;
  max-width: 28rem;
}

.info-list li {
  padding: 0.75rem 0;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list strong {
  color: var(--color-text);
  min-width: 5rem;
  font-weight: 650;
}

/* —— Trust badge —— */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--color-gold-soft);
  color: var(--color-text);
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.92rem;
  margin-top: 1.15rem;
  border: 1px solid rgba(201, 162, 39, 0.28);
}

.trust-badge .stars {
  color: var(--color-star);
  letter-spacing: 0.08em;
  font-size: 0.98rem;
}

/* —— Hours strip —— */
.hours-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.15rem;
  margin-top: 1.65rem;
}

.hours-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.4rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
  border-top: 3px solid var(--color-primary-mid);
}

.hours-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}

.hours-item .label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}

.hours-item .value {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.08rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.hours-item a.value {
  color: var(--color-primary);
}

.hours-item a.value:hover {
  color: var(--color-primary-dark);
}

/* —— CTA band —— */
.cta-band {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201, 162, 39, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #063836 0%, #0a4f4c 50%, #0d6b66 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.7rem;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 34rem;
  margin: 0 auto 1.65rem;
}

.cta-band .btn-primary {
  background: var(--color-gold);
  color: var(--color-ink);
  box-shadow: 0 8px 22px rgba(201, 162, 39, 0.35);
}

.cta-band .btn-primary:hover {
  background: var(--color-gold-bright);
  color: var(--color-ink);
}

.cta-band .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: #fff;
}

.cta-band .hero-ctas {
  justify-content: center;
  animation: none;
}

/* —— Page header —— */
.page-header {
  background:
    linear-gradient(135deg, var(--color-ink) 0%, #0a4f4c 70%, #0d6b66 100%);
  padding: 3.5rem 0 3rem;
  border-bottom: 3px solid var(--color-gold);
  position: relative;
  color: #fff;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
  top: -100px;
  right: 10%;
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #fff;
  animation: fadeUp 0.6s var(--ease-out) both;
}

.page-header .subtitle {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.5rem;
  font-size: 1.1rem;
  max-width: 36rem;
  font-family: var(--font-display);
  font-style: italic;
  animation: fadeUp 0.6s var(--ease-out) 0.08s both;
}

/* —— Contact —— */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-details .phone-large {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-block;
  margin: 0.65rem 0 1.15rem;
  letter-spacing: -0.02em;
  transition: color 0.2s, transform 0.2s;
}

.contact-details .phone-large:hover {
  color: var(--color-gold);
  transform: translateX(2px);
}

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.1rem;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--color-gold);
}

.form-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.form-card .form-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.35rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary-mid);
  box-shadow: 0 0 0 3px rgba(13, 107, 102, 0.18);
}

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

.form-actions {
  margin-top: 1.35rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--color-ink);
  color: #a8b0ad;
  padding: 3.25rem 0 0;
  margin-top: auto;
  border-top: 3px solid var(--color-gold);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.footer-brand {
  font-weight: 700;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.footer-brand span {
  color: var(--color-gold-bright);
}

.site-footer p {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.site-footer a {
  color: #9ed9d4;
}

.site-footer a:hover {
  color: var(--color-gold-bright);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}

.footer-nav a {
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.15rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.825rem;
  color: #6f7874;
}

/* —— Also offered / growth strip —— */
.also-offered {
  background:
    linear-gradient(180deg, var(--color-primary-soft) 0%, #f0f7f6 100%);
  border-bottom: 1px solid rgba(10, 79, 76, 0.08);
  padding: 2.75rem 0 2.9rem;
  position: relative;
}

.also-offered::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-mid), var(--color-gold), var(--color-coral));
}

.also-offered-header {
  margin-bottom: 1.35rem;
  max-width: 40rem;
}

.also-offered-header .section-kicker {
  color: var(--color-primary-mid);
}

.also-offered-header h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.also-offered-header p {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  margin: 0;
  max-width: 36rem;
}

.also-offered-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.also-offered-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1.2rem 1.3rem;
  background: var(--color-surface);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s var(--ease-out), background 0.22s;
  position: relative;
  overflow: hidden;
}

.also-offered-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-coral));
  opacity: 0.85;
  transition: width 0.22s;
}

.also-offered-item:hover {
  border-color: rgba(10, 79, 76, 0.12);
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: var(--color-text);
  text-decoration: none;
}

.also-offered-item:hover::before {
  width: 6px;
}

.also-offered-label {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
  padding-left: 0.35rem;
}

.also-offered-cta {
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--color-primary-mid);
  padding-left: 0.35rem;
  transition: color 0.2s, letter-spacing 0.2s;
}

.also-offered-item:hover .also-offered-cta {
  color: var(--color-coral);
  letter-spacing: 0.01em;
}

.card-grid-primary {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-cta {
  display: inline-flex;
  margin-top: auto;
  padding-top: 0.9rem;
  font-weight: 650;
  font-size: 0.875rem;
  color: var(--color-primary-mid);
  transition: color 0.2s, gap 0.2s;
  gap: 0.25rem;
}

.card-cta:hover {
  color: var(--color-coral);
  gap: 0.45rem;
}

.card[id],
#expanding-services {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.card[id]:target {
  border-color: var(--color-primary-mid);
  box-shadow: 0 0 0 3px rgba(13, 107, 102, 0.2), var(--shadow-md);
}

.card[id]:target::before {
  opacity: 1;
}

/* —— Utility —— */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1.15rem; }
.mb-0 { margin-bottom: 0; }

/* —— Responsive —— */
@media (max-width: 900px) {
  .also-offered-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-visual {
    order: -1;
    max-width: 480px;
  }

  .intro-visual::after {
    display: none;
  }

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

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }

  .stats-grid {
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 520px;
    align-items: center;
  }

  .hero-inner {
    padding: 3.75rem 1.5rem 3.25rem;
  }

  .hero h1 {
    max-width: none;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
    text-align: left;
  }

  .stat-icon {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .also-offered-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem 1.25rem;
  }

  .nav {
    width: 100%;
    gap: 0.15rem 1.1rem;
  }

  .header-phone {
    align-self: stretch;
    text-align: center;
  }

  .section {
    padding: 3.25rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .form-card {
    padding: 1.5rem;
  }

  .hero .btn,
  .cta-band .btn {
    width: 100%;
  }
}


/* —— Before / After (owner job photos) —— */
.before-after {
  margin-top: 2rem;
  padding: 1.5rem 1.6rem 1.65rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.before-after-header {
  margin-bottom: 1rem;
}

.before-after-header h3 {
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.before-after-header p {
  color: var(--color-muted);
  font-size: 0.98rem;
  max-width: 42rem;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.before-after-item {
  position: relative;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-surface-soft);
}

.before-after-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(26, 26, 26, 0.78);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

@media (max-width: 640px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}


#window-tinting .card-image img {
  object-position: center top;
}
