/* ==============================================
   SOVERN & SON PAINTING, LLC
   Stuart, FL — Family-Owned Painting Company

   Palette:
     --bg:          #FAF8F5  (warm white)
     --bg-alt:      #F2EFEA  (slightly darker warm)
     --gray:        #E8E4DF  (soft gray)
     --gray-dark:   #B8B2AA  (muted)
     --teal:        #2A7C7B  (primary)
     --teal-light:  #D4EBE8  (tint)
     --teal-dark:   #1E5A59  (shade)
     --terracotta:  #C4694A  (accent)
     --terra-light: #F0D4C6  (tint)
     --sage:        #7B9E7B  (tertiary)
     --sage-light:  #D4E8D4  (tint)
     --charcoal:    #2D2926  (text)
     --dark:        #1E1C1A  (footer)
     --white:       #FFFFFF

   Fonts:
     Headings: Lora (serif, classic craftsmanship)
     Body:     Inter (sans-serif, clean readability)
     Accent:   Caveat (handwritten, personal touch)
   ============================================== */

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

:root {
  --bg: #FAF8F5;
  --bg-alt: #F2EFEA;
  --gray: #E8E4DF;
  --gray-dark: #B8B2AA;
  --teal: #2A7C7B;
  --teal-light: #D4EBE8;
  --teal-dark: #1E5A59;
  --teal-bg: rgba(42, 124, 123, 0.08);
  --terracotta: #C4694A;
  --terra-light: #F0D4C6;
  --sage: #7B9E7B;
  --sage-light: #D4E8D4;
  --charcoal: #2D2926;
  --dark: #1E1C1A;
  --white: #FFFFFF;
  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Caveat', cursive;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(45, 41, 38, 0.06);
  --shadow-lg: 0 8px 40px rgba(45, 41, 38, 0.10);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}


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


/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

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

em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--teal);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.05rem;
  color: #5a5550;
  max-width: 600px;
  line-height: 1.75;
}

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

.section-header .section-description {
  margin: 0 auto;
}


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

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

.btn--primary:hover {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(42, 124, 123, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--gray);
}

.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

.btn--white {
  background-color: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}

.btn--white:hover {
  background-color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

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

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

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}


/* ---------- Animations ---------- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes drawStroke {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes paintDrip {
  0% { transform: translateY(0); opacity: 0.6; }
  100% { transform: translateY(20px); opacity: 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes scrollDot {
  0% { top: 4px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}


/* ==============================================
   NAVIGATION
   ============================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.nav--scrolled {
  height: 64px;
  background-color: rgba(250, 248, 245, 0.95);
  border-bottom-color: var(--gray);
  box-shadow: 0 2px 20px rgba(45, 41, 38, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  flex-shrink: 0;
}

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

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal);
}

.logo__name em {
  font-style: italic;
  color: var(--terracotta);
}

.logo__sub {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--gray-dark);
  letter-spacing: 0.5px;
}

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

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #5a5550;
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--teal);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--teal);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__cta {
  font-size: 0.85rem;
  padding: 10px 22px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background-color: var(--bg);
  border-bottom: 1px solid var(--gray);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  transform: translateY(-110%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__link {
  display: block;
  padding: 12px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.mobile-menu__link:hover {
  background-color: var(--teal-bg);
  color: var(--teal);
}

.mobile-menu__cta {
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}


/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
  background-color: var(--bg);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42, 124, 123, 0.12) 0%, transparent 70%);
  top: 5%;
  left: -10%;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 105, 74, 0.10) 0%, transparent 70%);
  top: 20%;
  right: -8%;
}

.hero__orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(123, 158, 123, 0.10) 0%, transparent 70%);
  bottom: 10%;
  left: 30%;
}

.hero__brush {
  position: absolute;
  pointer-events: none;
}

.hero__brush--top {
  top: 15%;
  left: 0;
  width: 50%;
  height: auto;
}

.hero__brush--bottom {
  bottom: 20%;
  right: 0;
  width: 40%;
  height: auto;
}

.brush-stroke {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawStroke 2.5s ease-out forwards;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 60px 0 40px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--teal);
  background-color: var(--teal-bg);
  border: 1px solid rgba(42, 124, 123, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero__title {
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__description {
  font-size: 1.1rem;
  color: #5a5550;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__illustration {
  width: 100%;
  max-width: 460px;
  height: auto;
}

.paint-streak {
  animation: fadeSlideUp 1.5s ease-out 0.5s both;
}

.paint-drip--1 {
  animation: paintDrip 2s ease-in infinite;
  animation-delay: 0.5s;
}

.paint-drip--2 {
  animation: paintDrip 2s ease-in infinite;
  animation-delay: 1.2s;
}

.swatch--1 {
  animation: float 5s ease-in-out infinite;
}

.swatch--2 {
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}

.swatch--3 {
  animation: float 4.5s ease-in-out infinite;
  animation-delay: 2s;
}

/* Stats Bar */
.hero__stats {
  position: relative;
  margin-top: 20px;
  padding-bottom: 40px;
}

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  box-shadow: var(--shadow);
}

