/* ============================================================
   Golden Years Dental — styles.css
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-bright: #D4AF37;
  --gold-light:  #F0D080;
  --gold-pale:   #F5E6B8;
  --cream:       #FDFAF3;
  --cream-warm:  #F7F0E0;
  --dark:        #1A1209;
  --dark-text:   #2C2415;
  --muted:       #7A6845;
  --white:       #FFFFFF;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:      12px;
  --shadow-card: 0 8px 40px rgba(44, 36, 21, 0.10);
  --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.25);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ────────────────────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Scroll Animations ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.stagger-1 { transition-delay: 0ms; }
.stagger-2 { transition-delay: 120ms; }
.stagger-3 { transition-delay: 240ms; }
.stagger-4 { transition-delay: 360ms; }
.stagger-5 { transition-delay: 480ms; }
.stagger-6 { transition-delay: 600ms; }
.stagger-7 { transition-delay: 720ms; }
.stagger-8 { transition-delay: 840ms; }

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes border-shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@keyframes pulse-line {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold-light) 100%);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-submit {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold-light) 100%);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.82rem;
  border-radius: 6px;
  font-weight: 700;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.55);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease,
              box-shadow 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: rgba(253, 250, 243, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(44, 36, 21, 0.09);
  padding: 0.85rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.35));
  transition: filter var(--transition);
}

.nav-logo:hover img {
  filter: drop-shadow(0 4px 14px rgba(201, 168, 76, 0.6));
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  transition: color 0.4s ease;
}

.nav.scrolled .nav-logo-text {
  color: var(--dark-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .hamburger span { background: var(--dark-text); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--cream);
  z-index: 999;
  padding: 6rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 8px 40px rgba(44, 36, 21, 0.15);
  transform: translateY(-110%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-drawer a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--dark-text);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: color var(--transition);
}

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

.nav-drawer .drawer-cta {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 18, 9, 0.55) 0%,
    rgba(26, 18, 9, 0.50) 50%,
    rgba(26, 18, 9, 0.75) 100%
  );
}

#particle-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 840px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.3s forwards;
  text-shadow: 0 1px 12px rgba(26, 18, 9, 0.6);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.55s forwards;
  text-shadow: 0 2px 24px rgba(26, 18, 9, 0.7);
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.90);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.8s forwards;
  text-shadow: 0 1px 14px rgba(26, 18, 9, 0.65);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 1.05s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 1.4s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}

.hero-scroll-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════ */
.about {
  background: var(--cream);
  padding: 7rem 0;
}

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

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.15;
  margin: 0.75rem 0 1.5rem;
}

.about-text p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

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

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

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

.stat-icon {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
}

.stat-label {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.35rem;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════
   WHY PARTNER
═══════════════════════════════════════════════════════════════ */
.why {
  background: var(--dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-header .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.why-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

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

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.why-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(212, 175, 55, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.why-desc {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
}

.why-number {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.07);
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════ */
.services {
  background: var(--cream-warm);
  padding: 7rem 0;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.services-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.services-header p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.75;
}

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

.service-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.service-icon {
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.4rem;
}

.service-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE LOCATIONS
═══════════════════════════════════════════════════════════════ */
.locations {
  background: var(--cream);
  padding: 7rem 0;
}

.locations-header {
  text-align: center;
  margin-bottom: 4rem;
}

.locations-header .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.locations-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.locations-header p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.75;
}

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

.location-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.location-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.location-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
}

/* ═══════════════════════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════════════════════ */
.team {
  background: var(--cream);
  padding: 7rem 0;
}

.team-header {
  text-align: center;
  margin-bottom: 4rem;
}

.team-header .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.team-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--dark-text);
}

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

.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.14);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.2);
}

.team-card:hover .team-photo-inner img {
  transform: scale(1.06);
}

.team-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
}

.team-photo-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
}

.team-photo-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.3rem;
}

.team-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact {
  background: var(--dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info .eyebrow {
  display: block;
  margin-bottom: 1.25rem;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
}

.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

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

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: #110D06;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer-logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(201, 168, 76, 0.4));
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 2rem;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

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

.footer-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}

.footer-copy {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.22);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .section-inner { padding: 0 1.25rem; }
  .services-grid { gap: 1rem; }
  .service-card { padding: 1.5rem 1rem; }
  .locations-grid { grid-template-columns: 1fr; gap: 1rem; }
  .location-card { padding: 2rem 1rem; }
  .nav { padding: 1rem 1.25rem; }
  .nav.scrolled { padding: 0.75rem 1.25rem; }
}
