/* ===========================
   ROCÍO CABRALES — PORTFOLIO
   Crème · Terracotta · Sauge
   =========================== */

:root {
  --bg:          #faf7f2;
  --bg-2:        #f3ede4;
  --bg-3:        #ede5d8;
  --terra:       #c97b5a;
  --terra-light: #dda080;
  --terra-dark:  #a85e3f;
  --sage:        #7a8c6e;
  --sage-light:  #9aab8e;
  --cream:       #faf7f2;
  --dark:        #2c2416;
  --text:        #3d3228;
  --text-muted:  #8a7d6e;
  --border:      rgba(201,123,90,0.18);
  --border-sage: rgba(122,140,110,0.2);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --radius:      8px;
  --transition:  0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

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

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; }
em { font-style: italic; color: var(--terra); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  color: var(--dark);
}

/* ===== LAYOUT ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
section { padding: 7rem 0; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 2.5rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(201,123,90,0.08);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.01em;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--terra); }

.nav-cta {
  color: var(--terra) !important;
  border: 1.5px solid var(--terra) !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 50px !important;
  transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
  background: var(--terra) !important;
  color: white !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 2.5rem 5rem;
  overflow: hidden;
  background: var(--dark);
}

/* VIDEO HERO */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,10,8,0.82) 0%,
    rgba(13,10,8,0.55) 50%,
    rgba(13,10,8,0.3) 100%
  );
}

/* Placeholder quand pas de vidéo */
.hero-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1208 0%, #2a1a0e 40%, #1a2210 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(250,247,242,0.25);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
}

.hero-video-icon { font-size: 3rem; opacity: 0.4; }

.hero-video-placeholder-inner small {
  font-size: 0.72rem;
  font-family: monospace;
  background: rgba(255,255,255,0.06);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  display: block;
  margin-top: 0.3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 30%, rgba(201,123,90,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(122,140,110,0.1) 0%, transparent 50%);
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1;
}

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

/* Texte sur fond vidéo = blanc */
.hero-video .hero-eyebrow { color: var(--terra-light); }
.hero-video .hero-title { color: #f0ece4; }
.hero-video .hero-title em { color: var(--terra-light); }
.hero-video .hero-sub { color: rgba(240,236,228,0.75); }
.hero-video .hero-scroll { color: rgba(240,236,228,0.5); }
.hero-video .btn-ghost {
  color: #f0ece4;
  border-color: rgba(240,236,228,0.35);
}
.hero-video .btn-ghost:hover {
  border-color: var(--terra-light);
  color: var(--terra-light);
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.08;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--terra);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.4; width: 40px; }
  50%      { opacity: 1;   width: 60px; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background: var(--terra);
  color: white;
}

.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,123,90,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(61,50,40,0.25);
}

.btn-ghost:hover {
  border-color: var(--terra);
  color: var(--terra);
}

.btn-sage {
  background: var(--sage);
  color: white;
}

.btn-sage:hover { background: var(--sage-light); transform: translateY(-2px); }

.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.78rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== STATEMENT ===== */
.statement {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.statement-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

.statement-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.5rem;
}

.statement-big {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.statement-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.statement-langs {
  display: flex;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--sage);
  font-weight: 500;
}

/* ===== SERVICES ===== */
.services { background: var(--bg); }

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

.service-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
  border-radius: 16px 16px 0 0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201,123,90,0.12);
  border-color: rgba(201,123,90,0.35);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(201,123,90,0.15);
  line-height: 1;
  font-style: italic;
  transition: color 0.3s;
}

.service-card:hover .service-card-num { color: rgba(201,123,90,0.3); }

.service-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-card-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--terra);
  margin-top: auto;
}

.service-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(122,140,110,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  align-self: flex-start;
}

/* ===== PROOF ===== */
.proof {
  padding: 5rem 0;
  background: var(--terra);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.proof-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.proof-item:last-child { border-right: none; }

.proof-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: white;
  line-height: 1;
}

.proof-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ===== WORK PREVIEW ===== */
.work-preview { background: var(--bg-2); }

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

.work-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201,123,90,0.12);
}