.stats-bar__divider {
  width: 1px;
  height: 40px;
  background-color: var(--gray);
}

.stat {
  text-align: center;
}

.stat__number, .stat__text {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--teal);
  line-height: 1;
}

.stat__suffix {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--terracotta);
}

.stat__label {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-dark);
  margin-top: 6px;
  font-weight: 500;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  position: relative;
  width: 2px;
  height: 32px;
  background-color: var(--gray);
  border-radius: 2px;
  overflow: hidden;
}

.hero__scroll-dot {
  position: absolute;
  width: 4px;
  height: 8px;
  background-color: var(--teal);
  border-radius: 4px;
  left: -1px;
  animation: scrollDot 1.8s ease-in-out infinite;
}


/* ==============================================
   ABOUT SECTION
   ============================================== */
.about {
  padding: 100px 0;
  background-color: var(--bg);
}

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

.about__content .section-title {
  margin-bottom: 24px;
}

.about__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--teal-dark);
  border-left: 3px solid var(--terracotta);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.7;
}

.about__content p {
  color: #5a5550;
  margin-bottom: 16px;
}

/* Owner Card */
.about__card {
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.about__card-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.about__card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--gray) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 500;
}

.about__card-info {
  padding: 20px;
}

.about__card-info h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.about__card-role {
  display: block;
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.about__card-info p {
  font-size: 0.9rem;
  color: #5a5550;
  line-height: 1.65;
}

/* Values */
.about__values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.about__value:hover {
  border-color: var(--teal-light);
  transform: translateX(4px);
}

.about__value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--teal-bg);
  color: var(--teal);
  border-radius: var(--radius);
}

.about__value strong {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.about__value span {
  font-size: 0.82rem;
  color: var(--gray-dark);
}


/* ==============================================
   SERVICES SECTION
   ============================================== */
.services {
  position: relative;
  padding: 100px 0;
  background-color: var(--bg-alt);
}

.services__brush {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  pointer-events: none;
}

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

.service-card {
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--terracotta));
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}

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

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--teal-bg);
  color: var(--teal);
  border-radius: var(--radius);
  margin-bottom: 18px;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background-color: var(--teal);
  color: var(--white);
}

.service-card__title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card__description {
  font-size: 0.9rem;
  color: #5a5550;
  line-height: 1.65;
  margin-bottom: 14px;
  flex-grow: 1;
}

.service-card__features {
  margin-bottom: 18px;
}

.service-card__features li {
  font-size: 0.82rem;
  color: #5a5550;
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--teal);
  border-radius: 50%;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: auto;
  transition: all var(--transition);
}

.service-card__cta:hover {
  color: var(--teal-dark);
  gap: 10px;
}


/* ==============================================
   PROCESS SECTION
   ============================================== */
.process {
  padding: 100px 0;
  background-color: var(--bg);
}

.process__timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.process__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background-color: var(--gray);
}

.process__step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}

.process__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--teal);
  background-color: var(--white);
  border: 2px solid var(--teal-light);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}

.process__step:hover .process__number {
  background-color: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.process__content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.process__content p {
  font-size: 0.95rem;
  color: #5a5550;
  line-height: 1.7;
}


/* ==============================================
   GALLERY SECTION
   ============================================== */
.gallery {
  padding: 100px 0;
  background-color: var(--bg-alt);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover .gallery__placeholder {
  transform: scale(1.05);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 28, 26, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  background-color: rgba(42, 124, 123, 0.25);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
  width: fit-content;
}

.gallery__caption {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
}


/* ==============================================
   WHY CHOOSE US
   ============================================== */
.why {
  padding: 100px 0;
  background-color: var(--dark);
  color: var(--white);
}

.why .section-tag {
  color: var(--terracotta);
}

.why .section-title {
  color: var(--white);
}

.why .section-title em {
  color: var(--teal-light);
}

.why .section-description {
  color: var(--gray-dark);
}

.why__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.why__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.why__card {
  padding: 22px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.why__card:hover {
  background-color: rgba(42, 124, 123, 0.1);
  border-color: rgba(42, 124, 123, 0.3);
}

.why__card-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--terracotta);
  margin-bottom: 8px;
  opacity: 0.6;
}

.why__card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.why__card p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* Service Areas */
.why__areas h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 20px;
}

.why__area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  transition: all var(--transition);
  cursor: default;
}

.area-tag:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  background-color: rgba(42, 124, 123, 0.15);
}


/* ==============================================
   TESTIMONIALS
   ============================================== */
.testimonials {
  padding: 100px 0;
  background-color: var(--bg);
}

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

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.testimonial-card--featured {
  background-color: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 18px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #5a5550;
  flex-grow: 1;
  margin-bottom: 24px;
}

.testimonial-card--featured .testimonial-card__text {
  color: var(--gray);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  flex-shrink: 0;
}

