/* ============================================================
   NOREMYAH PRODUCTIONS - Public site
   Light / warm editorial theme · orange brand · 2026
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --brand:      #F1571F;
  --brand-2:    #FF7A3D;
  --brand-deep: #C93C09;
  --brand-soft: #FFF1EA;
  --brand-glow: rgba(241, 87, 31, 0.30);

  --bg:    #FFFFFF;
  --bg-1:  #FBF8F5;   /* warm off white */
  --bg-2:  #F5EFE8;   /* cream */
  --bg-3:  #FFFFFF;   /* cards */

  --ink:   #1D1913;   /* near black, warm */
  --text:  #26221C;
  --muted: #6E6A62;
  --faint: #9C978D;
  --line:  rgba(29, 25, 19, 0.10);
  --line-2:rgba(29, 25, 19, 0.16);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shadow: 0 26px 60px -30px rgba(70, 45, 20, 0.35);
  --shadow-soft: 0 14px 40px -20px rgba(70, 45, 20, 0.25);
  --shadow-glow: 0 18px 45px -16px var(--brand-glow);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--brand); border-radius: 2px; }

.section { padding-block: clamp(72px, 10vw, 130px); position: relative; }
.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 58px); }
.section-head h2 { font-size: clamp(2.1rem, 5.4vw, 3.7rem); margin-top: 16px; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 18px; }

.text-brand { color: var(--brand); }
.italic { font-style: italic; }
.grad { color: var(--brand); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(180deg, var(--brand-2), var(--brand)); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 55px -16px var(--brand-glow); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--brand); color: var(--brand); }
.btn-light { background: #fff; color: var(--brand); box-shadow: var(--shadow-soft); }
.btn-light:hover { transform: translateY(-3px); }
.btn-lg { --pad-y: 17px; --pad-x: 34px; font-size: 1.03rem; }
.btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 16px var(--gutter);
  transition: transform .45s var(--ease), background .4s, backdrop-filter .4s, box-shadow .4s, padding .4s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(70,45,20,0.3);
  padding-block: 11px;
}
.nav.hide { transform: translateY(-102%); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px; border-radius: 999px; font-size: 0.94rem; color: var(--muted);
  font-weight: 500; transition: color .25s, background .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: rgba(29,25,19,0.05); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; position: relative; z-index: 2; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); background: #fff; flex-direction: column; gap: 5px; align-items: center; justify-content: center; transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .2s var(--ease), background .3s var(--ease); }

