/* ═══════════════════════════════════════
   THE DREAM TELLER STUDIOS — SHARED CSS
   Edit this file to change sitewide styles
═══════════════════════════════════════ */

/* ── IMPORT FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Tenor+Sans&family=Montserrat:wght@300;400;500;600&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --teal:        #45859d;
  --teal-dark:   #2d6478;
  --teal-light:  #d4e8ef;
  --teal-glow:   rgba(69,133,157,0.12);
  --ink:         #111110;
  --ink-soft:    #2a2a28;
  --cream:       #F8F5F1;
  --warm-white:  #FDFBF9;
  --muted:       #7a7570;
  --rule:        #e2ddd8;
  --gold:        #B89A6A;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', sans-serif;
  --font-display: 'Tenor Sans', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── CONTAINER ── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ── NAVIGATION ── */
nav#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, padding 0.5s, border 0.5s;
  border-bottom: 0.5px solid transparent;
}
nav#navbar.scrolled {
  background: rgba(253,251,249,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 56px;
  border-bottom: 0.5px solid var(--rule);
}
nav#navbar.dark-nav {
  background: rgba(10,15,18,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

/* Logo */
.nav-logo { text-decoration: none; display: flex; align-items: center; cursor: pointer; }
.nav-logo-img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1); /* white on dark */
  transition: filter 0.4s;
}
nav#navbar.scrolled .nav-logo-img { filter: brightness(0); /* dark on light */ }
nav#navbar.dark-nav .nav-logo-img { filter: brightness(0) invert(1); }

/* Nav links */
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 0.5px;
  background: var(--teal);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
nav#navbar.scrolled .nav-links a { color: var(--muted); }
nav#navbar.dark-nav .nav-links a { color: rgba(255,255,255,0.7); }
.nav-links a:hover,
.nav-links a.active { color: var(--teal) !important; }

/* Nav CTA button */
.nav-cta {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-white);
  text-decoration: none;
  border: 0.5px solid rgba(255,255,255,0.45);
  padding: 10px 24px;
  transition: all 0.35s;
  cursor: pointer;
  background: transparent;
  font-family: var(--font-sans);
}
nav#navbar.scrolled .nav-cta { color: var(--teal); border-color: var(--teal); }
nav#navbar.dark-nav .nav-cta { color: white; border-color: rgba(255,255,255,0.4); }
.nav-cta:hover { background: var(--teal) !important; color: white !important; border-color: var(--teal) !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 0.5px;
  background: white;
  transition: background 0.3s;
}
nav#navbar.scrolled .nav-hamburger span { background: var(--ink); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 300; font-style: italic;
  color: white; text-decoration: none; cursor: pointer;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-close {
  position: absolute; top: 28px; right: 28px;
  background: none; border: none; color: white;
  font-size: 28px; cursor: pointer; line-height: 1;
}

/* ── TYPOGRAPHY UTILITIES ── */
.section-eyebrow {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
}
.section-title em { font-style: italic; }
.section-title.light { color: white; }

.teal-rule { width: 32px; height: 1px; background: var(--teal); margin: 24px 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: white; background: var(--teal);
  border: none; padding: 14px 32px;
  cursor: pointer; text-decoration: none;
  transition: background 0.3s, gap 0.3s;
  font-family: var(--font-sans);
}
.btn-primary:hover { background: var(--teal-dark); gap: 20px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  border: 0.5px solid var(--ink);
  padding: 14px 32px; cursor: pointer; text-decoration: none;
  transition: all 0.3s; font-family: var(--font-sans);
}
.btn-ghost:hover { background: var(--ink); color: white; gap: 20px; }
.btn-ghost.light { color: white; border-color: rgba(255,255,255,0.5); }
.btn-ghost.light:hover { background: white; color: var(--ink); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.25s; }
.reveal-d3 { transition-delay: 0.4s; }
.reveal-d4 { transition-delay: 0.55s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 60vh; min-height: 480px;
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #0d1f28 0%, #111110 55%, #1c1207 100%);
}
/* OPTIONAL: add a real photo as page-hero background like this:
   .page-hero-bg { background-image: url('../images/hero-story.jpg'); background-size: cover; background-position: center; }
   Add a dark overlay on top using the ::after pseudo-element
*/
.page-hero-content {
  position: relative; z-index: 10;
  padding: 0 56px 64px;
}
.page-hero-eyebrow {
  font-size: 8.5px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 300; font-style: italic; color: white; line-height: 1.05;
}
.page-hero-sub {
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-top: 14px; max-width: 500px; line-height: 1.9;
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--teal); overflow: hidden;
  white-space: nowrap; padding: 12px 0;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); padding: 0 40px;
}
.marquee-dot { color: rgba(255,255,255,0.35); }

