/* ============================================================
   ESPRESSOTRIPLO.COM /en/ — Shared Stylesheet v2
   Design: Refined editorial, warm ivory + gold accent
   Fonts: Cormorant Garamond (serif) + DM Sans (sans)
   ============================================================ */

:root {
  --bg:           #F8F6F1;
  --bg-dark:      #1E1B16;
  --bg-section:   #FFFFFF;
  --bg-accent:    #F2EBE0;
  --text:         #1A1917;
  --text-muted:   #6B6760;
  --text-light:   #9B9590;
  --accent:       #B5924A;
  --accent-dark:  #8A6E33;
  --accent-ondk:  #D4AC6A;   /* gold for use on dark backgrounds */
  --border:       #E5E0D8;
  --border-dark:  #2E2C29;
  --serif:        'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:         'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max:          1060px;
  --radius:       4px;
  --radius-lg:    8px;
}

*, *::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(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; }

.label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

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

/* ── Site Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 241, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1rem;
}

.logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  white-space: nowrap;
}
.logo span { color: var(--accent); }

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--text);
  color: var(--bg) !important;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--accent) !important; }

/* Hamburger button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1.5rem 1rem;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--text); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text); background: var(--text); color: var(--bg); }
.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 6rem 0 5rem; background: var(--bg); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--accent); }
.hero h1 { max-width: 720px; margin-bottom: 1.5rem; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar { background: var(--bg-dark); padding: 1.25rem 0; }
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.0rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgb(255 255 255 / 71%);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.trust-item svg {
  width: 14px; height: 14px;
  stroke: var(--accent-ondk);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.15); }

/* ── Problem Section ─────────────────────────────────────── */
.section-problem {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-intro { max-width: 640px; margin-bottom: 3rem; }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 1rem;
  color: var(--text);
  padding: 1.1rem 1.4rem;
  background: var(--bg-accent);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
}
.pain-list li::before {
  content: '—';
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
  flex-shrink: 0;
}

/* ── Services ────────────────────────────────────────────── */
.section-services { background: var(--bg); }
.services-header { max-width: 580px; margin-bottom: 3rem; }
.service-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(181,146,74,0.08);
}
.service-icon {
  width: 40px; height: 40px;
  background: var(--bg-accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon svg {
  width: 20px; height: 20px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0.8em; }
.service-card p:last-child { margin-bottom: 0; }
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg-accent);
  border: 1px solid rgba(181,146,74,0.2);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  margin-right: 0.4rem;
}
.service-bonus {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.service-bonus strong { color: var(--text); }

/* ── Differentiator (About) ──────────────────────────────── */
.section-about { background: var(--bg-section); }

.about-card {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '"';
  position: absolute;
  top: -1rem; right: 2rem;
  font-family: var(--serif);
  font-size: 12rem;
  color: rgba(212,172,106,0.08);
  line-height: 1;
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.about-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.05) brightness(0.95);
  border: 2px solid rgba(212,172,106,0.4);
  display: block;
}

.about-photo-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgb(255 255 255 / 71%);
  text-align: center;
  line-height: 1.3;
}

.about-card .label { color: var(--accent-ondk); margin-bottom: 1.2rem; display: block; }
.about-card h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1.5rem; color: #fff; }
.about-card p { color: rgba(255,255,255,0.88); font-size: 1.02rem; }
.about-card p strong { color: #fff; }

.about-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.about-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.about-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent-ondk);
  line-height: 1;
}
.about-stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }

