/* ============================================================
   Bezalel Construction — Compiled Stylesheet
   Source: assets/css/scss/styles.scss
   Recompile: sass assets/css/scss/styles.scss assets/css/styles.css
   Watch:     sass --watch assets/css/scss/styles.scss assets/css/styles.css
   ============================================================ */

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

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --stone:        #1c1916;
  --stone-mid:    #2e2920;
  --stone-light:  #453d33;
  --amber:        #c8862a;
  --amber-light:  #e8a94a;
  --amber-pale:   #f5d99a;
  --amber-muted:  rgba(200, 134, 42, 0.15);
  --cream:        #f5f0e8;
  --cream-mid:    #ebe3d4;
  --cream-dark:   #d6c9b2;
  --text-warm:    #5c5040;
  --text-light:   #8c7d6a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Barlow', sans-serif;
  --font-serif:   'Libre Baskerville', Georgia, serif;
}

/* ============================================================
   BASE RESET & GLOBALS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); background: var(--cream); color: var(--stone); overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { color: inherit; }

/* Language toggle */
[data-lang]                      { display: none; }
.lang-es [data-lang="es"],
.lang-en [data-lang="en"]        { display: block; }
.lang-es [data-lang="es"].inline,
.lang-en [data-lang="en"].inline { display: inline; }

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

section { padding: 100px 0; }

/* Section label */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--amber);
  opacity: 0.4;
}
.section-label--light        { color: var(--amber-light); }
.section-label--light::after { background: var(--amber-light); }
.section-label--center       { justify-content: center; }
.section-label--center::after{ display: none; }

/* Section title */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--stone);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title--light { color: #fff; }

/* Section body */
.section-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-warm);
  line-height: 1.8;
  max-width: 560px;
}
.section-body--light { color: rgba(255, 255, 255, 0.55); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(28, 25, 22, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 32px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--amber-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav { display: flex; gap: 6px; }
.header-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.2s ease;
}
.header-nav a:hover { color: var(--amber-light); }

.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}
.lang-btn.active { background: var(--amber); color: #fff; }

.btn-estimate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: var(--amber);
  color: #fff;
  padding: 10px 20px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-estimate:hover { background: var(--amber-light); transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--stone);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 25, 22, 0.3)  0%,
    rgba(28, 25, 22, 0.1)  40%,
    rgba(28, 25, 22, 0.85) 100%
  );
  z-index: 2;
}
.hero-accent-line {
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--amber));
  z-index: 3;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 4;
  padding: 0 48px 72px;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--amber);
}
.hero-eyebrow span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-headline em { font-style: italic; color: var(--amber-pale); }