/* ── SECTION HEADER ── */
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px;
}
.see-all-link {
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: color 0.3s;
}
.see-all-link::after { content: ''; width: 24px; height: 0.5px; background: currentColor; transition: width 0.3s; }
.see-all-link:hover { color: var(--teal); }
.see-all-link:hover::after { width: 40px; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 80px 0 36px;
  border-top: 0.5px solid rgba(255,255,255,0.04);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 64px; margin-bottom: 64px;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 300; font-style: italic;
  color: white; margin-bottom: 6px;
}
.footer-brand-tag {
  font-size: 8.5px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.footer-logo-img { height: 32px; width: auto; margin-bottom: 16px; opacity: 0.7; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.9; }
.footer-col-title {
  font-size: 8.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.45);
  text-decoration: none; cursor: pointer; transition: color 0.3s;
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  padding-top: 32px; border-top: 0.5px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.15); }
.footer-lovers { font-size: 11px; color: rgba(255,255,255,0.15); }
.footer-lovers a { color: var(--teal); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes expandWidth {
  from { width: 0; } to { width: 56px; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  nav#navbar { padding: 18px 40px; }
  nav#navbar.scrolled { padding: 12px 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  nav#navbar { padding: 16px 24px; }
  nav#navbar.scrolled { padding: 10px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .page-hero-content { padding: 0 24px 48px; }
}

/* ══════════════════════════════════════════════
   LOADING SCREEN
══════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #070e14;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.loader-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: loaderFadeIn 0.8s ease 0.2s both;
}
.loader-bar-wrap {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeIn 0.8s ease 0.4s both;
}
.loader-bar {
  height: 100%;
  background: var(--teal);
  width: 0%;
  animation: loaderBar 1.6s cubic-bezier(0.4,0,0.2,1) 0.4s both;
}
.loader-text {
  font-size: 8px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-sans);
  font-weight: 300;
  opacity: 0;
  animation: loaderFadeIn 0.8s ease 0.6s both;
}
@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderBar {
  from { width: 0%; }
  to   { width: 100%; }
}



/* ══════════════════════════════════════════════
   HERO FILM GRAIN CANVAS
══════════════════════════════════════════════ */
#heroGrain {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 3;
  opacity: 0.55;
  mix-blend-mode: overlay;
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 4px 12px rgba(0,0,0,0.2);
  animation: none;
}
.wa-float svg {
  width: 28px; height: 28px; fill: white;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.15); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.55), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* Tooltip */
.wa-float::before {
  content: 'Chat with us';
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: white;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-family: var(--font-sans);
  padding: 6px 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.wa-float:hover::before { opacity: 1; }

/* ══════════════════════════════════════════════
   INSTAGRAM SECTION
══════════════════════════════════════════════ */
.ig-section {
  padding: 80px 0;
  background: var(--ink);
  text-align: center;
}
.ig-section .section-eyebrow { color: var(--teal); }
.ig-section .section-title { color: white; }
.ig-handle {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
.ig-handle a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s;
}
.ig-handle a:hover { color: white; }
.ig-feed-wrap {
  max-width: 900px;
  margin: 0 auto;
  border: 0.5px solid rgba(255,255,255,0.08);
  padding: 4px;
}
/* LightWidget embed fills this */


/* ══════════════════════════════════════════════
   SERVICES ACCORDION — HOME PAGE
══════════════════════════════════════════════ */
.services-new { padding: 120px 0; background: var(--ink); }
.services-new .section-eyebrow { color: var(--teal); }
.services-new .section-title { color: white; }

.svc-list-new { margin-top: 56px; display: flex; flex-direction: column; gap: 0; }

.svc-card {
  border-top: 0.5px solid rgba(255,255,255,0.07);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s;
}
.svc-card:last-child { border-bottom: 0.5px solid rgba(255,255,255,0.07); }
.svc-card:hover { background: rgba(69,133,157,0.04); }
.svc-card.svc-open { background: rgba(69,133,157,0.06); }

.svc-header {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  user-select: none;
}
.svc-header:hover .svc-hname { color: var(--teal); }

.svc-hnum {
  font-family: var(--font-serif);
  font-size: 13px; font-style: italic;
  color: rgba(255,255,255,0.2);
}
.svc-hname {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 300; color: white;
  transition: color 0.3s;
}
.svc-card.svc-open .svc-hname { color: var(--teal); }

.svc-htag {
  font-size: 8.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal-dark); background: var(--teal-light);
  padding: 4px 12px; opacity: 0; transition: opacity 0.3s;
}
.svc-card.svc-open .svc-htag { opacity: 1; }

