/* ============================================
   TOP TIER PLUMBING SERVICES
   Dripping Springs, TX
   Premium plumber aesthetic - dark + gold
   ============================================ */

/* --- Custom Properties --- */
:root {
  --dark: #342e2e;
  --dark-deeper: #2a2424;
  --dark-overlay: rgba(42, 36, 36, 0.85);
  --gold: #c8a96e;
  --gold-light: #d4ba82;
  --gold-dark: #b89a5e;
  --gold-glow: rgba(200, 169, 110, 0.15);
  --cream: #fafafa;
  --warm: #f5f0ea;
  --warm-dark: #ebe3d8;
  --text: #342e2e;
  --text-light: #6b6261;
  --text-lighter: #918786;
  --white: #ffffff;
  --border: #e2dcd4;
  --font-heading: 'Instrument Serif', Georgia, serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(52, 46, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(52, 46, 46, 0.08);
  --shadow-lg: 0 16px 48px rgba(52, 46, 46, 0.12);
  --shadow-gold: 0 8px 24px rgba(200, 169, 110, 0.2);
  --radius: 4px;
  --radius-lg: 8px;
}

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

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

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

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

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 150ms ease;
}

a:hover { color: var(--gold); }

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p + p { margin-top: 1em; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--dark);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 200ms ease;
}
.skip-link:focus {
  top: 16px;
}

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

.container--narrow {
  max-width: 800px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 150ms ease;
  min-height: 48px;
  text-decoration: none;
  line-height: 1.2;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  color: var(--dark);
}
.btn--primary:active {
  transform: translateY(0);
  background: var(--gold-dark);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-1px);
}
.btn--outline:active {
  transform: translateY(0);
}

.btn--dark {
  background: var(--dark);
  color: var(--cream);
}
.btn--dark:hover {
  background: var(--dark-deeper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--cream);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--dark);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark-deeper);
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  transition: background 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled {
  background: rgba(42, 36, 36, 0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text Logo */
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.logo:hover { opacity: 0.9; }
.logo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.logo__top {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 0.08em;
}

.logo__bottom {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }

.nav__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.7);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color 150ms ease, background 150ms ease;
  text-decoration: none;
}
.nav__link:hover,
.nav__link--active {
  color: var(--gold);
}
.nav__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav__cta {
  margin-left: 8px;
  padding: 10px 20px;
  font-size: 13px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 200ms ease;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  position: absolute;
  transition: all 200ms ease;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active span::after { top: 0; transform: rotate(-45deg); }

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 80px;
}

.announcement-bar a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.announcement-bar a:hover {
  color: var(--dark-deeper);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: var(--dark-deeper);
  overflow: hidden;
}

.hero--inner {
  min-height: 60vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 36, 36, 0.92) 0%,
    rgba(42, 36, 36, 0.7) 50%,
    rgba(42, 36, 36, 0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 0 80px;
}

.hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 2px;
}

.hero__title {
  color: var(--cream);
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
}

.hero__title span {
  color: var(--gold);
}

.hero__subtitle {
  color: rgba(250, 250, 250, 0.8);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

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

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
}
.hero__phone:hover { color: var(--gold); }
.hero__phone svg { flex-shrink: 0; }

/* --- Section Base --- */
.section {
  padding: 96px 0;
}

.section--dark {
  background: var(--dark);
  color: var(--cream);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--cream);
}

.section--warm {
  background: var(--warm);
}

.section--cream {
  background: var(--cream);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__title {
  margin-bottom: 16px;
}

.section__subtitle {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section--dark .section__subtitle {
  color: rgba(250, 250, 250, 0.65);
}

/* --- About Intro (Homepage) --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-intro__content {
  max-width: 520px;
}

.about-intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.about-intro__credentials {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}

.credential svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease-smooth), box-shadow 300ms var(--ease-smooth);
}

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

.service-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-smooth);
}

.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 24px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap 150ms ease, color 150ms ease;
}
.service-card__link:hover {
  gap: 10px;
  color: var(--gold);
}

/* --- Services Page Full Grid --- */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 300ms var(--ease-smooth), box-shadow 300ms var(--ease-smooth), border-color 300ms ease;
  display: flex;
  gap: 24px;
}

.service-full-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.service-full-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--gold-glow);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.service-full-card__content {
  flex: 1;
}