/* While over the video hero (before scroll): light logo + links */
.nav.over-hero:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
.nav.over-hero:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.82); }
.nav.over-hero:not(.scrolled) .nav-links a:hover, .nav.over-hero:not(.scrolled) .nav-links a.active { color: #fff; background: rgba(255,255,255,0.16); }
.nav.over-hero:not(.scrolled) .btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.45); }
.nav.over-hero:not(.scrolled) .btn-ghost:hover { border-color: #fff; color: #fff; }
.nav.over-hero:not(.scrolled) .nav-toggle { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.nav.over-hero:not(.scrolled) .nav-toggle span { background: #fff; }

/* ===== Menu open: app-style takeover. Hamburger morphs to an X and turns brand-orange. ===== */
body.menu-open .nav { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
body.menu-open .nav .brand img { filter: brightness(0) invert(1); }
body.menu-open .nav-cta .btn { display: none; }
body.menu-open .nav-toggle { background: var(--brand); border-color: var(--brand); box-shadow: 0 10px 26px -8px rgba(241,87,31,0.75); }
body.menu-open .nav-toggle span { background: #fff; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0.2); }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Beat the over-hero nav rule (higher specificity) so the button turns brand-orange on the homepage too. */
body.menu-open .nav.over-hero:not(.scrolled) .nav-toggle { background: var(--brand); border-color: var(--brand); }
body.menu-open .nav.over-hero:not(.scrolled) .nav-toggle span { background: #fff; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; display: none;
  flex-direction: column; justify-content: flex-start; gap: 4px;
  padding: max(84px, calc(64px + env(safe-area-inset-top))) 22px calc(28px + env(safe-area-inset-bottom));
  color: #fff;
  background:
    radial-gradient(120% 72% at 100% 0%, rgba(241,87,31,0.28), transparent 55%),
    linear-gradient(168deg, #241811 0%, #150d08 60%, #100a06 100%);
  opacity: 0; pointer-events: none;
  overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  transition: opacity .3s var(--ease);
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: auto; }

/* App-style list rows: icon + label + chevron */
.mobile-menu a:not(.btn) {
  position: relative; display: flex; align-items: center; gap: 13px;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; line-height: 1;
  padding: 14px 4px; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: color .2s, background .2s, padding-left .25s var(--ease);
}
.mobile-menu a:not(.btn)::before {
  content: ''; width: 20px; height: 20px; flex: none; background: currentColor;
  -webkit-mask: var(--ic) center / contain no-repeat; mask: var(--ic) center / contain no-repeat;
}
.mobile-menu a:not(.btn)::after {
  content: ''; width: 9px; height: 9px; margin-left: auto; flex: none;
  border-right: 2px solid rgba(255,255,255,0.38); border-top: 2px solid rgba(255,255,255,0.38);
  transform: rotate(45deg); transition: border-color .2s, transform .2s;
}
.mobile-menu a:not(.btn):hover, .mobile-menu a:not(.btn):active, .mobile-menu a:not(.btn).active {
  color: var(--brand-2); background: rgba(255,255,255,0.05); padding-left: 14px;
}
.mobile-menu a:not(.btn):hover::after, .mobile-menu a:not(.btn).active::after { border-color: var(--brand-2); transform: translateX(3px) rotate(45deg); }
.mobile-menu a[data-i18n="nav.home"]      { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.5 12 3l9 7.5'/%3E%3Cpath d='M5 9.5V21h14V9.5'/%3E%3C/svg%3E"); }
.mobile-menu a[data-i18n="nav.services"]  { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='6' rx='1.5'/%3E%3Crect x='3' y='14' width='18' height='6' rx='1.5'/%3E%3C/svg%3E"); }
.mobile-menu a[data-i18n="nav.portfolio"] { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Ccircle cx='9' cy='10' r='2'/%3E%3Cpath d='m4 18 5-4 4 3 3-2 4 3'/%3E%3C/svg%3E"); }
.mobile-menu a[data-i18n="nav.about"]     { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21v-1a6 6 0 0 1 6-6h4a6 6 0 0 1 6 6v1'/%3E%3C/svg%3E"); }
/* The menu's "Get a Quote" button is redundant with the Book tab — hidden. */
.mobile-menu a.btn { display: none; }

/* Staggered entrance for each row */
@media (prefers-reduced-motion: no-preference) {
  .mobile-menu.open > * { animation: menuItemIn .5s var(--ease) both; }
  .mobile-menu.open > *:nth-child(1) { animation-delay: .04s; }
  .mobile-menu.open > *:nth-child(2) { animation-delay: .09s; }
  .mobile-menu.open > *:nth-child(3) { animation-delay: .14s; }
  .mobile-menu.open > *:nth-child(4) { animation-delay: .19s; }
  .mobile-menu.open > *:nth-child(5) { animation-delay: .25s; }
  .mobile-menu.open > *:nth-child(6) { animation-delay: .31s; }
}
@keyframes menuItemIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ===== App bottom tab bar (injected by config.js; shown on phones only) ===== */
.app-tabbar { display: none; }
body.menu-open .app-tabbar { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 60px; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
/* Color overlay on the showreel video: warm dark for legibility + orange brand tint */
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(22,14,9,0.86) 0%, rgba(22,14,9,0.58) 38%, rgba(22,14,9,0.34) 62%, rgba(22,14,9,0.52) 100%),
    linear-gradient(180deg, rgba(22,14,9,0.55) 0%, rgba(22,14,9,0.12) 30%, rgba(22,14,9,0.45) 100%),
    linear-gradient(125deg, rgba(241,87,31,0.28), rgba(241,87,31,0) 55%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.hero h1 { font-size: clamp(2.9rem, 8vw, 6rem); letter-spacing: -0.02em; max-width: 15ch; color: #fff; }
.hero .eyebrow { color: var(--brand-2); }
.hero .grad { color: var(--brand-2); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; transform: translateY(110%); animation: heroUp .95s var(--ease) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes heroUp { to { transform: translateY(0); } }

.hero-sub { max-width: 500px; margin-top: 26px; font-size: clamp(1.05rem, 2vw, 1.24rem); color: rgba(255,255,255,0.9);
  opacity: 0; animation: fadeUp .9s var(--ease) .5s forwards; }
.hero-sub strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; opacity: 0; animation: fadeUp .9s var(--ease) .66s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 56px); margin-top: 54px; opacity: 0; animation: fadeUp .9s var(--ease) .82s forwards; }
.hero-stats .stat strong { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 4vw, 2.5rem); display: block; color: #fff; }
.hero-stats .stat span { color: rgba(255,255,255,0.72); font-size: 0.9rem; }

/* Hero buttons + glassy secondary over the video */
.hero .btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.45); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: #fff; color: #fff; }

.scroll-cue { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.72); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadeUp 1s ease 1.1s forwards; }
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.5); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: var(--brand); border-radius: 2px; animation: wheel 1.6s var(--ease) infinite; }
@keyframes wheel { 0%{opacity:0; transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0; transform:translate(-50%,12px)} }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); padding-block: 20px; overflow: hidden; background: var(--bg-1); }
.marquee-track { display: flex; gap: 52px; width: max-content; animation: scrollX 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.2rem; color: var(--faint); display: inline-flex; align-items: center; gap: 52px; white-space: nowrap; }
.marquee-item::after { content: '✦'; color: var(--brand); font-style: normal; }
@keyframes scrollX { to { transform: translateX(-50%); } }

.marq-pill { font-size: 0.72rem; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--muted); background: #fff; transition: all .3s var(--ease); }
.marq-pill:hover { color: var(--brand); border-color: var(--brand); transform: translateY(-2px); }

/* ---------- Entrance animations (reveal on scroll) ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .85s var(--ease), transform .9s var(--ease), filter .85s var(--ease); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-scale { transform: scale(.9); }
.reveal-rise  { transform: translateY(54px) scale(.97); }
.reveal-blur  { transform: translateY(22px); filter: blur(16px); }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }
.reveal[data-delay="5"] { transition-delay: .35s; }
.reveal[data-delay="6"] { transition-delay: .42s; }
.reveal[data-delay="7"] { transition-delay: .49s; }
.reveal[data-delay="8"] { transition-delay: .56s; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.svc {
  position: relative; grid-column: span 4; padding: 30px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  overflow: hidden; transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
  box-shadow: 0 1px 2px rgba(70,45,20,0.04);
}
.svc:hover { transform: translateY(-6px); border-color: rgba(241,87,31,0.35); box-shadow: var(--shadow-soft); }
.svc.featured { grid-column: span 8; background:
  radial-gradient(120% 150% at 100% 0%, var(--brand-soft), #fff 55%); }
.svc.wide { grid-column: span 6; }
.svc-icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-soft); border: 1px solid rgba(241,87,31,0.18); color: var(--brand); margin-bottom: 22px; transition: transform .4s var(--ease); }
.svc:hover .svc-icon { transform: scale(1.08) rotate(-4deg); }
.svc-icon svg { width: 26px; height: 26px; }
.svc h3 { font-size: 1.4rem; margin-bottom: 10px; }
.svc p { color: var(--muted); font-size: 0.98rem; }
.svc .tag { position: absolute; top: 22px; right: 22px; font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); background: var(--brand-soft); border: 1px solid rgba(241,87,31,0.22); padding: 5px 11px; border-radius: 999px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--brand); font-weight: 600; font-size: 0.93rem; }
.svc-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.svc:hover .svc-link svg { transform: translateX(4px); }

/* ---------- YouTube background (hero) ---------- */
.yt-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.yt-bg { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh; transform: translate(-50%, -50%); border: 0; pointer-events: none; }

/* ---------- Service tiles (image-led, click to see work) ---------- */
.svc-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tile { position: relative; display: block; grid-column: span 1; min-height: 320px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(70,45,20,0.05); transition: transform .4s var(--ease), box-shadow .4s; }
.tile.span2 { grid-column: span 2; }
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tile-bg { position: absolute; inset: 0; }
.tile-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tile:hover .tile-bg img { transform: scale(1.07); }
.tile-bg.grad { display: grid; place-items: center; background: linear-gradient(140deg, var(--brand-deep), var(--brand) 60%, var(--brand-2)); }
.tile-bg.grad.purple { background: linear-gradient(140deg, #3f2384, #7a2bff 75%); }
.tile-bg.grad.dark { background: linear-gradient(140deg, #201a13, #3a2a1c 90%); }
.tile-bg.grad > svg { width: 58px; height: 58px; color: rgba(255,255,255,0.92); }
.tile-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,9,5,0.88) 0%, rgba(14,9,5,0.28) 48%, rgba(14,9,5,0.05) 100%); }
.tile-tag { position: absolute; top: 16px; left: 16px; z-index: 2; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: rgba(20,14,9,0.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); padding: 6px 12px; border-radius: 999px; }
.tile-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 22px; color: #fff; }
.tile-body h3 { color: #fff; font-size: 1.4rem; }
.tile-body p { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin-top: 6px; max-width: 40ch; }
.tile-see { display: inline-flex; align-items: center; gap: 6px; margin-top: 13px; color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; }
.tile-see svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.tile:hover .tile-see svg { transform: translateX(4px); }

/* ---------- Services carousel (one line, animated) ---------- */
.svc-carousel { position: relative; }
.svc-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 2px 8px; -ms-overflow-style: none; scrollbar-width: none; }
.svc-track::-webkit-scrollbar { display: none; }
.svc-track .tile { flex: 0 0 clamp(260px, 78vw, 330px); scroll-snap-align: start; min-height: 390px; grid-column: auto; }
.svc-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 1px solid var(--line-2); box-shadow: var(--shadow-soft); display: grid; place-items: center; color: var(--ink); transition: transform .25s var(--ease), color .25s, border-color .25s, opacity .25s; }
.svc-arrow:hover { color: var(--brand); border-color: var(--brand); }
.svc-arrow svg { width: 20px; height: 20px; }
.svc-arrow.prev { left: -14px; }
.svc-arrow.next { right: -14px; }
.svc-arrow[disabled] { opacity: 0; pointer-events: none; }
.svc-hint { display: none; }
@media (max-width: 900px) { .svc-arrow { display: none; } .svc-hint { display: block; color: var(--faint); font-size: 0.85rem; margin-top: 10px; text-align: center; } }

/* ---------- Feature band ---------- */
.feature { background: var(--bg-1); border-block: 1px solid var(--line); overflow: hidden; }
.feature-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.feature-copy h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-top: 16px; }
.feature-copy p { color: var(--muted); margin-top: 18px; font-size: 1.07rem; }
.feature-list { margin-top: 28px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .chk { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--brand-soft); border: 1px solid rgba(241,87,31,0.22); display: grid; place-items: center; color: var(--brand); }
.feature-list .chk svg { width: 15px; height: 15px; }
.feature-list b { font-family: var(--font-body); font-weight: 600; color: var(--ink); }
.feature-list span { color: var(--muted); font-size: 0.96rem; }

.device { position: relative; }
.phone { position: relative; margin-inline: auto; width: min(300px, 78vw); aspect-ratio: 300/610; border-radius: 42px; background: linear-gradient(180deg, #2a2620, #17140f); border: 1px solid rgba(0,0,0,0.2); box-shadow: var(--shadow); padding: 12px; }
.phone::before { content: ''; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; background: #0b0a08; border-radius: 999px; z-index: 3; }
.phone-screen { height: 100%; border-radius: 32px; overflow: hidden; background: radial-gradient(120% 90% at 50% 0%, rgba(241,87,31,0.25), #201c17 55%); position: relative; color: #fff; }
.phone-screen .ps-top { padding: 42px 18px 0; }
.phone-screen .ps-pill { display: inline-block; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-2); border: 1px solid rgba(241,87,31,0.4); border-radius: 999px; padding: 4px 10px; }
.phone-screen h4 { font-family: var(--font-display); font-size: 1.35rem; margin: 12px 0 6px; color: #fff; }
.phone-screen small { color: rgba(255,255,255,0.6); font-size: 0.72rem; }
.ps-card { margin: 16px; padding: 14px; border-radius: 16px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); }
.ps-card .row { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; margin-bottom: 8px; }
.ps-bar { height: 7px; border-radius: 6px; background: rgba(255,255,255,0.12); overflow: hidden; }
.ps-bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); border-radius: 6px; }
.ps-btn { margin: 16px; text-align: center; padding: 12px; border-radius: 14px; background: linear-gradient(180deg,var(--brand-2),var(--brand)); color:#fff; font-weight: 600; font-size: 0.82rem; }
.float-badge { position: absolute; padding: 12px 15px; border-radius: 14px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); font-size: 0.8rem; display: flex; align-items: center; gap: 10px; color: var(--ink); }
.float-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #34c759; box-shadow: 0 0 12px #34c759; }
.float-badge.b1 { top: 12%; left: -6%; animation: bob 5s ease-in-out infinite; }
.float-badge.b2 { bottom: 16%; right: -8%; animation: bob 6s ease-in-out infinite .8s; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ---------- Gallery ---------- */
.gallery { columns: 3; column-gap: 16px; }
.gallery .shot { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; position: relative; border: 1px solid var(--line); cursor: pointer; background: var(--bg-2); display: block; width: 100%; padding: 0; box-shadow: 0 1px 2px rgba(70,45,20,0.05); }
.gallery .shot img { width: 100%; display: block; transition: transform .6s var(--ease); }
.gallery .shot:hover img { transform: scale(1.05); }
.shot .shot-meta { display: none; } /* image captions removed per request — clean photos */

/* Lightbox */
.lightbox { border: none; padding: 0; background: transparent; max-width: min(92vw, 1000px); max-height: 92vh; color: var(--ink); }
.lightbox::backdrop { background: rgba(30,22,12,0.7); backdrop-filter: blur(6px); }
.lightbox img { border-radius: var(--radius); max-height: 84vh; width: auto; margin-inline: auto; box-shadow: var(--shadow); }
.lightbox .lb-cap { text-align: center; margin-top: 14px; font-family: var(--font-display); color: #fff; }
.lightbox .lb-close { position: absolute; top: -14px; right: -14px; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line-2); color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-soft); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.92); border: 1px solid var(--line-2); color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-soft); transition: transform .2s var(--ease), background .2s; }
.lb-nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.lb-nav svg { width: 22px; height: 22px; }
.lb-nav.prev { left: -22px; }
.lb-nav.next { right: -22px; }
.lb-nav[hidden] { display: none; }
@media (max-width: 720px) { .lb-nav { width: 44px; height: 44px; } .lb-nav.prev { left: 6px; } .lb-nav.next { right: 6px; } }

/* ---------- Portfolio page ---------- */
.pf-hero { position: relative; padding: clamp(130px, 18vh, 200px) 0 clamp(40px, 6vw, 70px); background:
  radial-gradient(90% 120% at 100% 0%, var(--brand-soft), transparent 55%), var(--bg-1); border-bottom: 1px solid var(--line); overflow: hidden; }
.pf-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); max-width: 16ch; margin-top: 16px; }
.pf-hero p { color: var(--muted); font-size: 1.1rem; margin-top: 18px; max-width: 56ch; }
.svc-back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; transition: color .2s; }
.svc-back:hover { color: var(--brand); }
.svc-back svg { width: 16px; height: 16px; }
.pf-toolbar { position: sticky; top: 68px; z-index: 40; background: rgba(255,251,246,0.86); -webkit-backdrop-filter: saturate(150%) blur(14px); backdrop-filter: saturate(150%) blur(14px); border-bottom: 1px solid var(--line); }
.pf-filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; padding-block: 16px; }
.pf-filter { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line-2); background: #fff; color: var(--muted); font-weight: 500; font-size: 0.92rem; font-family: var(--font-body); transition: all .25s var(--ease); }
.pf-filter:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.pf-filter.active { background: linear-gradient(180deg, var(--brand-2), var(--brand)); color: #fff; border-color: transparent; box-shadow: var(--shadow-glow); }
.pf-count { margin-left: auto; color: var(--faint); font-size: 0.86rem; }
.pf-body { padding-block: clamp(36px, 5vw, 60px); }
.pf-empty { text-align: center; color: var(--muted); padding: 60px 20px; }

/* ---------- Custom pages (CMS) ---------- */
.page-section { padding-top: clamp(30px, 5vh, 56px); }
.page-content { max-width: 760px; margin: 0 auto; font-size: 1.06rem; line-height: 1.75; color: var(--ink); }
.page-content h2 { font-size: clamp(1.5rem, 3.4vw, 2rem); margin: 34px 0 12px; }
.page-content h3 { font-size: 1.28rem; margin: 26px 0 10px; }
.page-content p { margin: 0 0 18px; }
.page-content a { color: var(--brand); text-decoration: underline; }
.page-content ul, .page-content ol { margin: 0 0 18px; padding-left: 24px; }
.page-content li { margin-bottom: 8px; }
.page-content img { max-width: 100%; height: auto; border-radius: 14px; margin: 20px 0; display: block; }
.page-content b, .page-content strong { font-weight: 600; }
.page-content blockquote { border-left: 3px solid var(--brand); margin: 20px 0; padding: 4px 0 4px 20px; color: var(--muted); font-style: italic; }
.page-note { text-align: center; color: var(--muted); padding: 40px 0 20px; }
.page-note h2 { color: var(--ink); margin-bottom: 10px; }
.shot.hide { display: none !important; }
@keyframes pop { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
.shot.pop { animation: pop .5s var(--ease) both; }

/* Homepage "view full portfolio" */
.work-more { display: flex; justify-content: center; margin-top: 40px; }

/* ---------- Store / offerings ---------- */
.offer-section { padding-block: clamp(40px, 5vw, 66px); }
.offer-group { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.offer-group h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
.offer-group span { color: var(--faint); font-size: 0.92rem; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 1px 2px rgba(70,45,20,0.05); transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(241,87,31,0.35); }
.offer-head { aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--bg-2); }
.offer-head img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.offer-card:hover .offer-head img { transform: scale(1.06); }
.offer-head.brandwrap { display: grid; place-items: center; background: linear-gradient(135deg, var(--brand-deep), var(--brand) 58%, var(--brand-2)); }
.offer-head.brandwrap svg { width: 52px; height: 52px; color: #fff; position: relative; z-index: 1; }
.offer-head.brandwrap::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 100% at 18% 0%, rgba(255,255,255,0.22), transparent 60%); }
.offer-head.purplewrap { background: linear-gradient(135deg, #4b2b8a, #7a2bff 70%); }
.offer-tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,0.92); color: var(--brand); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.offer-tag.dark { background: rgba(20,14,9,0.5); color: #fff; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.offer-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.offer-body h3 { font-size: 1.35rem; }
.offer-body p { color: var(--muted); font-size: 0.96rem; margin-top: 10px; }
.offer-feats { margin-top: 16px; display: grid; gap: 8px; }
.offer-feats li { display: flex; gap: 9px; align-items: flex-start; color: var(--text); font-size: 0.9rem; }
.offer-feats svg { width: 15px; height: 15px; color: var(--brand); flex: none; margin-top: 4px; }
.offer-meta { margin-top: auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.offer-price { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.offer-price small { color: var(--faint); font-weight: 400; font-size: 0.8rem; font-family: var(--font-body); display: block; }
.badge-soon { color: var(--faint); font-size: 0.78rem; border: 1px solid var(--line-2); padding: 5px 11px; border-radius: 999px; }
.offer-cta { margin-top: 16px; }
.offer-cta .btn { width: 100%; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner { position: relative; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 76px) clamp(28px, 5vw, 68px); overflow: hidden;
  background: linear-gradient(120deg, var(--brand-deep), var(--brand) 55%, var(--brand-2)); color: #fff; text-align: center; box-shadow: var(--shadow); }
.cta-inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 120% at 15% 10%, rgba(255,255,255,0.18), transparent 60%); }
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner .eyebrow { color: rgba(255,255,255,0.85); }
.cta-inner .eyebrow::before { background: rgba(255,255,255,0.7); }
.cta-inner h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); max-width: 16ch; margin: 16px auto 0; }
.cta-inner p { color: rgba(255,255,255,0.9); margin: 16px auto 0; max-width: 52ch; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---------- Booking form ---------- */
.book { background: var(--bg-1); }
.book-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 54px); box-shadow: var(--shadow-soft); }
.book-copy h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-top: 16px; }
.book-copy p { color: var(--muted); margin-top: 16px; }
.book-perks { margin-top: 26px; display: grid; gap: 12px; }
.book-perks li { display: flex; gap: 12px; align-items: center; color: var(--text); font-size: 0.96rem; }
.book-perks svg { width: 20px; height: 20px; color: var(--brand); flex: none; }