.svc-toggle {
  width: 28px; height: 28px;
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s, transform 0.4s;
}
.svc-toggle::after {
  content: '';
  display: block;
  width: 8px; height: 1px;
  background: rgba(255,255,255,0.4);
  position: relative;
}
.svc-toggle::before {
  content: '';
  display: block;
  position: absolute;
  width: 1px; height: 8px;
  background: rgba(255,255,255,0.4);
  transition: transform 0.35s, opacity 0.35s;
}
.svc-card.svc-open .svc-toggle {
  background: var(--teal);
  border-color: var(--teal);
  transform: rotate(45deg);
}
.svc-card.svc-open .svc-toggle::before,
.svc-card.svc-open .svc-toggle::after { background: white; }

.svc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card.svc-open .svc-body {
  grid-template-rows: 1fr;
}
.svc-body-inner {
  overflow: hidden;
  padding: 0 0 0 84px;
}
.svc-body-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-top: 0.5px solid rgba(255,255,255,0.05);
  padding-top: 24px;
}
.svc-desc-text {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 2;
}
.svc-details {
  display: flex; flex-direction: column; gap: 10px;
}
.svc-detail-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}
.svc-detail-row::before {
  content: '—';
  color: var(--teal);
  flex-shrink: 0;
  font-size: 10px;
  margin-top: 1px;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 20px;
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); text-decoration: none;
  transition: gap 0.3s;
}
.svc-link:hover { gap: 18px; }
.svc-link::after { content: '→'; }

@media (max-width: 768px) {
  .svc-header { grid-template-columns: 40px 1fr auto; gap: 16px; }
  .svc-htag { display: none; }
  .svc-body-inner { padding: 0 0 0 56px; }
  .svc-body-content { grid-template-columns: 1fr; gap: 20px; }
}

/* ══════════════════════════════════════════════
   SHARED GALLERY STRIP (all pages)
   .gallery-strip — reusable on any page
══════════════════════════════════════════════ */
.gallery-strip {
  padding: 0;
  overflow: hidden;
  background: #070e14;
  border-top: 0.5px solid rgba(255,255,255,0.04);
  border-bottom: 0.5px solid rgba(255,255,255,0.04);
}
.gallery-strip-header {
  padding: 60px 0 40px;
  text-align: center;
}
.gallery-strip-eyebrow {
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.gallery-strip-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 300; font-style: italic; color: white;
}
.gallery-strip-sub {
  font-size: 12px; color: rgba(255,255,255,0.3);
  margin-top: 10px; line-height: 1.8;
}
.gallery-row {
  display: flex; gap: 8px; width: max-content;
  margin-bottom: 8px;
}
.gallery-row:last-child { margin-bottom: 60px; }
.gallery-row.row-fwd { animation: galleryFwd 38s linear infinite; }
.gallery-row.row-rev { animation: galleryRev 44s linear infinite; }
.g-img {
  flex-shrink: 0; height: 280px;
  object-fit: cover; display: block;
  opacity: 0.7; filter: saturate(0.8);
  transition: opacity 0.4s, filter 0.4s, transform 0.5s;
}
.g-img:hover { opacity: 1; filter: saturate(1); transform: scale(1.03); }
.g-img.land { width: 420px; }
.g-img.port { width: 187px; }

@keyframes galleryFwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes galleryRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Pause on hover */
.gallery-strip:hover .gallery-row { animation-play-state: paused; }

