/* ============================================================
   RUN WILD COFFEE — styles.css
   Luxury Editorial Design System
   Palette: #0D0B09 (espresso black) · #C9A96E (champagne gold)
            #F5F0EA (warm cream) · #2C1A0E (deep brown)
            #E8D5C4 (pale blush) · #FFFFFF (white)
   Fonts: Cormorant Garamond (editorial serif) · Inter (clean sans)
   ============================================================ */

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

:root {
  --black:       #0D0B09;
  --deep-brown:  #2C1A0E;
  --gold:        #C9A96E;
  --gold-light:  #E2C99A;
  --cream:       #F5F0EA;
  --blush:       #E8D5C4;
  --tan:         #C4A882;
  --white:       #FFFFFF;
  --text-dark:   #1A1208;
  --text-mid:    #5C4A35;
  --text-light:  #9C8672;

  --font-serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --nav-h:       80px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1200px;
  --radius:      4px;
  --radius-lg:   12px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.hide-mobile { display: inline; }

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }

.gold-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 32px;
}
.gold-rule.centered { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1.5px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-nav {
  background: var(--gold);
  color: var(--black);
  border: 1.5px solid var(--gold);
  padding: 12px 28px;
  font-size: 0.7rem;
}
.btn-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-sm { padding: 12px 24px; font-size: 0.68rem; }
.btn-full { width: 100%; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--deep-brown);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 36px; /* announcement bar height */
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 0 clamp(20px, 4vw, 60px);
}

.navbar.scrolled {
  top: 0;
  background: rgba(13, 11, 9, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.navbar.scrolled .logo-white { opacity: 1; }
.navbar.scrolled .logo-dark  { opacity: 0; }
.navbar.light-mode .logo-white { opacity: 0; }
.navbar.light-mode .logo-dark  { opacity: 1; }
.navbar.light-mode .nav-links a { color: var(--text-dark); }
.navbar.light-mode .btn-nav { background: var(--gold); color: var(--black); }

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.logo-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity var(--transition);
}
.logo-white { opacity: 1; }
.logo-dark  { opacity: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,11,9,0.88) 0%,
    rgba(13,11,9,0.65) 50%,
    rgba(44,26,14,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px);
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s ease forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s 1.8s ease forwards;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--deep-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 28px clamp(20px, 4vw, 60px);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 40px;
  color: var(--cream);
}
.trust-item i {
  color: var(--gold);
  font-size: 0.9rem;
}
.trust-item span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(201,169,110,0.3);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--cream);
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
}
.about-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-col { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  filter: sepia(8%) contrast(1.05);
  box-shadow: 30px 30px 80px rgba(44,26,14,0.25);
}
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  background: var(--white);
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-badge img { width: 100%; object-fit: contain; }

.about-text-col { padding-left: 20px; }
.about-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.about-quote {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 32px 0;
  background: rgba(201,169,110,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-dark);
}
.about-signature {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-top: 32px;
}
.about-signature span {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--black);
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
}
.services-container { max-width: var(--container); margin: 0 auto; }
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}

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

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.12);
  padding: 48px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  background: rgba(201,169,110,0.06);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-icon i {
  color: var(--gold);
  font-size: 1.1rem;
}
.service-card:hover .service-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.service-card:hover .service-icon i { color: var(--black); }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}
.service-card--cta {
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.25);
}
.service-card--cta p { margin-bottom: 28px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--cream);
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
}
.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.gallery-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: sepia(5%) contrast(1.05);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--tall img { height: 100%; min-height: 572px; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--wide img { height: 280px; }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,11,9,0);
  transition: background var(--transition);
}
.gallery-item:hover::after {
  background: rgba(13,11,9,0.15);
}

/* ============================================================
   VISION
   ============================================================ */
.vision {
  position: relative;
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
  overflow: hidden;
}
.vision-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vision-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) sepia(30%);
}
.vision-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,11,9,0.75);
}
.vision-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.vision-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 32px;
}
.vision-sub {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================================
   BOOKING / QUOTE
   ============================================================ */
.book {
  background: var(--cream);
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
}
.book-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.book-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 36px;
}
.book-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.book-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.book-feature i { color: var(--gold); font-size: 1rem; }

/* FlashQuotes Embed Section */
.flashquotes-section {
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 20px 80px rgba(44,26,14,0.1);
  margin-bottom: 24px;
}
.flashquotes-section h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.fq-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,169,110,0.12);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.fq-badge i { font-size: 0.7rem; }
.fq-embed-placeholder {
  background: var(--cream);
  border: 2px dashed rgba(201,169,110,0.3);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.7;
}
.fq-embed-placeholder strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 8px;
}
/* When FlashQuotes embed is active, replace placeholder */
.fq-embed-active { display: block; }
.fq-embed-active .fq-embed-placeholder { display: none; }

/* Contact Form Card */
.quote-form-card {
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: 0 20px 80px rgba(44,26,14,0.1);
}
.quote-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.quote-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid rgba(44,26,14,0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
}

.form-success {
  text-align: center;
  padding: 48px 20px;
}
.form-success i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--black);
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
}
.reviews-container {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.reviews-container .section-title { color: var(--white); }
.reviews-container .section-title em { color: var(--gold); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  text-align: left;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
}
.review-card:hover {
  background: rgba(201,169,110,0.06);
  border-color: rgba(201,169,110,0.25);
  transform: translateY(-4px);
}
.review-card--featured {
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.3);
  position: relative;
}
.review-card--featured::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,169,110,0.15);
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.review-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.review-author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.review-author span {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--deep-brown);
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
}
.contact-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-sub {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.contact-detail i { color: var(--gold); width: 16px; }
.contact-detail a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.contact-detail a:hover { color: var(--gold); }

.social-links { display: flex; gap: 16px; }
.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.contact-img-stack { position: relative; }
.contact-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: sepia(10%) contrast(1.05);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.contact-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 8px 30px rgba(201,169,110,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-img-badge img { width: 100%; filter: invert(1); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding: 60px clamp(20px, 6vw, 80px) 0;
}
.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}

.footer-logo img {
  width: 80px;
  margin-bottom: 12px;
}
.footer-logo p {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.footer-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a {
  color: rgba(201,169,110,0.6);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-credit {
  font-size: 0.65rem !important;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  line-height: 1;
}

.mejor-credit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #00BFFF !important;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
  line-height: 1;
}
.mejor-credit:hover { opacity: 0.75; color: #00BFFF !important; }
.mejor-logo-small {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.mejor-os {
  color: #00BFFF;
  font-weight: 600;
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-container,
  .book-container,
  .contact-container { grid-template-columns: 1fr; gap: 60px; }

  .about-img-wrap img { height: 420px; }
  .about-text-col { padding-left: 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--tall img { min-height: 280px; height: 280px; }
  .gallery-item--wide { grid-column: span 1; }

  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }

  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .hide-mobile { display: none; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transition: right var(--transition);
    z-index: 999;
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.9rem; color: var(--white); }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-headline { font-size: clamp(2.8rem, 10vw, 4.5rem); }

  .trust-bar { flex-direction: column; gap: 0; }
  .trust-divider { width: 40px; height: 1px; }
  .trust-item { padding: 12px 20px; }

  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--tall img { min-height: 300px; height: 300px; }

  .form-row { grid-template-columns: 1fr; }

  .book-container { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .about-img-badge { width: 80px; height: 80px; bottom: -16px; right: -8px; }
  .quote-form-card { padding: 32px 24px; }
  .flashquotes-section { padding: 28px 20px; }
}

@media (max-width: 768px) {
  .mejor-logo-small {
    width: 24px;
    height: 24px;
  }
}