/* ── Results ─────────────────────────────────────────────── */
.section-results { background: var(--bg-accent); }
.results-header { max-width: 520px; margin-bottom: 3rem; }
.result-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.result-card img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  cursor: zoom-in;
  transition: opacity 0.2s;
}
.result-card img:hover { opacity: 0.88; }
.result-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,13,11,0.94);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  cursor: zoom-out;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  cursor: default;
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ── FAQ ─────────────────────────────────────────────────── */
.section-faq { background: var(--bg-section); }
.faq-header { max-width: 520px; margin-bottom: 3rem; }
.faq-list { max-width: 740px; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q svg {
  width: 18px; height: 18px;
  stroke: var(--accent); fill: none;
  stroke-width: 2; stroke-linecap: round;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner {
  padding-bottom: 1.4rem;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Contact Form ─────────────────────────────────────────── */
.section-contact { background: var(--bg-dark); color: #fff; }
.contact-header { max-width: 540px; margin-bottom: 3rem; }
.contact-header .label { color: var(--accent-ondk); }
.contact-header h2 { color: #fff; }
.contact-header p { color: rgba(255,255,255,0.65); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 680px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: #fff;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent-ondk); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: rgba(255,255,255,0.07);
}
.form-field select option { background: #1E1B16; color: #fff; }
.form-submit-row {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.form-note { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.btn-submit:hover { background: var(--accent-dark); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 2.5rem 0;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.82rem;
  color: rgb(255 255 255 / 71%);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgb(255 255 255 / 71%); }

/* ── Utility ─────────────────────────────────────────────── */
.divider { width: 48px; height: 2px; background: var(--accent); margin: 1.5rem 0 2rem; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0 2.5rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }

  /* Mobile header */
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .header-right { gap: 0.75rem; }

  .trust-inner { gap: 1.2rem; justify-content: flex-start; }
  .trust-divider { display: none; }

  /* About section mobile */
  .about-card { padding: 2rem 1.5rem; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-photo-col {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
  .about-photo { width: 72px; height: 72px; }
  .about-photo-name { text-align: left; }
  .about-meta { gap: 1.5rem; }
  .about-stat-num { font-size: 1.6rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  .container { padding: 0 1rem; }
  .header-inner { padding: 0 1rem; }
}

/* ============================================================
   ADDITIONS TO main.css — append to bottom of existing file
   Logo + Social Proof section
   ============================================================ */

/* ── Logo in header ──────────────────────────────────────── */
.logo { display: flex; align-items: center; gap: 9px; }

.logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  /* Monochromatic: renders logo in near-black matching text colour */
  filter: brightness(0) opacity(0.82);
  transition: filter 0.2s;
}

.logo:hover .logo-img {
  /* On hover: warm gold tone matching --accent */
  filter: brightness(0) sepia(1) saturate(4) hue-rotate(5deg) opacity(0.9);
}

/* ── Social Proof Section ────────────────────────────────── */
.section-proof {
  background: var(--bg-accent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
}

.proof-header { max-width: 580px; margin-bottom: 3rem; }
.proof-header p { color: var(--text-muted); margin-top: .1rem; }

/* Video */
.proof-video-wrap {
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.proof-video-ratio {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  background: var(--bg-dark);
}

.proof-video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.proof-video-caption {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.proof-more-link {
  color: var(--accent);
  text-decoration: none;
  margin-left: 0.4rem;
  white-space: nowrap;
}
.proof-more-link:hover { text-decoration: underline; }

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

.proof-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.proof-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}

.proof-quote {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.proof-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.proof-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}

.proof-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.proof-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Responsive */
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .proof-grid { grid-template-columns: 1fr; }
  .proof-video-wrap { max-width: 100%; }
  .section-proof { padding: 3.5rem 0; }
}

/* ============================================================
   FIXES — append after all existing CSS in main.css
   1. Logo monochrome on mobile
   2. Logo + name on same line on mobile
   3. Proof section responsive
   ============================================================ */

/* ── Fix 1 & 2: Logo ──────────────────────────────────────── */

/* Force monochrome on all browsers — vendor prefix for mobile */
.logo-img {
  -webkit-filter: brightness(0) opacity(0.82);
          filter: brightness(0) opacity(0.82);
}

/* Prevent logo text from wrapping on any screen size */
.logo {
  flex-wrap: nowrap;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 0;
}

/* On hover: gold tone */
.logo:hover .logo-img {
  -webkit-filter: brightness(0) sepia(1) saturate(4) hue-rotate(5deg) opacity(0.9);
          filter: brightness(0) sepia(1) saturate(4) hue-rotate(5deg) opacity(0.9);
}

/* Small mobile: slightly smaller logo + font to fit in one line */
@media (max-width: 400px) {
  .logo {
    font-size: 1.05rem;
    gap: 6px;
  }
  .logo-img {
    width: 22px;
    height: 22px;
    -webkit-filter: brightness(0) opacity(0.82);
            filter: brightness(0) opacity(0.82);
  }
}

/* ── Fix 3: Proof section — video + cards on mobile ────────── */

/* Video: explicit width + safe iframe positioning */
.proof-video-wrap {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

.proof-video-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  background: var(--bg-dark);
}

/* Replace inset:0 with explicit props — better mobile browser support */
.proof-video-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Mobile proof section — override all breakpoints */
@media (max-width: 768px) {
  .section-proof  { padding: 3rem 0; }
  .proof-header   { margin-bottom: 2rem; }

  .proof-video-wrap {
    max-width: 100%;
    width: 100%;
    margin-bottom: 2rem;
  }

  /* Force single column on all phones */
  .proof-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .proof-card { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .proof-grid   { gap: 1rem; }
  .proof-card   { padding: 1rem 1.1rem; }
}

/* ============================================================
   MOBILE MENU FIXES — append after all existing CSS
   1. Menu open state: better visual contrast
   2. Gold accent border to delineate menu from page content
   ============================================================ */

.mobile-nav.open {
  display: block;
  background: var(--bg-section);          /* #FFF vs ivory page bg */
  border-top: 2px solid var(--accent);    /* gold line at top — clear entry point */
  border-bottom: 2px solid var(--accent); /* gold line at bottom */
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18); /* stronger shadow = clear separation */
}

/* Links slightly darker so they read better on white bg */
.mobile-nav.open a {
  color: var(--text);
}
.mobile-nav.open a:hover {
  color: var(--accent);
}

/* Dividers between links slightly more visible */
.mobile-nav.open a:not(:last-child) {
  border-bottom-color: var(--border);
}