.work-card-visual { aspect-ratio: 16/9; overflow: hidden; }

.work-card-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(250,247,242,0.6);
}

.ugc-placeholder     { background: linear-gradient(135deg, #c97b5a 0%, #a85e3f 100%); }
.montage-placeholder { background: linear-gradient(135deg, #7a8c6e 0%, #5a6e50 100%); }
.voyage-placeholder  { background: linear-gradient(135deg, #b8956a 0%, #c97b5a 100%); }

.work-card-info { padding: 1.5rem; }

.work-card-cat {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 0.5rem;
}

.work-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--dark);
}

/* ===== CALLOUT ===== */
.callout {
  background: var(--sage);
}

.callout-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.callout-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  display: block;
}

.callout-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 1.5rem;
}

.callout-body {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.callout-links { display: flex; gap: 1rem; justify-content: center; }

.callout .btn-ghost {
  color: white;
  border-color: rgba(255,255,255,0.4);
}

.callout .btn-ghost:hover {
  border-color: white;
  color: white;
  background: rgba(255,255,255,0.12);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.contact-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.contact-body {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-link {
  color: var(--terra);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.3s;
}

.contact-link:hover { opacity: 0.7; }

.contact-socials { display: flex; gap: 1.5rem; }

.contact-socials a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-socials a:hover { color: var(--terra); }

/* Form */
.contact-form-wrap { display: flex; flex-direction: column; gap: 1rem; }

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

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terra); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.5; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(250,247,242,0.4);
  letter-spacing: 0.06em;
}

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 10rem 2.5rem 5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 20%, rgba(201,123,90,0.1) 0%, transparent 55%);
}

.page-hero-content { position: relative; max-width: 760px; }

.page-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.3s;
}

.page-hero-back:hover { color: var(--terra); }

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ===== PROCESS ===== */
.process { background: var(--bg-2); border-top: 1px solid var(--border); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-step {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
}

.process-step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--terra);
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1;
  opacity: 0.4;
}

.process-step h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== DELIVERABLES ===== */
.deliverables { background: var(--bg); }

.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: white;
}

.deliverable-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.deliverable-item:last-child { border-bottom: none; }
.deliverable-item:hover { background: var(--bg); }

.deliverable-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--dark);
}

.deliverable-tag {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(201,123,90,0.1);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
}

/* ===== PRICING ===== */
.pricing { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201,123,90,0.12);
  border-color: rgba(201,123,90,0.35);
}

.pricing-card-featured {
  border-color: var(--terra);
  box-shadow: 0 16px 40px rgba(201,123,90,0.14);
}

.pricing-card-badge {
  position: absolute;
  top: -0.9rem;
  left: 2rem;
  background: var(--terra);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}

.pricing-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(122,140,110,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  align-self: flex-start;
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark);
}

.pricing-card-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-muted);
}

.pricing-card-price span {
  font-size: 2rem;
  color: var(--terra-dark);
  font-weight: 700;
}

.pricing-card-price small {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 1.3rem;
  position: relative;
}

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-weight: 700;
}

.pricing-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===== GALLERY (vidéos exemples par catégorie) ===== */
.gallery { background: var(--bg-2); }

.gallery-track {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-track::-webkit-scrollbar { height: 6px; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.gallery-track::-webkit-scrollbar-track { background: transparent; }

.gallery-item {
  flex: 0 0 220px;
  scroll-snap-align: start;
}

.gallery-item-visual {
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--terra-light) 0%, var(--terra-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(250,247,242,0.85);
  text-align: center;
  padding: 0 1rem;
}

.gallery-play-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.gallery-item-placeholder small {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.gallery-item-caption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.gallery-hint {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid, .work-grid, .proof-grid, .process-grid, .pricing-grid { grid-template-columns: 1fr; }
  .statement-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
}

@media (max-width: 700px) {
  section { padding: 4rem 0; }
  .nav { padding: 1.2rem 1.5rem; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(250,247,242,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: var(--dark); }
  .nav-toggle { display: flex; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .container { padding: 0 1.5rem; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .callout-links { flex-direction: column; }
}
