/* Carolina Smart Plumbing — Editorial Warm Theme */
/* Fonts: Cormorant Garamond (display) + DM Sans (body) */

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

/* === DESIGN TOKENS === */
:root {
  --cream:        #f0f6fa;
  --cream-dark:   #deeaf3;
  --cream-mid:    #e6f0f8;
  --forest:       #2b5672;
  --forest-light: #3d7096;
  --forest-dark:  #1c3d54;
  --copper:       #d97706;
  --copper-light: #e88c1c;
  --charcoal:     #1a2835;
  --stone:        #546474;
  --border:       #cddde9;
  --white:        #FFFFFF;
  --radius:       4px;
  --shadow-sm:    0 2px 8px rgba(26,40,53,0.07);
  --shadow-md:    0 6px 24px rgba(26,40,53,0.10);
  --shadow-lg:    0 16px 48px rgba(26,40,53,0.13);
  --transition:   0.25s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--forest);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; font-weight: 600; }

p { line-height: 1.7; }

.eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
}
.btn:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-copper {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.btn-copper:hover {
  background: var(--copper-light);
  border-color: var(--copper-light);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest-dark);
  box-shadow: var(--shadow-md);
}

.header-topbar {
  background: var(--forest);
  padding: 0.45rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
}
.header-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar-left { display: flex; gap: 1.5rem; align-items: center; }
.topbar-right { display: flex; gap: 1.5rem; align-items: center; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
}
.topbar-item svg { flex-shrink: 0; }
.topbar-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--copper-light);
  font-weight: 600;
}

.header-main {
  padding: 1rem 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  border-radius: 2px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo-tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-links a:focus-visible { outline: 2px solid var(--copper); outline-offset: 2px; }

.nav-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--copper);
  color: var(--white);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  border: 2px solid var(--copper);
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--copper-light); transform: translateY(-1px); }
.nav-cta:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }

/* Mobile Nav */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: var(--radius);
}
.menu-toggle:focus-visible { outline: 2px solid var(--copper); }
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--forest-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}
.mobile-menu.open { display: block; }
.mobile-menu .container { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  border-radius: var(--radius);
  display: block;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.mobile-menu .mobile-cta {
  margin-top: 0.75rem;
  text-align: center;
  background: var(--copper);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.875rem;
  font-weight: 600;
}
.mobile-menu .mobile-cta:hover { background: var(--copper-light); }

/* === HERO === */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  padding: 0;
  min-height: 560px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 0;
  position: relative;
  z-index: 2;
}
.hero-content::before {
  content: '';
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  width: 120px;
  background: var(--cream);
  transform: skewX(-8deg);
  z-index: 3;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-left: 3px solid var(--copper);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero h1 {
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--forest);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--stone);
  margin-bottom: 2rem;
  max-width: 48ch;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-stat {
  display: flex;
  flex-direction: column;
}
.trust-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.trust-stat .label {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--forest-dark) 0%, transparent 40%);
  opacity: 0.35;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--forest);
  padding: 1.25rem 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-item svg { color: var(--copper-light); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
}

/* === SECTION HEADER === */
.section-header {
  margin-bottom: 3rem;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--stone); font-size: 1.05rem; max-width: 60ch; }

/* === SERVICES PREVIEW === */
.services-preview {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--forest);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--forest);
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-icon {
  background: var(--forest);
  color: var(--white);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--stone); line-height: 1.6; }

.services-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* === SERVICES FULL === */
.services-all { background: var(--cream); }

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--forest);
  border-radius: 0 6px 6px 0;
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.service-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-top: 0.1rem;
}
.service-item-text h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.service-item-text p { font-size: 0.875rem; color: var(--stone); line-height: 1.55; }

/* === TESTIMONIALS === */
.testimonials { background: var(--cream-dark); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--cream-dark);
  pointer-events: none;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.star { color: var(--copper); font-size: 1rem; }
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-meta { font-size: 0.8rem; color: var(--stone); }
.source-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--cream-dark);
  color: var(--stone);
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
}

/* === ABOUT PREVIEW === */
.about-preview { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.about-image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
}
.credential svg { color: var(--forest); flex-shrink: 0; }

/* === ABOUT FULL PAGE === */
.about-page { background: var(--cream); }

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