@media (max-width: 768px) {
  .g-img { height: 190px; }
  .g-img.land { width: 285px; }
  .g-img.port { width: 127px; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   Breakpoints:
     480px  — small phones (iPhone SE, Galaxy A)
     640px  — large phones
     768px  — tablet portrait / large phone landscape
     1024px — tablet landscape
   All sizes use min-height and clamp() where possible so nothing
   overflows on any screen width.
═══════════════════════════════════════════════════════════════ */

/* ─── GLOBAL TOUCH FIXES ──────────────────────────────────── */
@media (max-width: 768px) {

  /* Prevent horizontal scroll everywhere */
  html, body { overflow-x: hidden; max-width: 100vw; }

  /* Containers */
  .container { padding: 0 20px; }

  /* Typography scale-down */
  .section-title { font-size: clamp(28px, 7vw, 40px); }
  .section-eyebrow { font-size: 8px; letter-spacing: 0.28em; }
  .teal-rule { margin: 16px 0; }

  /* ── NAV ── */
  nav#navbar { padding: 14px 20px; }
  nav#navbar.scrolled { padding: 10px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { height: 28px; }

  /* Mobile menu font size */
  .mobile-menu a { font-size: 28px; }

  /* ── HERO ── */
  .hero { height: 100svh; min-height: 620px; }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 0 20px 56px;
    align-items: flex-end;
  }
  .hero-right { display: none; }
  .hero-title { font-size: clamp(38px, 9vw, 64px); line-height: 1.05; }
  .hero-title .t-sub { font-size: 11px; letter-spacing: 0.2em; }
  .hero-tagline { font-size: 15px; max-width: 100%; }
  .hero-rule { margin: 18px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-eyebrow { font-size: 7.5px; }

  /* ── MARQUEE ── */
  .marquee-item { font-size: 8px; padding: 0 20px; }

  /* ── INTRO / WHO WE ARE ── */
  .intro-section { padding: 64px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .intro-visual { height: 380px; }
  .intro-img-main { background-position: center 20%; }
  .intro-year-num { font-size: 48px; }
  .intro-year-lbl { font-size: 7px; }
  .intro-body { font-size: 17px; }
  .intro-body-small { font-size: 13px; }

  /* Stats row in intro */
  .intro-text [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 0 !important;
  }
  .intro-text [style*="font-size:32px"] { font-size: 24px !important; }

  /* CTA buttons in intro */
  .intro-text [style*="display:flex;gap:12px"] {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .btn-ghost { width: 100%; justify-content: center; }

  /* ── PORTFOLIO GRID ── */
  .work-preview { padding: 64px 0; }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 8px;
  }
  .portfolio-item:first-child { grid-row: auto; grid-column: 1 / -1; }
  .portfolio-item:first-child .portfolio-bg { aspect-ratio: 4/3; position: relative; }
  .portfolio-item { min-height: 180px; }
  .portfolio-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%); }
  .portfolio-couple { font-size: 16px; }
  .portfolio-info { font-size: 7.5px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }

  /* ── QUOTE ── */
  .quote-section { padding: 72px 0; }
  .quote-inner { padding: 0 20px 0 20px; border-left: 2px solid var(--teal); }
  .quote-text { font-size: clamp(18px, 5vw, 28px); }
  .quote-section::before { font-size: 180px; top: -30px; left: 8px; }

  /* ── SERVICES ACCORDION ── */
  .services-new { padding: 72px 0; }
  .svc-header {
    grid-template-columns: 36px 1fr 28px;
    gap: 12px;
    padding: 20px 0;
  }
  .svc-hnum { font-size: 11px; }
  .svc-hname { font-size: clamp(17px, 5vw, 22px); }
  .svc-htag { display: none; }
  .svc-toggle { width: 24px; height: 24px; }
  .svc-body-inner { padding: 0 0 0 48px; }
  .svc-body-content { grid-template-columns: 1fr; gap: 16px; padding-bottom: 24px; }
  .svc-desc-text { font-size: 13px; }
  .svc-detail-row { font-size: 11.5px; }
  .services-new [style*="display:flex;justify-content"] {
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 32px !important;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section { padding: 72px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .t-text { font-size: 15px; }

  /* ── CTA ── */
  .cta-section { padding: 80px 0; }
  .cta-headline { font-size: clamp(28px, 8vw, 44px); }
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }
  .cta-contact-list { flex-direction: column; gap: 20px; padding-top: 32px; margin-top: 40px; }
  .cta-contact-value { font-size: 16px; }

  /* ── INSTAGRAM / IG SECTION ── */
  .ig-section { padding: 56px 0; }

  /* ── GALLERY STRIP ── */
  .gallery-strip-header { padding: 40px 0 28px; }
  .g-img { height: 160px; }
  .g-img.land { width: 240px; }
  .g-img.port { width: 107px; }
  .gallery-row { gap: 6px; margin-bottom: 6px; }
  .gallery-row:last-child { margin-bottom: 40px; }

  /* ── FOOTER ── */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom {
    flex-direction: column; gap: 10px; text-align: center;
    padding-top: 24px; margin-top: 0;
  }
  .footer-copy, .footer-lovers { font-size: 10px; }
  .footer-brand-name { font-size: 22px; }
  footer { padding: 56px 0 28px; }

  /* ── WHATSAPP BUTTON ── */
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
  .wa-float::before { display: none; } /* no tooltip on mobile */

  /* ── PAGE HERO (inner pages) ── */
  .page-hero { height: 55vh; min-height: 400px; }
  .page-hero-content { padding: 0 20px 44px; }
  .page-hero-title { font-size: clamp(36px, 10vw, 72px); }
  .page-hero-sub { font-size: 12px; margin-top: 10px; }
  .page-hero-eyebrow { font-size: 8px; letter-spacing: 0.28em; }

}

/* ─── SMALL PHONES (≤480px) ──────────────────────────────── */
@media (max-width: 480px) {

  .container { padding: 0 16px; }

  /* Hero tighter */
  .hero-title { font-size: clamp(32px, 9.5vw, 48px); }
  .hero-tagline { font-size: 13.5px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { font-size: 9px; padding: 13px 18px; }

  /* Intro visual shorter */
  .intro-visual { height: 300px; }
  .intro-year-num { font-size: 36px; }

  /* Portfolio full width on tiny screens */
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child { grid-column: auto; }
  .portfolio-item { min-height: 220px; }

  /* Testimonials card padding */
  .testimonial-card { padding: 24px 20px; }
  .t-text { font-size: 14px; }

  /* Services */
  .svc-header { gap: 10px; padding: 18px 0; }
  .svc-body-inner { padding: 0 0 0 46px; }

  /* Stats inline */
  .intro-text [style*="font-size:32px"] { font-size: 20px !important; }

  /* CTA headline */
  .cta-headline { font-size: clamp(24px, 9vw, 36px); }

  /* Footer nav links larger tap targets */
  .footer-links a { font-size: 14px; padding: 4px 0; }
  .footer-links { gap: 14px; }

  /* Page hero smaller */
  .page-hero { height: 50vh; min-height: 360px; }
  .page-hero-title { font-size: clamp(32px, 11vw, 60px); }

  /* Gallery strip */
  .g-img { height: 130px; }
  .g-img.land { width: 195px; }
  .g-img.port { width: 87px; }
}

/* ─── OUR STORY PAGE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .story-intro-section { padding: 64px 0; }
  .story-grid,
  .lf-story-grid,
  .lf-about-grid,
  .lf-grid { grid-template-columns: 1fr !important; gap: 36px !important; }

  .story-visual { position: relative; }
  .story-img-wrap { aspect-ratio: 4/3; }
  .story-badge { top: -14px; right: -10px; width: 78px; height: 78px; }
  .story-badge-num { font-size: 26px; }

  .directors-section { padding: 64px 0; }
  .directors-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .director-card { padding: 32px 24px; }
  .director-name { font-size: 26px; }

  .philosophy-section { padding: 64px 0; }
  .philosophy-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .phil-num { font-size: 38px; margin-bottom: 10px; }

  /* Collective brand cards */
  .collective-grid { grid-template-columns: 1fr !important; }
  .collective-card { padding: 36px 24px; }
  .collective-name { font-size: 26px; }

  /* Brand cards new style (our-story richer version) */
  .brand-card { grid-template-columns: 1fr !important; min-height: auto !important; }
  .brand-card > div:first-child { min-height: 200px !important; }
  .brand-card > div:last-child { padding: 36px 24px !important; }
}

/* ─── OUR WORK PAGE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .tales-section { padding: 56px 0 80px; }
  .tales-grid { columns: 1 !important; column-gap: 0; }
  .tale-card { margin-bottom: 20px; }
  .tale-couple { font-size: 20px; }
  .tale-excerpt { font-size: 12.5px; }

  .filter-bar { padding: 32px 0 24px; margin-bottom: 36px; }
  .filter-row { gap: 6px; }
  .filter-btn { font-size: 8px; padding: 8px 14px; }

  .add-story-cta { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .tales-grid { columns: 1 !important; }
  .filter-btn { font-size: 7.5px; padding: 7px 12px; letter-spacing: 0.15em; }
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-section { padding: 64px 0 80px; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .contact-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .form-group.full { grid-column: auto; }
  .contact-intro { font-size: 17px; }

  .locations-section { padding: 56px 0; }
  .locations-grid { grid-template-columns: 1fr 1fr !important; }
  .loc-city { font-size: 18px; }
  .loc-address { font-size: 11.5px; }
}

@media (max-width: 480px) {
  .locations-grid { grid-template-columns: 1fr !important; }
  .contact-socials { gap: 8px; }
  .s-pill { font-size: 8px; padding: 7px 14px; }
}

/* ─── WEDDING BLOG PAGES ─────────────────────────────────── */
@media (max-width: 768px) {
  .story-hero { height: 75vh; min-height: 480px; }
  .story-hero-content { padding: 0 20px 48px; }
  .story-hero-couple { font-size: clamp(40px, 10vw, 72px); line-height: 1; }
  .story-hero-meta { font-size: 12px; }
  .story-back { margin-bottom: 28px; font-size: 8.5px; }
  .story-hero-tags { flex-wrap: wrap; gap: 6px; }
  .story-hero-tag { font-size: 7.5px; padding: 4px 10px; }

  .story-body { padding: 56px 0 48px; }
  .story-layout { grid-template-columns: 1fr !important; gap: 0; }
  .story-sidebar { position: static !important; margin-top: 40px; }
  .sidebar-info { padding: 24px 20px; }
  .sidebar-cta { padding: 24px 20px; }

  .story-intro { font-size: 18px; }
  .story-text { font-size: 13.5px; line-height: 2; }

  .photo-full { margin: 32px 0; }
  .photo-pair { grid-template-columns: 1fr 1fr !important; gap: 8px; margin: 32px 0; }
  .photo-pair .photo-full { aspect-ratio: 3/4; }
  .photo-trio { grid-template-columns: 1fr 1fr 1fr !important; gap: 6px; margin: 32px 0; }
  .photo-trio .photo-full { aspect-ratio: 3/4; }

  .pullquote { padding-left: 20px; margin: 32px 0; }
  .pullquote p { font-size: 17px; }

  .more-stories { padding: 56px 0; }
  .more-grid { grid-template-columns: 1fr !important; gap: 16px; }
}

@media (max-width: 480px) {
  .story-hero-couple { font-size: clamp(32px, 11vw, 56px); }
  .photo-pair { grid-template-columns: 1fr !important; }
  .photo-trio { grid-template-columns: 1fr 1fr !important; }
  .photo-trio .photo-full:last-child { display: none; }
  .story-intro { font-size: 16px; }
}

/* ─── LOVERS FILMS PAGE ──────────────────────────────────── */
@media (max-width: 768px) {
  .lf-hero { height: 100svh; min-height: 640px; align-items: flex-end; }
  .lf-hero-content { padding: 0 20px 56px; max-width: 100%; }
  .lf-hero-title { font-size: clamp(48px, 13vw, 80px); line-height: 0.95; }
  .lf-hero-subtitle { font-size: 10px; letter-spacing: 0.28em; margin-bottom: 20px; }
  .lf-hero-desc { font-size: 13px; margin-bottom: 32px; }
  .lf-hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 48px; }
  .lf-hero-actions .btn-primary,
  .lf-hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .lf-hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding-top: 28px;
  }
  .lf-hero-stat {
    width: 50%;
    padding: 0 0 20px 0;
    margin: 0;
    border-right: none !important;
    border-bottom: 0.5px solid rgba(255,255,255,0.06);
  }
  .lf-hero-stat:nth-child(1),
  .lf-hero-stat:nth-child(2) { border-bottom: 0.5px solid rgba(255,255,255,0.06); padding-bottom: 20px; }
  .lf-hero-stat:nth-child(3),
  .lf-hero-stat:nth-child(4) { padding-top: 20px; }
  .lf-hero-stat-num { font-size: 30px; }
  .lf-est-badge { padding: 8px 16px; margin-bottom: 20px; }

  .lf-founders { padding: 64px 0; }
  .lf-founders-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .lf-founder-card { padding: 28px 20px; }
  .lf-founder-name { font-size: 24px; }

  .lf-reviews { padding: 64px 0; }
  .lf-reviews-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .lf-review-card { padding: 24px 20px; }
  .lf-r-text { font-size: 14px; }

  .lf-services { padding: 64px 0; }
  .lf-svc-item {
    grid-template-columns: 40px 1fr !important;
    gap: 16px;
    padding: 20px 0;
  }
  .lf-svc-arrow { display: none; }
  .lf-svc-name { font-size: clamp(17px, 5vw, 22px); }
  .lf-svc-desc { font-size: 12px; }

  .lf-story { padding: 64px 0; }
  .lf-story-img { aspect-ratio: 4/3; height: auto; }
  .lf-story-since { width: 78px; height: 78px; top: -14px; right: -10px; }
  .lf-story-since-num { font-size: 22px; }
  .lf-story-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .lf-stat-num { font-size: 28px; }

  .lf-cta { padding: 72px 0; }
  .lf-cta-title { font-size: clamp(26px, 8vw, 44px); }
  .lf-cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .lf-cta-btn-white,
  .lf-cta-btn-outline { width: 100%; max-width: 280px; justify-content: center; }

  /* Gallery in LF page */
  .lf-gallery-row { gap: 6px; }
  .lf-gimg { height: 160px; }
  .lf-gimg-land { width: 240px; }
  .lf-gimg-port { width: 107px; }
}

