/* ===================================
   CUISINE BRIANCON - LUXE THEME
   =================================== */

/* --- Variables --- */
:root {
  --primary: #1a1a1a;
  --accent: #C9A84C;
  --accent-hover: #B8943F;
  --bg: #FAFAF7;
  --bg-alt: #F5F0E8;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --white: #ffffff;
  --border: #e0dcd4;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 0.25rem;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--primary);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

/* ===================================
   HEADER
   =================================== */
header {
  background-color: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.125rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.03em;
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.85;
  color: var(--white);
}

.logo-accent {
  color: var(--accent);
}

/* Desktop Nav */
nav.desktop-nav {
  display: none;
}

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

nav.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav.desktop-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

nav.desktop-nav a:hover {
  color: var(--accent);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  min-width: 240px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.5rem 0;
  z-index: 100;
  opacity: 0;
  transition: opacity var(--transition);
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.dropdown-content a:hover {
  color: var(--accent);
  background-color: rgba(201, 168, 76, 0.08);
  padding-left: 1.75rem;
}

/* CTA Button in Header */
.btn-primary {
  background-color: var(--accent);
  color: var(--primary);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  transition: all var(--transition);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--primary);
  transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background-color: var(--primary);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 1rem 0;
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav a {
  display: block;
  padding: 0.875rem 2rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--transition);
}

.mobile-nav a:hover {
  color: var(--accent);
  background-color: rgba(201, 168, 76, 0.06);
}

.mobile-dropdown-content {
  padding-left: 1rem;
  background-color: rgba(0,0,0,0.2);
}

.mobile-dropdown-content a {
  font-size: 0.875rem;
  padding: 0.625rem 2rem;
  color: rgba(255,255,255,0.65);
}

/* ===================================
   BREADCRUMB
   =================================== */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.5rem;
  color: var(--text-light);
}

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  font-size: 3.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero .btn-secondary {
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 3rem 1.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.0625rem;
  }
}

/* ===================================
   BUTTONS
   =================================== */
.btn-secondary {
  background-color: transparent;
  color: var(--white);
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  transition: all var(--transition);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-gold {
  background-color: var(--accent);
  color: var(--primary);
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  transition: all var(--transition);
  border: 2px solid var(--accent);
}

.btn-gold:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--primary);
  transform: translateY(-1px);
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-dark {
  background-color: var(--primary);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-full {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Headings */
.section h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent);
  margin: 1rem auto 0;
}

.section-alt h2::after,
.section-dark h2::after {
  background-color: var(--accent);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  color: var(--text-light);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ===================================
   GRID
   =================================== */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===================================
   CARDS
   =================================== */
.card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
  border-bottom: 3px solid var(--accent);
}

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

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.03);
}

.card-body {
  padding: 1.75rem;
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* Legacy card support (cards without card-body wrapper) */
.card > h3 {
  padding: 1.75rem 1.75rem 0;
}

.card > p {
  padding: 0 1.75rem 1.75rem;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonial {
  background-color: var(--bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.7;
  padding-top: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent);
  font-style: normal;
  font-size: 0.9375rem;
}

/* ===================================
   FAQ
   =================================== */
.faq-item {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border-left: 3px solid transparent;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-left-color: var(--accent);
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--accent);
}

/* ===================================
   FORMS
   =================================== */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

button[type="submit"],
.btn-submit {
  background-color: var(--accent);
  color: var(--primary);
  padding: 0.875rem 2.5rem;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

button[type="submit"]:hover,
.btn-submit:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-section h2::after {
  background-color: var(--accent);
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.85;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background-color: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 0;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-top-border {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h4 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  letter-spacing: 0.03em;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.625rem;
}

.footer-column a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--accent);
}

.tel-cta {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin-top: 0.75rem;
  transition: opacity var(--transition);
}

.tel-cta:hover {
  opacity: 0.8;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-bottom p + p {
  margin-top: 0.375rem;
}

/* ===================================
   ZONES D'INTERVENTION
   =================================== */
.zone-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius);
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
}

.zone-card:hover {
  border-bottom-color: var(--accent);
  box-shadow: var(--shadow);
}

.zone-card h4 {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.zone-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===================================
   REALISATION GALLERY
   =================================== */
.realisation-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.realisation-card:hover {
  box-shadow: var(--shadow-hover);
}

.realisation-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.realisation-card:hover img {
  transform: scale(1.05);
}

.realisation-card .card-body {
  padding: 1.5rem;
  background-color: var(--white);
}

/* ===================================
   STATS / FEATURES
   =================================== */
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* ===================================
   DEVIS PAGE
   =================================== */
.devis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.devis-info h2 {
  text-align: left;
}

.devis-info h2::after {
  margin: 1rem 0 0;
}

.devis-info h3 {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.devis-info p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background-color: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.process-step strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.process-step p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.9375rem;
}

.confidence-box {
  background-color: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 2.5rem;
}

.confidence-box h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.confidence-box p {
  margin-bottom: 0;
}

.phone-block {
  margin-top: 2.5rem;
}

.phone-block h3 {
  margin-top: 0;
}

.phone-number {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.5rem 0;
}

.phone-number:hover {
  color: var(--accent-hover);
}

/* Devis Form */
.devis-form-container {
  background-color: var(--primary);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.devis-form-container h2 {
  color: var(--white);
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.devis-form-container h2::after {
  background-color: var(--accent);
  margin: 0.75rem auto 0;
}

.devis-form-container .form-group label {
  color: rgba(255,255,255,0.85);
}

.devis-form-container .form-group input,
.devis-form-container .form-group select,
.devis-form-container .form-group textarea {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.devis-form-container .form-group input:focus,
.devis-form-container .form-group select:focus,
.devis-form-container .form-group textarea:focus {
  border-color: var(--accent);
  background-color: rgba(255,255,255,0.15);
}

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

.devis-form-container .form-group select option {
  background-color: var(--primary);
  color: var(--white);
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.checkbox-group span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.devis-form-container button[type="submit"] {
  width: 100%;
  background-color: var(--accent);
  color: var(--primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--transition);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

.devis-form-container button[type="submit"]:hover {
  background-color: var(--accent-hover);
}

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
}

.tips-box {
  background-color: var(--bg-alt);
  padding: 1.75rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

.tips-box h3 {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.tips-box ul {
  list-style: none;
  padding: 0;
}

.tips-box li {
  padding: 0.4rem 0;
  color: var(--text-light);
  font-size: 0.9375rem;
  padding-left: 1.25rem;
  position: relative;
}

.tips-box li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .devis-grid {
    grid-template-columns: 1fr;
  }
  .devis-form-container {
    padding: 1.75rem;
  }
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===================================
   LAZY LOADING
   =================================== */
img[data-src] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img.loaded {
  opacity: 1;
}

/* ===================================
   UTILITIES
   =================================== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-light { color: var(--text-light); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 2rem; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .section { padding: 3.5rem 1.25rem; }

  .header-container { padding: 1rem 1.25rem; }

  .footer-content { padding: 3rem 1.25rem 1.5rem; }

  .form-container { padding: 2rem 1.5rem; }

  .cta-section { padding: 3.5rem 1.25rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }

  .btn-primary, .btn-secondary, .btn-gold {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
  }
}
