/*
Theme Name: Fine Fit Kitchen Installations
Theme URI: https://www.finefitkitchens.co.uk
Author: Fine Fit Kitchen Installations
Author URI: https://www.finefitkitchens.co.uk
Description: Elegant, sleek bespoke kitchen installation theme for Fine Fit Kitchen Installations, Portsmouth, Hampshire. Dark charcoal, warm cream and brushed gold design system.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: fine-fit-kitchens
Tags: one-page, business, responsive, custom-colors
*/

/* ============================================================
   DESIGN SYSTEM — Fine Fit Kitchen Installations
   Charcoal + Warm Cream + Brushed Gold
   ============================================================ */

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

:root {
  --gold:          hsl(38, 62%, 50%);
  --gold-light:    hsl(42, 70%, 65%);
  --gold-muted:    hsl(38, 30%, 70%);
  --charcoal:      hsl(220, 20%, 14%);
  --charcoal-mid:  hsl(220, 15%, 22%);
  --cream:         hsl(38, 20%, 97%);
  --cream-deep:    hsl(38, 18%, 92%);
  --muted-fg:      hsl(220, 10%, 45%);
  --border-color:  hsl(38, 15%, 85%);
  --shadow-gold:   0 4px 20px hsl(38 62% 50% / 0.35);
  --shadow-card:   0 2px 20px hsl(220 20% 14% / 0.08), 0 0 0 1px hsl(38 15% 85% / 0.6);
  --gradient-hero: linear-gradient(160deg, hsl(220 25% 8% / 0.85) 0%, hsl(220 20% 14% / 0.65) 50%, hsl(38 20% 10% / 0.4) 100%);
}

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.1;
}

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

/* ============================================================
   UTILITIES
   ============================================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}

.btn-gold {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--charcoal);
  padding: 1rem 2rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.btn-gold:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); }

.btn-dark {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--cream);
  padding: 1rem 2rem;
  transition: background 0.3s ease;
}
.btn-dark:hover { background: var(--charcoal-mid); }

.btn-outline {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 230, 0.4);
  color: var(--cream);
  padding: 1rem 2rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.btn-outline:hover { background: rgba(245, 240, 230, 0.1); border-color: rgba(245, 240, 230, 0.7); }

.gold-line::after {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin-top: 1rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

#site-header.scrolled {
  background: var(--charcoal);
  box-shadow: 0 4px 24px hsl(220 20% 5% / 0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.site-logo .logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.site-logo:hover .logo-name { color: var(--gold); }
.site-logo .logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(245, 240, 230, 0.8);
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) { .nav-cta { display: flex; } }

.nav-phone {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}
.nav-phone:hover { color: var(--gold-light); }

.nav-quote {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.625rem 1.25rem;
  transition: background 0.3s ease;
}
.nav-quote:hover { background: var(--gold-light); }

/* Mobile menu */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  transition: color 0.3s ease;
}
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-toggle:hover { color: var(--gold); }