.testimonial-card--featured .testimonial-card__avatar {
  background: linear-gradient(135deg, var(--terracotta), #a05538);
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.testimonial-card--featured .testimonial-card__author strong {
  color: var(--white);
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--gray-dark);
}


/* ==============================================
   CTA BANNER
   ============================================== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, #358685 100%);
  overflow: hidden;
}

.cta-banner__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='white' opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.cta-banner__inner {
  position: relative;
  text-align: center;
  z-index: 1;
}

.cta-banner__inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__inner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}


/* ==============================================
   CONTACT SECTION
   ============================================== */
.contact {
  padding: 100px 0;
  background-color: var(--bg-alt);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* Info Card */
.contact__info-card {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2724 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  margin-bottom: 20px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
}

.contact__info-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(42, 124, 123, 0.2);
  color: var(--teal-light);
  border-radius: var(--radius);
}

.contact__info-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact__info-item span,
.contact__info-item a {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.contact__info-item a:hover {
  color: var(--teal-light);
}

/* Map placeholder */
.contact__map {
  margin-bottom: 20px;
}

.contact__map-placeholder {
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact__map-placeholder span {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--charcoal);
}

.contact__map-placeholder small {
  font-size: 0.78rem;
  color: var(--gray-dark);
}

/* Service areas in contact */
.contact__areas h4 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.contact__area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag--sm {
  font-size: 0.78rem;
  padding: 5px 12px;
  border-color: var(--gray);
  color: #5a5550;
}

.area-tag--sm:hover {
  border-color: var(--teal);
  color: var(--teal);
  background-color: var(--teal-bg);
}

/* Contact Form */
.contact__form-wrapper {
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form__title {
  font-size: 1.3rem;
  margin-bottom: 28px;
  text-align: center;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form__field {
  margin-bottom: 16px;
}

.contact-form__field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.required {
  color: var(--terracotta);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background-color: var(--bg);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--teal);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(42, 124, 123, 0.1);
  outline: none;
}

.contact-form__field input.error,
.contact-form__field select.error,
.contact-form__field textarea.error {
  border-color: #d9534f;
}

.contact-form__error {
  display: block;
  font-size: 0.78rem;
  color: #d9534f;
  margin-top: 4px;
  min-height: 18px;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23B8B2AA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  margin-top: 8px;
  position: relative;
}

.contact-form__submit-loading {
  display: none;
}

.contact-form__submit-loading svg {
  animation: spin 1s linear infinite;
}

.contact-form__submit.is-loading .contact-form__submit-text {
  visibility: hidden;
}

.contact-form__submit.is-loading .contact-form__submit-loading {
  display: block;
  position: absolute;
}

/* Success State */
.contact-form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.contact-form__success.is-visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeSlideUp 0.5s ease-out;
}

.contact-form__success h4 {
  font-size: 1.3rem;
  color: var(--teal);
}

.contact-form__success p {
  font-size: 0.95rem;
  color: #5a5550;
  max-width: 400px;
  line-height: 1.7;
}


/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background-color: var(--dark);
  color: var(--gray-dark);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo--light .logo__name {
  color: var(--white);
}

.logo--light .logo__sub {
  color: var(--gray-dark);
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  color: var(--gray-dark);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--gray-dark);
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  background-color: rgba(42, 124, 123, 0.15);
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links nav a {
  font-size: 0.88rem;
  color: var(--gray-dark);
  transition: color var(--transition);
}

.footer__links nav a:hover {
  color: var(--teal-light);
}

.footer__contact address p,
.footer__contact address a {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer__contact address a:hover {
  color: var(--teal-light);
}

.footer__hours {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Bottom Bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.8rem;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a:hover {
  color: var(--teal-light);
}


/* ==============================================
   BACK TO TOP
   ============================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(42, 124, 123, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--teal-dark);
  transform: translateY(-2px);
}


/* ==============================================
   RESPONSIVE
   ============================================== */

/* Tablet */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 40px 0 24px;
  }

  .hero__description {
    margin: 0 auto 32px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__illustration {
    max-width: 380px;
  }

  .stats-bar {
    gap: 24px;
    padding: 24px 20px;
    flex-wrap: wrap;
  }

  .stats-bar__divider {
    display: none;
  }

  .stat {
    flex: 1 1 calc(50% - 24px);
    min-width: 120px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

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

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .footer__brand {
    grid-column: span 2;
  }

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

/* Mobile */
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 24px;
  }

  .hero__inner {
    padding: 32px 0 16px;
  }

  .hero__badge {
    font-size: 0.88rem;
  }

  .hero__illustration {
    max-width: 300px;
  }

  .hero__scroll {
    display: none;
  }

  .stats-bar {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .stat {
    flex: unset;
  }

  .about,
  .services,
  .process,
  .gallery,
  .why,
  .testimonials,
  .contact {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .about__quote {
    font-size: 1rem;
  }

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

  .process__line {
    left: 24px;
  }

  .process__number {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .gallery__overlay {
    opacity: 1;
  }

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

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .contact__form-wrapper {
    padding: 24px;
  }

  .cta-banner {
    padding: 56px 0;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__legal {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}


/* ---------- Print Styles ---------- */
@media print {
  .nav,
  .hero__orb,
  .hero__brush,
  .hero__scroll,
  .cta-banner,
  .back-to-top,
  .mobile-menu,
  .btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
  }
}