.about-sidebar {
  position: sticky;
  top: 120px;
}

.owner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.owner-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--forest);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
}
.owner-name { font-size: 1.3rem; margin-bottom: 0.25rem; }
.owner-title { color: var(--stone); font-size: 0.875rem; }
.owner-card hr { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }

.stat-list { display: flex; flex-direction: column; gap: 0.75rem; }
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.stat-row .stat-label { color: var(--stone); }
.stat-row .stat-value { font-weight: 600; color: var(--charcoal); }

.top-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--forest);
  color: var(--white);
  padding: 0.4rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 1rem;
}

.about-body { max-width: none; }
.about-body h2 { margin-bottom: 1.25rem; }
.about-body p { color: var(--stone); margin-bottom: 1.25rem; font-size: 1.05rem; }
.about-body p:last-child { margin-bottom: 0; }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.cred-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.cred-card svg { color: var(--forest); flex-shrink: 0; }

/* === PAYMENT METHODS === */
.payment-section { background: var(--cream-mid); }

.payment-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.payment-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}
.payment-badge svg { color: var(--forest); }

/* === CTA BAND === */
.cta-band {
  background: var(--forest);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.cta-band::after {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.cta-band .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin: 0 auto 2rem;
  max-width: 50ch;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === PAGE HERO === */
.page-hero {
  background: var(--forest-dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 55ch;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--copper-light); }

/* === CONTACT PAGE === */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem 2rem;
}
.info-card h3 { font-size: 1.15rem; margin-bottom: 1.25rem; color: var(--forest); }

.info-row {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.info-row:last-child { border-bottom: none; }
.info-icon {
  width: 36px;
  height: 36px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.info-text { display: flex; flex-direction: column; gap: 0.1rem; }
.info-text .label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone); }
.info-text .value { font-weight: 500; color: var(--charcoal); }
.info-text a:hover { color: var(--forest); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
}
.contact-form-wrap h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.contact-form-wrap .sub { color: var(--stone); font-size: 0.9rem; margin-bottom: 2rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
}
label .req { color: var(--copper); }

input, select, textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26,74,60,0.12);
}
textarea { min-height: 120px; resize: vertical; }

.form-submit { margin-top: 0.5rem; }
.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-submit:hover { background: var(--forest-light); transform: translateY(-2px); }
.btn-submit:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; }

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--stone);
  text-align: center;
  margin-top: 0.875rem;
  line-height: 1.5;
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(26,74,60,0.06);
  border: 1px solid rgba(26,74,60,0.2);
  border-radius: 6px;
  margin-top: 1rem;
}
.form-success h3 { color: var(--forest); margin-bottom: 0.5rem; }
.form-success p { color: var(--stone); font-size: 0.9rem; }

/* === FOOTER === */
.site-footer {
  background: var(--charcoal);
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { max-width: 320px; }
.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-logo-tag { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-desc { font-size: 0.875rem; line-height: 1.65; margin-top: 1rem; margin-bottom: 1.5rem; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--copper-light); }
.footer-phone svg { color: var(--copper-light); }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-links a:focus-visible { outline: 2px solid var(--copper); border-radius: 2px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { color: var(--copper-light); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Hero load animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-label   { animation: fadeInUp 0.6s ease 0.1s both; }
.hero h1      { animation: fadeInUp 0.6s ease 0.25s both; }
.hero-sub     { animation: fadeInUp 0.6s ease 0.4s both; }
.hero-actions { animation: fadeInUp 0.6s ease 0.55s both; }
.hero-trust   { animation: fadeInUp 0.6s ease 0.7s both; }
.hero-image   { animation: fadeIn 0.8s ease 0.3s both; }

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

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 4rem 0; }
  .hero-content::before { display: none; }
  .hero-image { min-height: 280px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-topbar .topbar-right { display: none; }
  .trust-bar .container { gap: 1.25rem; }
  .trust-divider { display: none; }
  section { padding: 3.5rem 0; }
  .hero-content { padding: 3rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .about-credentials { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { max-width: 100%; }
  .cta-band { padding: 3.5rem 0; }
  .about-image-accent { display: none; }
  .contact-form-wrap { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .trust-bar .container { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .payment-grid { gap: 0.75rem; }
  h1 { font-size: 2.2rem; }
}