.mobile-menu {
  display: none;
  background: var(--charcoal);
  border-top: 1px solid var(--charcoal-mid);
  padding: 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-menu nav a {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(245, 240, 230, 0.8);
  transition: color 0.3s ease;
}
.mobile-menu nav a:hover { color: var(--gold); }

/* ============================================================
   HERO SECTION
   ============================================================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem 2rem;
  text-align: center;
  animation: fadeUp 0.8s ease-out forwards;
}
@media (min-width: 1024px) { .hero-content { padding: 5rem 2rem 2rem; } }

.hero-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.1s forwards;
}

.hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.25s forwards;
}
.hero-heading em { font-style: normal; color: var(--gold); }

.hero-subheading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245, 240, 230, 0.75);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.4s forwards;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.55s forwards;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 28rem;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.7s forwards;
}
.stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(245, 240, 230, 0.6);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(245, 240, 230, 0.5);
  transition: color 0.3s ease;
  animation: bounce 2s infinite;
}
.scroll-indicator:hover { color: var(--gold); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */

#about {
  padding: 6rem 0;
  background: var(--cream);
}
@media (min-width: 1024px) { #about { padding: 8rem 0; } }

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
@media (min-width: 1024px) { .about-img-wrap img { height: 560px; } }

.about-accent-block {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 10rem; height: 10rem;
  background: hsl(38 62% 50% / 0.1);
  border: 2px solid hsl(38 62% 50% / 0.3);
  z-index: -1;
}
.about-years-badge {
  position: absolute;
  top: -1.25rem; left: -1.25rem;
  background: var(--charcoal);
  padding: 1.25rem;
  box-shadow: 0 12px 40px hsl(220 20% 14% / 0.3);
}
.about-years-badge .years-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-years-badge .years-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(245, 240, 230, 0.7);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.about-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.about-heading em { font-style: normal; color: var(--gold); }

.about-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.features-grid {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.feature-item .check-icon {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.feature-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: hsl(220, 20%, 25%);
}

/* ============================================================
   OUR WORK SECTION
   ============================================================ */

#our-work {
  padding: 6rem 0;
  background: var(--charcoal);
}
@media (min-width: 1024px) { #our-work { padding: 8rem 0; } }

.work-header {
  text-align: center;
  margin-bottom: 4rem;
}
.work-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.work-heading em { font-style: normal; color: var(--gold); }
.work-subheading {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(245, 240, 230, 0.6);
  max-width: 38rem;
  margin: 0 auto;
}

.work-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }

.work-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.work-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-card:hover img { transform: scale(1.08); }

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(220 20% 8% / 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.work-card:hover .work-card-overlay { opacity: 1; }

.work-card-info .card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.work-card-info .card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream);
}

.work-footer {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

#testimonials {
  padding: 6rem 0;
  background: var(--cream-deep);
}
@media (min-width: 1024px) { #testimonials { padding: 8rem 0; } }

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 1rem;
}
.testimonials-heading em { font-style: normal; color: var(--gold); }

.testimonials-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--cream);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.875rem;
}
.testimonial-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-author strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
}
.testimonial-author span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--muted-fg);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

#contact {
  padding: 6rem 0;
  background: var(--cream);
}
@media (min-width: 1024px) { #contact { padding: 8rem 0; } }

.contact-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; } }

.contact-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.contact-heading em { font-style: normal; color: var(--gold); }

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(38 62% 50% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.contact-info-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--charcoal);
  margin-top: 0.15rem;
  transition: color 0.3s ease;
}
a.contact-info-value:hover { color: var(--gold); }

.contact-highlight {
  background: var(--charcoal);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-highlight p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(245, 240, 230, 0.7);
  line-height: 1.65;
}
.contact-highlight strong { color: var(--gold); }

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border-color);
  color: var(--charcoal);
  padding: 0.35rem 0.75rem;
}

/* Form */
.contact-form-wrap {
  background: white;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(220, 15%, 35%);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px hsl(38 62% 50% / 0.1);
}
.form-group textarea { resize: vertical; min-height: 6rem; }
.form-submit {
  margin-top: 1.5rem;
}
.form-submit button {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}
.form-submit button:hover { background: var(--charcoal-mid); }
.form-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 0.75rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */

#site-footer {
  background: var(--charcoal);
  color: var(--cream);
}

.footer-main {
  padding: 5rem 0;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-main { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.footer-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.footer-brand-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(245, 240, 230, 0.6);
  line-height: 1.7;
  max-width: 22rem;
  margin-top: 1rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 2.25rem; height: 2.25rem;
  border: 1px solid rgba(245, 240, 230, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 230, 0.5);
  transition: color 0.3s ease, border-color 0.3s ease;
  font-size: 0.875rem;
}
.social-link:hover { color: var(--gold); border-color: var(--gold); }

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(245, 240, 230, 0.6);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; font-size: 0.875rem; margin-top: 1px; }
.footer-contact-item a,
.footer-contact-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(245, 240, 230, 0.6);
  transition: color 0.3s ease;
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bar {
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bar { flex-direction: row; justify-content: space-between; }
}
.footer-bar p {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(245, 240, 230, 0.4);
}
.footer-bar-links { display: flex; gap: 1rem; }
.footer-bar-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(245, 240, 230, 0.4);
  transition: color 0.3s ease;
}
.footer-bar-links a:hover { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================================================
   WORDPRESS ADMIN BAR OFFSET
   ============================================================ */

.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar #site-header { top: 46px; } }

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

@media (max-width: 767px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-value { font-size: 1.375rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-main { grid-template-columns: 1fr; }
}