.hero-sub {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
  font-style: italic;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: var(--amber);
  color: #fff;
  padding: 16px 36px;
  box-shadow: 0 4px 20px rgba(200, 134, 42, 0.4);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 134, 42, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-secondary:hover {
  border-color: var(--amber-light);
  color: var(--amber-pale);
  transform: translateY(-2px);
}

/* ============================================================
   PHONE BAR
   ============================================================ */
.phone-bar {
  background: var(--amber);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.phone-bar-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.phone-bar-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.phone-bar-number:hover { color: var(--amber-pale); }

/* ============================================================
   ABOUT / STORY
   ============================================================ */
.about-section {
  background: var(--stone);
  position: relative;
  overflow: hidden;
}
.about-section::after {
  content: 'BEZALEL';
  position: absolute;
  top: 50%; right: -40px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.biblical-quote {
  margin-top: 36px;
  padding: 28px 32px;
  border-left: 3px solid var(--amber);
  background: var(--amber-muted);
  border-radius: 0 8px 8px 0;
}
.biblical-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 10px;
}
.biblical-quote cite {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 8px;
  overflow: hidden;
}
.stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 28px;
  text-align: center;
  transition: background 0.2s ease;
}
.stat-box:hover { background: rgba(200, 134, 42, 0.1); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* ============================================================
   WORK / VIDEO GALLERY
   ============================================================ */
.work-section { background: var(--cream-mid); }

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.instagram-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-light);
}
.instagram-note svg { width: 18px; height: 18px; fill: var(--amber); flex-shrink: 0; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(28, 25, 22, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(28, 25, 22, 0.13);
}
.reel-wrap { position: relative; width: 100%; background: var(--stone); }
.reel-wrap iframe,
.reel-wrap blockquote {
  width: 100% !important;
  min-width: unset !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
.video-label {
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-warm);
  display: flex;
  align-items: center;
  gap: 8px;
}
.video-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.view-more { text-align: center; margin-top: 48px; }
.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: var(--stone);
  color: #fff;
  padding: 14px 28px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-instagram svg { width: 18px; height: 18px; fill: #fff; }
.btn-instagram:hover { background: var(--stone-light); transform: translateY(-2px); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.service-card {
  background: var(--cream);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { background: var(--cream-mid); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon  { font-size: 2rem; margin-bottom: 20px; }
.service-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--stone); margin-bottom: 12px; }
.service-desc  { font-family: var(--font-body); font-size: 0.88rem; color: var(--text-warm); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 2px 16px rgba(28, 25, 22, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(28, 25, 22, 0.13);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--amber);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: 16px; left: 24px;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.star { color: var(--amber); font-size: 0.95rem; }

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-warm);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--cream-mid);
  padding-top: 20px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  color: #fff; flex-shrink: 0;
}
.author-name     { font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; color: var(--stone); }
.author-location { font-family: var(--font-body); font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

.testimonial-card.placeholder {
  border: 2px dashed var(--cream-dark);
  background: transparent;
  box-shadow: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 280px;
}
.testimonial-card.placeholder:hover { transform: none; box-shadow: none; }
.testimonial-card.placeholder::before { display: none; }
.placeholder-icon { font-size: 2.5rem; margin-bottom: 16px; opacity: 0.4; }
.placeholder-text { font-family: var(--font-body); font-size: 0.88rem; color: var(--text-light); line-height: 1.65; max-width: 200px; }
.placeholder-text strong { display: block; font-size: 0.95rem; color: var(--text-warm); margin-bottom: 6px; }

.review-cta {
  margin-top: 48px;
  background: var(--stone);
  border-radius: 10px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.review-cta-text h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.review-cta-text p  { font-family: var(--font-body); font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); line-height: 1.5; }
.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--stone);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-google-review:hover { background: var(--cream); transform: translateY(-1px); }
.google-g {
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--stone);
  position: relative;
  overflow: hidden;
}
.contact-section::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 134, 42, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact-item    { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(200, 134, 42, 0.15);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-label {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber-light); margin-bottom: 4px;
}
.contact-item-value {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 500;
  color: #fff; text-decoration: none;
  transition: color 0.2s ease;
}
.contact-item-value:hover { color: var(--amber-pale); }

.contact-form { position: relative; z-index: 2; }
.form-group   { margin-bottom: 16px; }
.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 14px 18px;
  border-radius: 4px;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.form-input option        { background: var(--stone); }
.form-input:focus         { outline: none; border-color: var(--amber); background: rgba(255, 255, 255, 0.1); }
textarea.form-input       { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  background: var(--amber); color: #fff;
  padding: 16px; margin-top: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-submit:hover { background: var(--amber-light); transform: translateY(-1px); }
.form-msg {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--stone-mid);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy { font-family: var(--font-body); font-size: 0.8rem; color: rgba(255, 255, 255, 0.35); }
.footer-copy a { color: var(--amber-light); text-decoration: none; transition: color 0.2s ease; }
.footer-copy a:hover { color: var(--amber-pale); }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none; font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.social-btn:hover { background: var(--amber); color: #fff; }

/* ============================================================
   RESPONSIVE — max-width: 900px
   ============================================================ */
@media (max-width: 900px) {
  .container            { padding: 0 24px; }
  section               { padding: 72px 0; }
  .site-header          { padding: 16px 24px; }
  .site-header.scrolled { padding: 12px 24px; }
  .header-nav           { display: none; }
  .hero-content         { padding: 0 24px 56px; }
  .about-grid           { grid-template-columns: 1fr; gap: 48px; }
  .about-section::after { display: none; }
  .video-grid           { grid-template-columns: 1fr; }
  .services-grid        { grid-template-columns: 1fr; }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .review-cta           { flex-direction: column; text-align: center; padding: 28px 24px; }
  .contact-grid         { grid-template-columns: 1fr; gap: 48px; }
  .form-row             { grid-template-columns: 1fr; }
  .phone-bar            { padding: 16px 24px; gap: 12px; }
  .site-footer          { padding: 32px 24px; flex-direction: column; text-align: center; }
}