.form { display: grid; gap: 16px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-body); font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.field .req { color: var(--brand); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  background: var(--bg-1); border: 1px solid var(--line-2); color: var(--ink);
  font-family: inherit; font-size: 0.98rem; transition: border-color .25s, background .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 4px rgba(241,87,31,0.12);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236E6A62' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field .err { display: none; color: #c62b23; font-size: 0.82rem; }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #e5484d; background: #fdf2f1; }
.field input:user-invalid ~ .err, .field select:user-invalid ~ .err, .field textarea:user-invalid ~ .err { display: block; }
.field input:user-valid, .field select:user-valid, .field textarea:user-valid { border-color: rgba(52,199,89,0.55); }
.form-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form-note { color: var(--faint); font-size: 0.84rem; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; animation: fadeUp .6s var(--ease); }
.form-success .badge { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center; background: rgba(52,199,89,0.12); border: 1px solid rgba(52,199,89,0.4); color: #2ba84a; }
.form-success .badge svg { width: 38px; height: 38px; }
.form-success h3 { font-size: 1.7rem; }
.form-success p { color: var(--muted); margin-top: 10px; }

/* ---------- Footer ---------- */
.footer { padding-block: 60px 30px; background: #1c1712; color: #f4efe9; }
.footer .brand img { height: 42px; }
.footer p.tag { color: rgba(244,239,233,0.62); margin-top: 16px; max-width: 300px; font-size: 0.95rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 32px; align-items: start; }
.footer h5 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,239,233,0.5); margin-bottom: 16px; }
.footer li { margin-bottom: 10px; }
.footer li a { color: rgba(244,239,233,0.75); font-size: 0.95rem; transition: color .25s; }
.footer li a:hover { color: var(--brand-2); }
/* Footer photo slider — hidden until the owner adds photos in Admin > Photos ("Footer"). */
.footer-img { display: none; position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; }
.footer-img.on { display: block; }
.footer-img .fslide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s var(--ease), transform .6s var(--ease); }
.footer-img .fslide.on { opacity: 1; }
.footer-img:hover .fslide.on { transform: scale(1.05); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(244,239,233,0.14); color: rgba(244,239,233,0.5); font-size: 0.86rem; }
.footer-bottom a { color: rgba(244,239,233,0.5); }
.footer-bottom a:hover { color: var(--brand-2); }