.service-full-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.service-full-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.service-full-card__points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-full-card__points li {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-dark);
  background: var(--gold-glow);
  padding: 4px 12px;
  border-radius: 20px;
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 32px 16px;
}

.why-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 300ms var(--ease-smooth), box-shadow 300ms var(--ease-smooth);
}

.why-card:hover .why-card__icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-card__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  padding: 48px 0;
}

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

.trust-item__icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 169, 110, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.section--dark .trust-item__icon {
  background: rgba(200, 169, 110, 0.1);
}

.trust-item__text {
  font-size: 14px;
  line-height: 1.4;
}

.trust-item__value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  display: block;
}

.section--dark .trust-item__value {
  color: var(--gold);
}

/* --- Service Area / Map --- */
.map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.map-container {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  padding: 10px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 150ms ease;
}

.area-list li:hover {
  border-color: var(--gold);
}

.area-list li svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(200, 169, 110, 0.08) 0%,
    transparent 70%
  );
}

.cta-section h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(250, 250, 250, 0.7);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

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

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-info__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-lighter);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-info__value a {
  color: var(--text);
  text-decoration: none;
  transition: color 150ms ease;
}
.contact-info__value a:hover { color: var(--gold); }

.form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  -webkit-appearance: none;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

.form__submit {
  width: 100%;
}

#form-status {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  display: none;
}

#form-status.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

#form-status.error {
  display: block;
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark);
  text-align: left;
  transition: color 150ms ease;
  min-height: 48px;
}

.faq-question:hover { color: var(--gold-dark); }
.faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 300ms var(--ease-smooth);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 300ms var(--ease-smooth);
}

.faq-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-smooth), padding 400ms var(--ease-smooth);
}

.faq-answer__inner {
  padding-bottom: 24px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* --- About Page --- */
.about-hero {
  padding-top: 160px;
  padding-bottom: 80px;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story__image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.about-story__body h2 {
  margin-bottom: 24px;
}

.about-story__body p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.team-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.team-card__title {
  font-size: 14px;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.team-card__bio {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark-deeper);
  color: rgba(250, 250, 250, 0.6);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(200, 169, 110, 0.12);
}

.footer-col__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(250, 250, 250, 0.6);
  font-size: 15px;
  transition: color 150ms ease, padding-left 150ms ease;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(250, 250, 250, 0.6);
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 250, 0.5);
  transition: all 150ms ease;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  background: var(--dark);
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  color: var(--cream);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(250, 250, 250, 0.65);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.page-hero .section__label {
  color: var(--gold);
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms var(--ease-smooth), transform 600ms var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 600ms var(--ease-smooth), transform 600ms var(--ease-smooth);
}
.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 600ms var(--ease-smooth), transform 600ms var(--ease-smooth);
}
.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease-smooth), transform 500ms var(--ease-smooth);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Hero animations */
.hero__content .hero__label { animation: fadeUp 600ms var(--ease-smooth) 100ms both; }
.hero__content .hero__title { animation: fadeUp 600ms var(--ease-smooth) 200ms both; }
.hero__content .hero__subtitle { animation: fadeUp 600ms var(--ease-smooth) 350ms both; }
.hero__content .hero__actions { animation: fadeUp 600ms var(--ease-smooth) 500ms both; }

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

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

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal--left, .reveal--right,
  .stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .services-full-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .section { padding: 64px 0; }

  .menu-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--dark-deeper);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-110%);
    transition: transform 300ms var(--ease-smooth);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    z-index: 999;
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav__link {
    padding: 12px 16px;
    width: 100%;
    text-align: center;
    font-size: 16px;
  }

  .nav__cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .hero { min-height: 70vh; }
  .hero__content { padding: 100px 0 60px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .about-intro,
  .about-story,
  .map-section,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-bar {
    gap: 24px;
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .map-container { height: 300px; }

  .service-full-card {
    flex-direction: column;
  }

  .area-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { min-height: 60vh; }
  .why-grid { grid-template-columns: 1fr; }
  .form { padding: 24px; }
  .about-intro__credentials { flex-direction: column; gap: 12px; }
}

/* --- Leaflet Override --- */
.leaflet-container {
  font-family: var(--font-body);
}