@media (max-width: 480px) {
  .lf-hero-title { font-size: clamp(40px, 13vw, 64px); }
  .lf-hero-stat { width: 50%; }
  .lf-founders-grid,
  .lf-reviews-grid { grid-template-columns: 1fr !important; }
}

/* ─── MOBILE MENU FULL SCREEN ────────────────────────────── */
@media (max-width: 768px) {
  .mobile-menu { gap: 24px; }
  .mobile-menu a { font-size: 30px; }
  .mobile-close { font-size: 24px; top: 20px; right: 20px; }
}

/* ─── SAFE AREA (iPhone notch / home bar) ────────────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  footer { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
  .wa-float { bottom: calc(20px + env(safe-area-inset-bottom)); }
}


/* ─── ADDITIONAL FIXES ───────────────────────────────────── */

/* Portfolio bg fills the grid-controlled cell */
.portfolio-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Hero lines — block on mobile to prevent mid-word break */
.hero-line { display: block; }

/* Services section header on mobile */
@media (max-width: 640px) {
  .svc-section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
  }
}

/* Intro visual on mobile: full width, no overflow */
@media (max-width: 768px) {
  .intro-visual {
    height: 360px;
    width: 100%;
    overflow: hidden;
  }
  .intro-img-main {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    top: auto !important;
    left: auto !important;
  }
  .intro-img-main::after {
    background: linear-gradient(to bottom, transparent 60%, var(--warm-white) 100%) !important;
  }
  .intro-year-badge {
    bottom: 16px;
    left: 16px;
  }
}

/* Portfolio grid: always keep images visible */
@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr !important;
    height: auto !important;
    gap: 8px;
  }
  .portfolio-item { min-height: 180px; }
  .portfolio-item:first-child { grid-column: auto; }
  .portfolio-overlay { opacity: 1 !important; }
}

/* Tale cards on work page — masonry columns needs help on mobile */
@media (max-width: 640px) {
  .tales-grid {
    columns: 1 !important;
  }
  .tale-card { margin-bottom: 16px; }
  .tale-img { aspect-ratio: 4/3 !important; }
  .tale-card.tall .tale-img,
  .tale-card.wide .tale-img,
  .tale-card.square .tale-img { aspect-ratio: 4/3 !important; }
}

/* Our story brand-card grid (new collective section) */
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 1fr"][style*="min-height:440px"] {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
}

/* Form submit button full width on mobile */
@media (max-width: 640px) {
  .form-submit { font-size: 9px; padding: 14px 20px; }
}

/* Loader stays centred on all sizes */
.loader-logo { max-width: 160px; height: auto; }
.loader-bar-wrap { width: min(180px, 60vw); }