/* Language switcher */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--line-2); border-radius: 999px; padding: 3px; }
.lang-switch.in-nav { margin-left: 10px; }
.lang-btn { display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; color: var(--muted); padding: 5px 9px; border-radius: 999px; transition: background .2s, color .2s; }
.lang-btn .flag { font-size: 0.95rem; line-height: 1; }
.lang-btn:hover { color: var(--ink); }
.lang-btn.on { background: var(--brand); color: #fff; }
.nav.over-hero:not(.scrolled) .lang-switch { border-color: rgba(255,255,255,0.35); }
.nav.over-hero:not(.scrolled) .lang-btn { color: rgba(255,255,255,0.85); }
.nav.over-hero:not(.scrolled) .lang-btn.on { background: var(--brand); color: #fff; }
.lang-switch.in-menu { align-self: center; margin-top: 20px; gap: 4px; padding: 4px; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); }
.lang-switch.in-menu .lang-btn { font-size: 0.92rem; padding: 10px 15px; color: rgba(255,255,255,0.78); }
.lang-switch.in-menu .lang-btn:hover { color: #fff; }
.lang-switch.in-menu .lang-btn.on { background: var(--brand); color: #fff; }
.lang-switch.in-menu .lang-btn .flag { font-size: 1.2rem; }

/* Compact mobile language control (flag + chevron, no border) — lives in the top bar */
.lang-mini { display: none; position: relative; }
.lang-mini-btn { display: flex; align-items: center; gap: 3px; padding: 6px 2px; background: none; border: none; color: var(--ink); cursor: pointer; }
.lang-mini-btn .flag { font-size: 1.3rem; line-height: 1; }
.lang-mini-btn .chev { width: 14px; height: 14px; opacity: 0.65; transition: transform .2s var(--ease); }
.lang-mini.open .lang-mini-btn .chev { transform: rotate(180deg); }
.nav.over-hero:not(.scrolled) .lang-mini-btn { color: #fff; }
.lang-mini-pop { position: absolute; top: calc(100% + 8px); right: 0; min-width: 120px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 20px 44px -16px rgba(70,45,20,0.4); padding: 6px; display: none; flex-direction: column; gap: 2px; z-index: 120; }
.lang-mini.open .lang-mini-pop { display: flex; animation: menuItemIn .25s var(--ease) both; }
.lang-mini-pop .lang-btn { display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-radius: 9px; font-size: 0.88rem; font-weight: 600; color: var(--muted); background: none; border: none; text-align: left; }
.lang-mini-pop .lang-btn .flag { font-size: 1.15rem; }
.lang-mini-pop .lang-btn:hover { background: rgba(29,25,19,0.05); color: var(--ink); }
.lang-mini-pop .lang-btn.on { color: var(--brand); }
@media (max-width: 960px) { .lang-mini { display: block; } }
body.menu-open .lang-mini { display: none; }

/* No caption text under lightbox pictures */
.lb-cap { display: none; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; display: none;
  transform: translateY(140%); transition: transform .4s var(--ease); }
.sticky-cta .btn { width: 100%; box-shadow: 0 16px 34px -12px rgba(241,87,31,0.5); }
.sticky-cta.show { transform: none; }

/* ---------- Floating lead form ---------- */
.nrm-chat { position: fixed; right: 20px; bottom: 20px; z-index: 96; }
.nrm-chat-fab { position: relative; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(180deg, var(--brand-2), var(--brand)); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 32px -8px var(--brand-glow); transition: transform .3s var(--ease), opacity .25s var(--ease); }
.nrm-chat-fab:hover { transform: scale(1.06); }
.nrm-chat-fab svg { width: 24px; height: 24px; }
/* While the panel is open, hide the button (close via the X); bounce it back on close. */
.nrm-chat.open .nrm-chat-fab { opacity: 0; transform: scale(0.5); pointer-events: none; }
.nrm-chat-fab.bounce { animation: fabPop .55s var(--ease); }
@keyframes fabPop { 0% { transform: scale(0.4); opacity: 0; } 55% { transform: scale(1.12); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }
.nrm-chat-pop { position: absolute; right: 72px; top: 50%; transform: translateY(-50%) translateX(10px); white-space: nowrap; background: #fff; color: var(--ink); font-size: 0.86rem; font-weight: 500; padding: 9px 14px; border-radius: 12px; box-shadow: var(--shadow-soft); opacity: 0; pointer-events: none; transition: opacity .4s, transform .4s var(--ease); }
.nrm-chat-fab.show-pop .nrm-chat-pop { opacity: 1; transform: translateY(-50%) translateX(0); }
.nrm-chat-pop::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 10px; height: 10px; background: #fff; }
.nrm-chat.open .nrm-chat-pop { display: none; }

.nrm-chat-panel { position: absolute; right: 0; bottom: 72px; width: 330px; max-width: calc(100vw - 40px); max-height: min(78svh, 540px); display: flex; flex-direction: column; background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 30px 70px -18px rgba(70,45,20,0.4); transform-origin: bottom right; transform: translateY(14px) scale(0.96); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.nrm-chat.open .nrm-chat-panel { opacity: 1; transform: none; pointer-events: auto; }
.nrm-chat-head { flex: none; background: linear-gradient(135deg, var(--brand-deep), var(--brand)); color: #fff; padding: 14px 15px; display: flex; align-items: center; gap: 12px; }
.nrm-chat-ava { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.2); display: grid; place-items: center; flex: none; }
.nrm-chat-ava svg { width: 22px; height: 22px; color: #fff; }
.nrm-chat-id { flex: 1; min-width: 0; }
.nrm-chat-id b { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; line-height: 1.2; }
.nrm-chat-id span { font-size: 0.76rem; opacity: 0.92; }
.nrm-chat-x { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.16); color: #fff; display: grid; place-items: center; flex: none; transition: background .2s; }
.nrm-chat-x:hover { background: rgba(255,255,255,0.3); }
.nrm-chat-x svg { width: 15px; height: 15px; }
.nrm-chat-body { padding: 15px 16px; background: #fff; flex: 1 1 auto; min-height: 0; overflow-y: auto; }
.nrm-chat-hi { font-size: 0.9rem; line-height: 1.55; color: var(--muted); margin-bottom: 15px; }
.nrm-chat-form { display: grid; gap: 11px; }
.nrm-f { display: grid; gap: 5px; }
.nrm-f label { font-size: 0.78rem; font-weight: 600; color: var(--ink); }
.nrm-f label span { font-weight: 400; color: var(--faint); }
.nrm-f input, .nrm-f textarea { width: 100%; border: 1px solid var(--line-2); border-radius: 11px; padding: 11px 13px; font-size: 0.92rem; font-family: inherit; color: var(--ink); background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; }
.nrm-f textarea { resize: vertical; min-height: 62px; }
.nrm-f input:focus, .nrm-f textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(241,87,31,0.12); }
.nrm-chat-err { color: var(--brand-deep); font-size: 0.8rem; min-height: 2px; }
.nrm-chat-err:empty { min-height: 0; }
.nrm-chat-submit { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; background: linear-gradient(180deg, var(--brand-2), var(--brand)); color: #fff; border-radius: 12px; font-family: var(--font-body); font-weight: 600; font-size: 0.94rem; box-shadow: var(--shadow-glow); transition: filter .2s, transform .2s; }
.nrm-chat-submit:hover { filter: brightness(1.05); transform: translateY(-1px); }
.nrm-chat-submit svg { width: 17px; height: 17px; }
.nrm-chat-alt { text-align: center; font-size: 0.8rem; color: var(--faint); margin-top: 13px; }
.nrm-chat-alt a { color: var(--brand); font-weight: 600; }
.nrm-chat-done { text-align: center; padding: 16px 6px 8px; animation: chatIn .4s var(--ease) both; }
.nrm-chat-check { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.nrm-chat-check svg { width: 28px; height: 28px; }
.nrm-chat-done h4 { font-size: 1.15rem; margin-bottom: 7px; }
.nrm-chat-done p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.nrm-chat-call2 { display: inline-block; margin-top: 15px; font-size: 0.88rem; font-weight: 600; color: var(--brand); }
@keyframes chatIn { from { opacity: 0; transform: translateY(8px); } }
@media (max-width: 560px) {
  .nrm-chat { right: 14px; bottom: calc(80px + env(safe-area-inset-bottom)); }
  .nrm-chat-fab { width: 46px; height: 46px; }
  .nrm-chat-fab svg { width: 21px; height: 21px; }
  .nrm-chat-pop { display: none; }
  .nrm-chat-panel { width: calc(100vw - 24px); bottom: 62px; max-height: calc(100svh - 230px); }
}

/* ---------- Showreel video section ---------- */
.showreel { position: relative; min-height: 88vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; color: #fff; }
.showreel-media { position: absolute; inset: 0; z-index: 0; }
.showreel-media img, .showreel-media video { width: 100%; height: 100%; object-fit: cover; }
.showreel-media .yt-cover { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.78vh; transform: translate(-50%, -50%); border: 0; pointer-events: none; }
.showreel-scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(18,12,7,0.6), rgba(18,12,7,0.48) 45%, rgba(18,12,7,0.72)),
  linear-gradient(120deg, rgba(241,87,31,0.28), transparent 60%); }
.showreel-inner { position: relative; z-index: 2; padding: 70px var(--gutter); max-width: 760px; }
.showreel-inner .eyebrow { color: var(--brand-2); justify-content: center; }
.showreel-inner h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin-top: 14px; }
.showreel-inner p { color: rgba(255,255,255,0.88); margin: 16px auto 0; max-width: 48ch; }
.showreel-play { width: 76px; height: 76px; border-radius: 50%; margin: 26px auto 0; display: grid; place-items: center; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: transform .3s var(--ease), background .3s; }
.showreel-play:hover { transform: scale(1.08); background: rgba(255,255,255,0.24); }
.showreel-play svg { width: 30px; height: 30px; color: #fff; margin-left: 3px; }
.reel-embed { position: relative; width: min(820px, 100%); margin: 28px auto 0; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: #000; border: 1px solid rgba(255,255,255,0.18); box-shadow: var(--shadow); }
.reel-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Contact methods (call / email / whatsapp rows) ---------- */
.contact-methods { display: grid; gap: 12px; margin-top: 24px; }
.contact-row { display: flex; align-items: center; gap: 13px; padding: 14px 16px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: #fff; color: var(--ink); transition: border-color .25s, transform .25s var(--ease), box-shadow .25s; }
.contact-row:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.contact-row .ic { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); }
.contact-row .ic svg { width: 20px; height: 20px; }
.contact-row.wa .ic { background: rgba(37,211,102,0.12); color: #1faa52; }
.contact-row .ct { min-width: 0; }
.contact-row b { font-family: var(--font-body); font-weight: 600; display: block; font-size: 0.95rem; }
.contact-row span { color: var(--muted); font-size: 0.88rem; word-break: break-word; }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); z-index: 200; background: #fff; border: 1px solid var(--line-2); border-radius: 14px; padding: 14px 20px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .35s, transform .35s var(--ease); display: flex; align-items: center; gap: 12px; max-width: 90vw; color: var(--ink); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { color: var(--brand); width: 20px; height: 20px; flex: none; }

/* ---------- View transitions ---------- */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
  ::view-transition-old(root) { animation: vtOut .35s var(--ease) both; }
  ::view-transition-new(root) { animation: vtIn .45s var(--ease) both; }
  @keyframes vtOut { to { opacity: 0; transform: translateY(-8px); } }
  @keyframes vtIn { from { opacity: 0; transform: translateY(10px); } }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: repeat(6, 1fr); }
  .svc, .svc.featured, .svc.wide { grid-column: span 6; }
  .svc-tiles { grid-template-columns: repeat(2, 1fr); }
  .tile.span2 { grid-column: span 2; }
  .feature-inner { grid-template-columns: 1fr; }
  .device { order: -1; margin-bottom: 20px; }
  .book-wrap { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer .brand-col { grid-column: 1 / -1; }
  .sticky-cta { display: block; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  /* Nav: keep it clean — logo + menu only. Quote lives in the menu + sticky bar. */
  .nav { padding-inline: 20px; }
  .nav-cta .btn { display: none; }

  /* App-like on phones: no web footer, no sticky bar — a native bottom tab bar instead. */
  .footer { display: none; }
  .sticky-cta { display: none; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .app-tabbar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 92;
    padding: 7px 6px calc(7px + env(safe-area-inset-bottom));
    background: rgba(255,251,246,0.9);
    -webkit-backdrop-filter: saturate(160%) blur(18px); backdrop-filter: saturate(160%) blur(18px);
    border-top: 1px solid var(--line); box-shadow: 0 -8px 30px -20px rgba(70,45,20,0.4);
  }
  .app-tabbar { align-items: flex-end; }
  .app-tabbar .tab { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 3px 0; color: var(--faint); font-family: var(--font-body); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.01em; transition: color .2s; }
  .app-tabbar .tab svg { width: 22px; height: 22px; }
  .app-tabbar .tab.active { color: var(--brand); }
  .app-tabbar .tab:active { color: var(--brand-2); }
  /* Raised center action button (Book) */
  .app-tabbar .tab.fab { color: var(--brand); font-weight: 700; }
  .app-tabbar .tab.fab .fab-btn { display: grid; place-items: center; width: 50px; height: 50px; margin-top: -22px; margin-bottom: 1px; border-radius: 50%; background: linear-gradient(180deg, var(--brand-2), var(--brand)); color: #fff; box-shadow: 0 10px 20px -6px var(--brand-glow); border: 3px solid #fffbf6; }
  .app-tabbar .tab.fab .fab-btn svg { width: 24px; height: 24px; }

  /* Hero: fit the phone, keep the overlay dark enough that white text reads */
  .hero { min-height: 90svh; padding: 92px 0 46px; }
  .hero-scrim { background:
    linear-gradient(180deg, rgba(18,12,7,0.62) 0%, rgba(18,12,7,0.5) 38%, rgba(18,12,7,0.9) 100%),
    linear-gradient(125deg, rgba(241,87,31,0.24), rgba(241,87,31,0) 60%); }
  .hero h1 { font-size: clamp(2.2rem, 10.5vw, 3.1rem); max-width: 100%; }
  .hero-sub { font-size: 1.06rem; margin-top: 20px; }
  .hero-actions { margin-top: 28px; gap: 12px; }
  .hero-stats { gap: 20px 30px; margin-top: 40px; }

  /* Fluid section rhythm */
  .section { padding-block: clamp(54px, 13vw, 82px); }
  .section-head { margin-bottom: 30px; }
  .section-head h2 { font-size: clamp(1.95rem, 8.5vw, 2.7rem); }
  .section-head p { font-size: 1rem; }

  .form .row2 { grid-template-columns: 1fr; }
  .gallery { columns: 2; column-gap: 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Full-width, thumb-friendly buttons where it counts (not the nav) */
  .hero-actions .btn, .form-foot .btn, .cta-actions .btn, .work-more .btn, .offer-cta .btn { width: 100%; }
  .btn-lg { --pad-y: 15px; }
  .offer-grid { grid-template-columns: 1fr; }
  .pf-toolbar { top: 60px; }
  .pf-count { display: none; }
  .svc-tiles { grid-template-columns: 1fr; }
  .tile, .tile.span2 { grid-column: span 1; }
  .tile { min-height: 260px; }
}

@media (max-width: 380px) {
  .gallery { columns: 1; }
  .hero-stats .stat strong { font-size: 1.6rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero h1 .line > span { transform: none; }
  .hero-media video, .hero-media .yt-bg, .showreel-media .yt-cover { display: none; }
}
