/* =====================================================
   TYLER AUGUST — SHARED SITE STYLES
   ===================================================== */

/* ============ TOKENS ============ */
:root{
  --bg: #08111f;
  --bg-2: #0c1828;
  --bg-3: #102338;
  --ink: #f5f0e4;
  --ink-dim: #a8b4c4;
  --ink-mute: #5d6b80;
  --gold: #d3b76a;
  --gold-bright: #e6cc82;
  --gold-deep: #a8924f;
  --gold-glow: rgba(211, 183, 106, 0.45);
  --blue: #188bf6;
  --blue-bright: #4aa5f8;
  --blue-deep: #0e6dc7;
  --blue-glow: rgba(24, 139, 246, 0.5);
  --cream: #f0e6d2;
  --cream-bright: #fff2d8;
  --cream-deep: #c9b890;
  --ember: #e87a3f;
  --line: rgba(245, 240, 228, 0.10);
  --line-strong: rgba(245, 240, 228, 0.22);
  --paper: #f5efe1;
  --paper-2: #e6dbc1;
  --ink-paper: #0c1828;

  --display: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --max: 1280px;
  --pad: clamp(20px, 4vw, 64px);
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open{ overflow: hidden; }
/* Film grain overlay */
body::after{
  content:"";
  position: fixed; inset: 0;
  pointer-events:none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.045;
  mix-blend-mode: overlay;
  z-index: 1000;
}
a{ color: inherit; text-decoration: none; }
img{ display:block; max-width:100%; }
button{ font: inherit; cursor: pointer; }
iframe{ max-width: 100%; }

/* ============ TYPE ============ */
.eyebrow{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before{ content:""; width: 28px; height: 1px; background: var(--gold); }
.eyebrow.center::before, .eyebrow.center::after{ content:""; width:28px; height:1px; background: var(--gold); }
.eyebrow.center{ justify-content:center; }

h1,h2,h3{ font-family: var(--display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; margin:0; }

.display{
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.display em{
  font-style: italic;
  font-weight: 400;
  color: var(--cream-bright);
  font-variation-settings: "opsz" 144;
}
h2.section-title{
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
h2.section-title em{ font-style: italic; color: var(--cream-bright); font-weight: 400; }
h3{ font-size: clamp(22px, 2vw, 28px); font-weight: 500; }

/* ============ LAYOUT ============ */
.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
section{ position: relative; padding: clamp(80px, 10vw, 140px) 0; }
.section-head{
  text-align: center;
  margin-bottom: 80px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.section-head .eyebrow{ margin-bottom: 24px; }
.section-head .lead{
  color: var(--ink-dim);
  font-size: clamp(15px, 1.15vw, 17px);
  margin-top: 24px;
  line-height: 1.6;
}

/* ============ NAV ============ */
.nav{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: backdrop-filter .4s, background .4s, padding .4s;
}
.nav.scrolled{
  background: rgba(8, 17, 31, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand{
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.brand-mark{
  width: 30px; height: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
}
.brand em{ font-style: italic; color: var(--cream-bright); }

.nav-links{
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a{
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
  transition: color .3s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover{ color: var(--cream-bright); }
.nav-links a.active{
  color: var(--ink);
}
.nav-links a.active::after{
  content:"";
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta{
  background: var(--blue);
  color: #fff;
  border: 0;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: transform .3s, background .3s, box-shadow .3s;
  flex-shrink: 0;
}
.nav-cta:hover{
  background: var(--blue-bright);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px var(--blue-glow);
}

/* Mobile nav */
.nav-toggle{
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  width: 40px; height: 40px;
  border-radius: 8px;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}
@media (max-width: 880px){
  .nav-links{
    position: fixed;
    inset: 0;
    background: var(--bg-2);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    font-size: 24px;
    clip-path: inset(0 0 0 100%);
    pointer-events: none;
    visibility: hidden;
    transition: clip-path .5s cubic-bezier(.2,.7,.2,1), visibility 0s linear .5s;
    z-index: 99;
  }
  .nav-links a{ font-size: 24px; font-family: var(--display); }
  .nav-links.open{
    clip-path: inset(0);
    pointer-events: auto;
    visibility: visible;
    transition: clip-path .5s cubic-bezier(.2,.7,.2,1);
  }
  .nav-toggle{ display: inline-flex; z-index: 101; }
  .nav-cta{ display: none; }
}

/* ============ BUTTONS ============ */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
  border: 0;
  cursor: pointer;
}
.btn-primary{
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 40px -14px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover{
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -14px rgba(24, 139, 246, 0.7), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-ghost{
  background: rgba(245, 240, 228, 0.04);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover{
  background: rgba(245, 240, 228, 0.10);
  border-color: var(--blue-bright);
  color: var(--cream-bright);
}
.btn .arrow{
  width: 18px; height: 18px;
  transition: transform .35s;
}
.btn:hover .arrow{ transform: translateX(4px); }

.cta-row{
  display: flex; gap: 16px; flex-wrap: wrap;
}
.center-cta{ text-align: center; margin-top: 60px; }

/* ============ LOGOS MARQUEE ============ */
.logos{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  background: rgba(0,0,0,0.2);
  overflow: hidden;
}
.logos-label{
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.marquee{
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track{
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scroll 35s linear infinite;
}
@keyframes scroll{ to { transform: translateX(-50%); } }
.logo-item{
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink-dim);
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity .3s, color .3s;
  display: flex; align-items: center; gap: 12px;
}
.logo-item:hover{ opacity: 1; color: var(--ink); }
.logo-item em{ font-style: italic; color: var(--gold); }
.logo-dot{ width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

/* ============ FOOTER ============ */
footer{
  background: #050a14;
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 760px){ .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.footer-brand em{ font-style: italic; color: var(--cream-bright); }
.footer-tag{
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.5;
  max-width: 320px;
  font-style: italic;
  font-family: var(--display);
}
.footer-col h5{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col a{
  display: block;
  color: var(--ink-dim);
  font-size: 14px;
  padding: 6px 0;
  transition: color .3s, transform .3s;
}
.footer-col a:hover{
  color: var(--cream-bright);
  transform: translateX(3px);
}
.footer-bottom{
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* ============ SCROLL REVEAL ============ */
[data-reveal]{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].in{ opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"]{ transition-delay: .1s; }
[data-reveal][data-delay="2"]{ transition-delay: .2s; }
[data-reveal][data-delay="3"]{ transition-delay: .3s; }

/* ============ COMMON UTILITIES ============ */
.helper-text{
  text-align: center;
  margin-top: 48px;
  color: var(--ink-mute);
  font-size: 13px;
  font-style: italic;
}

/* ============ STARS ============ */
.stars{ display: flex; gap: 3px; color: var(--cream-bright); }

/* ============ CARDS (shared) ============ */
.card{
  position: relative;
  padding: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(245,240,228,0.025) 0%, rgba(245,240,228,0.005) 100%);
  overflow: hidden;
  transition: border-color .5s, transform .5s;
}
.card::before{
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(211, 183, 106, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.card:hover{
  border-color: rgba(211, 183, 106, 0.3);
  transform: translateY(-4px);
}
.card:hover::before{ opacity: 1; }

/* ============ FORM ============ */
.form{
  max-width: 620px;
  margin: 0 auto;
}
.form-hidden{ display: none; }
.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 560px){ .form-row{ grid-template-columns: 1fr; } }
.form-field{
  margin-bottom: 16px;
  position: relative;
}
.form-label{
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea{
  width: 100%;
  padding: 14px 18px;
  background: rgba(245, 240, 228, 0.03);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color .3s, background .3s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus{
  border-color: var(--blue);
  background: rgba(24, 139, 246, 0.05);
}
.form-input::placeholder,
.form-textarea::placeholder{ color: var(--ink-mute); }
.form-textarea{
  min-height: 130px;
  resize: vertical;
  font-family: var(--sans);
}
.form-select{
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23e6cc82' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-select option{ background: var(--bg-2); color: var(--ink); }
.form-submit{
  width: 100%;
  padding: 16px 28px;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-top: 8px;
  transition: background .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 14px 40px -14px var(--blue-glow);
}
.form-submit:hover{
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -14px rgba(24, 139, 246, 0.7);
}
.form-submit:disabled{
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.calendar-embed iframe{
  display: block !important;
  width: 100% !important;
  min-height: 760px;
  border: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  left: auto !important;
  position: relative !important;
}

/* ============ PAGE HEADER (non-home pages) ============ */
.page-header{
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.page-header::before{
  content:"";
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(211, 183, 106, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 90%, rgba(255, 242, 216, 0.04), transparent 60%);
  pointer-events: none;
}
.page-header-inner{
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.page-header h1{
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 24px 0 28px;
}
.page-header h1 em{ font-style: italic; color: var(--cream-bright); font-weight: 400; }
.page-header p{
  color: var(--ink-dim);
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============ TESTIMONIAL ============ */
.testi{
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(245,240,228,0.025), rgba(245,240,228,0.005));
  position: relative;
  transition: border-color .4s, transform .4s;
}
.testi:hover{
  border-color: rgba(211, 183, 106, 0.3);
  transform: translateY(-3px);
}
.testi-stars{ color: var(--cream-bright); margin-bottom: 18px; display: flex; gap: 2px; }
.testi-quote{
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.testi-quote::before{ content:"\201C"; font-style: italic; color: var(--gold); font-size: 28px; margin-right: 4px; vertical-align: -4px; }
.testi-attr{
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.testi-attr strong{ color: var(--gold); font-weight: 500; }

/* =====================================================
   MOBILE OPTIMIZATIONS — comprehensive breakpoint pass
   ===================================================== */

/* TABLET (920px and below) */
@media (max-width: 920px){
  section{ padding: clamp(64px, 10vw, 100px) 0; }
  .section-head{ margin-bottom: 56px; }
  .page-header{ padding: 140px 0 60px; }
  .page-header h1{ font-size: clamp(40px, 7vw, 60px); }
  .page-header p{ font-size: clamp(15px, 1.7vw, 17px); padding: 0 8px; }
}

/* PHONE LARGE (760px and below) */
@media (max-width: 760px){
  :root{ --pad: 20px; }

  /* Tighter section padding on phones */
  section{ padding: 64px 0; }
  .section-head{ margin-bottom: 40px; padding: 0 4px; }
  .section-head .lead{ font-size: 15px; line-height: 1.6; }

  /* Display headlines */
  .display{
    font-size: clamp(36px, 9.5vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.03em;
  }
  h2.section-title{
    font-size: clamp(30px, 7.8vw, 44px);
    line-height: 1.05;
  }
  h3{ font-size: 20px; }

  /* Page header */
  .page-header{ padding: 120px 0 48px; }
  .page-header h1{ font-size: clamp(34px, 9.5vw, 52px); margin: 18px 0 20px; }
  .page-header p{ font-size: 15px; max-width: 100%; }
  .page-header .cta-row{ flex-direction: column; align-items: stretch; }
  .page-header .cta-row .btn{ justify-content: center; }

  /* Buttons full-width on mobile */
  .cta-row{ flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-row .btn{ width: 100%; justify-content: center; padding: 15px 24px; }
  .btn{ font-size: 14px; }

  /* Eyebrow smaller */
  .eyebrow{ font-size: 10px; letter-spacing: 0.25em; gap: 10px; }
  .eyebrow::before{ width: 20px; }
  .eyebrow.center::before, .eyebrow.center::after{ width: 20px; }

  /* Nav padding tighter */
  .nav{ padding: 14px 0; }
  .nav.scrolled{ padding: 10px 0; }
  .brand{ font-size: 19px; }
  .brand-mark{ width: 26px; height: 26px; font-size: 13px; }

  /* Cards padding reduce */
  .card{ padding: 28px 24px; }

  /* Forms — 16px font prevents iOS zoom on focus */
  .form-input, .form-select, .form-textarea{ font-size: 16px; padding: 13px 16px; }
  .form-submit{ padding: 15px 24px; font-size: 14px; }

  /* Calendar embed */
  .calendar-embed{ border-radius: 12px; }
  .calendar-embed iframe{ min-height: 680px; }

  /* Footer */
  footer{ padding: 48px 0 24px; }
  .footer-grid{ gap: 32px; margin-bottom: 36px; }
  .footer-brand{ font-size: 28px; }
  .footer-tag{ font-size: 15px; }
  .footer-bottom{ font-size: 9px; }

  /* Logos */
  .logos{ padding: 28px 0; }
  .logo-item{ font-size: 18px; }
  .marquee-track{ gap: 56px; }

  /* Helper text */
  .helper-text{ font-size: 12px; margin-top: 36px; }
}

/* PHONE SMALL (480px and below) */
@media (max-width: 480px){
  :root{ --pad: 18px; }
  section{ padding: 56px 0; }

  .display{ font-size: clamp(32px, 10vw, 44px); }
  h2.section-title{ font-size: clamp(28px, 8.5vw, 38px); }

  .page-header{ padding: 110px 0 40px; }
  .page-header h1{ font-size: clamp(32px, 10vw, 44px); }

  .card{ padding: 26px 22px; }
  .card h3{ font-size: 22px; }

  .footer-brand{ font-size: 24px; }
}

/* =====================================================
   PER-PAGE COMPONENT MOBILE FIXES
   ===================================================== */

/* HOME HERO mobile */
@media (max-width: 760px){
  .home-hero{
    min-height: auto;
    padding: 110px 0 60px;
  }
  .home-hero-grid{ gap: 48px; }
  .hero-tag{
    font-size: 11px;
    padding: 7px 14px 7px 8px;
    margin-bottom: 22px;
  }
  .home-hero h1 .line{ display: inline; }
  .home-hero-sub{
    font-size: 15px;
    margin: 24px 0 28px;
    line-height: 1.55;
  }
  .home-hero-rating{
    margin-top: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .home-hero-rating-text{ font-size: 12px; }
  .ticket-1, .ticket-2{ display: none; }
  .hero-card{ max-width: 460px; margin: 0 auto; }

  /* Two-paths cards */
  .paths-grid{ gap: 20px; }
  .path-card-body{ padding: 26px 24px; }
  .path-card h3{ font-size: 30px; }
  .path-card p{ font-size: 14px; }

  /* Three experiences */
  .exp-three{ gap: 20px; }
  .exp-three-card h3{ font-size: 24px; }
  .exp-three-card p{ font-size: 14px; }
  .exp-foot{ flex-direction: column; gap: 6px; align-items: flex-start; }

  /* Testimonials grid */
  .testimonials-grid{ gap: 16px; }
  .testi{ padding: 26px 24px; }
  .testi-quote{ font-size: 16px; }

  /* Home gallery */
  .gallery{ gap: 14px; }
  .gallery-item{ height: 240px !important; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(3){ transform: none !important; }
  .gallery-cap{ padding: 22px; }
  .gallery-cap h4{ font-size: 18px; }
}

@media (max-width: 480px){
  .path-card h3{ font-size: 26px; }
  .testi-quote{ font-size: 15px; }
  .gallery-item{ height: 220px !important; }
}

/* CORPORATE PAGE mobile */
@media (max-width: 760px){
  .types-grid{ gap: 14px; }
  .type-card{ padding: 24px 22px; }
  .type-card h3{ font-size: 20px; }
  .type-card p{ font-size: 13.5px; }

  .exp-choice{ gap: 20px; margin-top: 40px; }
  .exp-card h3{ font-size: 26px; }
  .exp-card p{ font-size: 14px; }

  /* Versus comparison */
  .versus{ margin-top: 48px; }
  .v-col{ padding: 32px 26px; }
  .v-col h3{ font-size: 22px; margin-bottom: 20px; }
  .v-list li{ font-size: 14px; padding: 12px 0 12px 26px; }

  /* How steps */
  .steps{ gap: 16px; margin-top: 44px; }
  .step{ padding: 30px 26px; }
  .step-num{ font-size: 48px; margin-bottom: 16px; }
  .step h3{ font-size: 22px; }
  .step-mark{ width: 26px; height: 26px; top: 26px; right: 26px; }

  /* Tired pain points */
  .pain-grid{ gap: 12px; margin-top: 44px; }
  .pain{ padding: 20px 22px; }
  .pain p{ font-size: 14px; }

  /* FAQ */
  .faq-list{ margin-top: 44px; }
  .faq-item{ padding: 22px 0; }
  .faq-q{ font-size: 17px; gap: 14px; }
  .faq-icon{ width: 28px; height: 28px; }
  .faq-a{ font-size: 14px; padding-right: 42px; }

  /* Reactions */
  .reactions{ gap: 16px; margin-top: 44px; }
  .reaction{ padding: 18px 0; gap: 14px; }
  .reaction p{ font-size: 14px; }
  .reaction-quote{ font-size: 24px; }
}

/* WEDDINGS PAGE mobile */
@media (max-width: 760px){
  .wedding-format-grid{ gap: 48px; }
  .wedding-format-lead{ font-size: 15px; margin: 18px 0 32px; }
  .wedding-format-list{ gap: 22px; }
  .wfl-item{ gap: 18px; }
  .wfl-num{ font-size: 24px; width: 36px; }
  .wfl-item h4{ font-size: 19px; }
  .wfl-item p{ font-size: 13.5px; }

  .wedding-photo-stack{ max-width: 440px; margin: 0 auto; }
  .wedding-photo-tag{ font-size: 14px; padding: 12px 14px; }
  .wedding-photo-tag-value{ font-size: 14px; max-width: 140px; }

  .wedding-why-grid{ gap: 16px; }
  .why-card{ padding: 28px 24px; }
  .why-card h3{ font-size: 22px; }
  .why-card p{ font-size: 14px; }
}

/* REVIEWS PAGE mobile */
@media (max-width: 760px){
  .reviews-grid{ gap: 14px; }
  .review{ padding: 24px 22px; }
  .review-quote{ font-size: 15.5px; }
  .reviews-note{ margin-top: 48px; padding-top: 36px; }
  .reviews-note p{ font-size: 14px; }
}

/* CONTACT PAGE mobile */
@media (max-width: 760px){
  .contact-methods{ padding: 48px 0; }
  .methods-grid{ gap: 14px; }
  .method{ padding: 28px 24px; }
  .method h3{ font-size: 22px; }
  .method p{ font-size: 14px; }

  .direct-grid{ gap: 36px; }
  .direct-card{ padding: 20px 22px; }
  .direct-card-value{ font-size: 18px; }
  .direct-card-label{ font-size: 9px; }
}

/* TINY SCREENS — old phones (380px and below) */
@media (max-width: 380px){
  :root{ --pad: 16px; }
  .display{ font-size: 30px; }
  h2.section-title{ font-size: 26px; }
  .page-header h1{ font-size: 30px; }
  .card{ padding: 22px 18px; }
  .nav-cta{ display: none; }
  .brand span:not(.brand-mark){ font-size: 17px; }
}

/* =====================================================
   TOUCH-FRIENDLY ADJUSTMENTS
   ===================================================== */
@media (hover: none) and (pointer: coarse){
  .card:hover, .testi:hover, .review:hover,
  .path-card:hover, .type-card:hover, .why-card:hover,
  .method:hover, .direct-card:hover, .step:hover,
  .exp-three-card:hover, .gallery-item:hover{
    transform: none;
  }
  .gallery-item:nth-child(1):hover{ transform: translateY(20px); }
  .gallery-item:nth-child(3):hover{ transform: translateY(40px); }
  .nav-links a{ padding: 10px 0; }
  .footer-col a{ padding: 8px 0; }
  .btn{ min-height: 48px; }
  .nav-toggle{ width: 44px; height: 44px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal]{ opacity: 1; transform: none; }
  .marquee-track{ animation: none; }
  .beam{ animation: none; }
}
