/* ============================================================
   Motti Avraham — Lefkada Photographer & Videographer
   Warm-romantic / natural-neutral system
   ============================================================ */

:root {
  /* Surfaces — warm neutral */
  --bg:        #f6f1e9;   /* warm cream */
  --bg-soft:   #efe7da;   /* stone */
  --bg-deep:   #2a2620;   /* warm near-black */
  --paper:     #fbf8f2;   /* lifted card */

  /* Ink */
  --ink:       #2c2720;
  --ink-soft:  #6c6457;
  --ink-faint: #9a9082;
  --on-dark:   #f4ede1;
  --on-dark-soft: rgba(244,237,225,0.72);

  /* Lines */
  --line:      #e3d9c8;
  --line-soft: #ece3d5;
  --line-dark: rgba(244,237,225,0.18);

  /* Accents — shared L/C, varied hue */
  --olive:     oklch(0.56 0.052 118);
  --olive-deep:oklch(0.46 0.05 118);
  --clay:      oklch(0.62 0.066 52);
  --clay-deep: oklch(0.52 0.066 52);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 1px 2px rgba(44,39,32,0.06), 0 6px 16px rgba(44,39,32,0.05);
  --shadow-md: 0 12px 40px rgba(44,39,32,0.12);
  --shadow-lg: 0 30px 80px rgba(44,39,32,0.22);

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--clay); color: var(--on-dark); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.section { padding: 130px 0; position: relative; }
.section--tight { padding: 96px 0; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--clay-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--clay);
  display: inline-block;
}
.eyebrow--center::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--clay);
  display: inline-block;
}
.eyebrow--light { color: var(--on-dark-soft); }
.eyebrow--light::before, .eyebrow--light::after { background: rgba(244,237,225,0.5); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; margin: 0; }

.display {
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 500;
  line-height: 0.98;
}
.h2 {
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.02;
}
.h3 { font-size: clamp(24px, 2.4vw, 32px); }
.lead {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
}
.italic { font-style: italic; }
.serif-accent { font-family: var(--serif); font-style: italic; font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.45s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.45s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--solid { background: var(--ink); color: var(--on-dark); }
.btn--solid:hover { background: var(--clay-deep); }

.btn--ghost-light { border-color: rgba(244,237,225,0.45); color: var(--on-dark); }
.btn--ghost-light:hover { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }

.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--on-dark); }

.link-underline {
  position: relative;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  padding-bottom: 3px;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.5s var(--ease);
  padding: 26px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: flex; flex-direction: column; line-height: 1; }
.nav__brand .name {
  font-family: var(--serif); font-weight: 500; font-size: 23px; letter-spacing: 0.04em;
}
.nav__brand .sub {
  font-family: var(--sans); font-weight: 400; font-size: 9.5px; letter-spacing: 0.36em;
  text-transform: uppercase; margin-top: 5px; opacity: 0.75;
}
.nav__links { display: flex; align-items: center; gap: 38px; }
.nav__links a {
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400;
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid currentColor; padding: 11px 20px; border-radius: 2px;
  transition: all 0.4s var(--ease);
}

/* over hero (transparent) */
.nav--top { color: var(--on-dark); }
.nav--top .nav__cta:hover { background: var(--on-dark); color: var(--ink); }
/* scrolled */
.nav--solid {
  background: rgba(246,241,233,0.9);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
  padding: 16px 0;
}
.nav--solid .nav__cta { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.nav--solid .nav__cta:hover { background: var(--clay-deep); border-color: var(--clay-deep); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; }
.nav__burger span { width: 24px; height: 1.5px; background: currentColor; transition: 0.4s var(--ease); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg-deep); color: var(--on-dark);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease);
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer a { font-family: var(--serif); font-size: 38px; padding: 10px; font-weight: 500; }
.drawer .close { position: absolute; top: 28px; right: 32px; font-size: 30px; background: none; border: 0; color: var(--on-dark); }
.drawer .insta { margin-top: 30px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.55) 0%, rgba(20,16,12,0.12) 22%, rgba(20,16,12,0.10) 55%, rgba(20,16,12,0.74) 100%);
}
.hero__inner { position: relative; z-index: 2; color: var(--on-dark); padding-bottom: 84px; padding-top: 140px; width: 100%; }
.hero__title { margin: 22px 0 0; max-width: 14ch; }
.hero__copy { max-width: 56ch; margin: 26px 0 0; color: var(--on-dark-soft); font-size: clamp(16px, 1.35vw, 19px); font-weight: 300; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero__scroll {
  position: absolute; right: 40px; bottom: 40px; z-index: 2; color: var(--on-dark);
  display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll .bar { width: 1px; height: 54px; background: linear-gradient(var(--on-dark), transparent); animation: drop 2.2s var(--ease) infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.hero__meta { position: absolute; top: 0; left: 0; right: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); }
.about__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 80px; align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__media .tag {
  position: absolute; bottom: -26px; left: -26px; background: var(--paper); padding: 22px 28px;
  box-shadow: var(--shadow-md); max-width: 230px;
}
.about__media .tag .n { font-family: var(--serif); font-size: 40px; line-height: 1; color: var(--clay-deep); }
.about__media .tag .l { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }
.about__body p { color: var(--ink-soft); margin: 22px 0 0; max-width: 54ch; }
.about__body p:first-of-type { margin-top: 28px; }
.sign { font-family: var(--serif); font-style: italic; font-size: 30px; margin-top: 30px; color: var(--ink); }
.about__stats { display: flex; gap: 48px; margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--line); }
.about__stats .s .n { font-family: var(--serif); font-size: clamp(20px, 2vw, 25px); color: var(--ink); white-space: nowrap; }
.about__stats .s .l { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-top: 2px; }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.sec-head { max-width: 760px; }
.sec-head--center { margin: 0 auto; text-align: center; }
.sec-head h2 { margin-top: 20px; }
.sec-head p { margin-top: 20px; }

/* ============================================================
   SERVICES / PRICING
   ============================================================ */
.services { background: var(--bg-soft); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
.svc {
  background: var(--paper); border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc.feature { outline: 1px solid var(--clay); outline-offset: -1px; }
.svc__img { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.svc:hover .svc__img img { transform: scale(1.06); }
.svc__flag {
  position: absolute; top: 14px; left: 14px; background: var(--clay-deep); color: var(--on-dark);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 12px; border-radius: 2px;
}
.svc__body { padding: 30px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.svc__body h3 { font-size: 27px; }
.svc__body .desc { color: var(--ink-soft); font-size: 15px; margin: 12px 0 22px; flex: 1; }
.svc__list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 9px; }
.svc__list li { font-size: 14px; color: var(--ink-soft); display: flex; gap: 10px; align-items: baseline; }
.svc__list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--olive); flex: none; transform: translateY(-2px); }
.svc__price { display: flex; align-items: baseline; gap: 8px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.svc__price .from { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }
.svc__price .amt { font-family: var(--serif); font-size: 32px; color: var(--ink); }
.svc__price .per { font-size: 13px; color: var(--ink-faint); }
.pricing-note { text-align: center; margin-top: 34px; font-size: 13px; color: var(--ink-faint); letter-spacing: 0.04em; }

/* ============================================================
   PORTFOLIO GALLERY
   ============================================================ */
.gallery { background: var(--bg); }
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 44px; }
.filter {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400;
  padding: 11px 22px; border-radius: 100px; border: 1px solid var(--line);
  background: transparent; color: var(--ink-soft); transition: all 0.4s var(--ease);
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.filter .count { opacity: 0.5; margin-left: 7px; font-size: 10px; }

.masonry { columns: 3; column-gap: 18px; margin-top: 44px; }
.tile { break-inside: avoid; margin-bottom: 18px; position: relative; overflow: hidden; background: var(--bg-soft); cursor: pointer; }

/* Uniform 3-up grid gallery */
.gbands { margin-top: 46px; }
.gband + .gband { margin-top: 70px; }
.gband__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 24px; }
.gband__head h3 { font-family: var(--serif); font-size: clamp(22px, 2.3vw, 30px); white-space: nowrap; }
.gband__head .ln { flex: 1; height: 1px; background: var(--line); }
.gband__head .ct { font-size: 12px; letter-spacing: 0.16em; color: var(--ink-faint); }
.ugrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.utile { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--bg-soft); cursor: pointer; }
.utile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s var(--ease); }
.utile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(20,16,12,0.4)); opacity: 0; transition: opacity 0.5s var(--ease); }
.utile:hover img { transform: scale(1.05); }
.utile:hover::after { opacity: 1; }
.tile img { width: 100%; height: auto; transition: transform 1.1s var(--ease), filter 0.6s var(--ease); display: block; }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,16,12,0.55));
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.tile:hover img { transform: scale(1.05); }
.tile:hover::after { opacity: 1; }
.tile__cap {
  position: absolute; left: 18px; bottom: 16px; z-index: 2; color: var(--on-dark);
  opacity: 0; transform: translateY(8px); transition: all 0.5s var(--ease);
}
.tile:hover .tile__cap { opacity: 1; transform: none; }
.tile__cap .c { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; }
.tile__cap .t { font-family: var(--serif); font-size: 19px; font-style: italic; }
.tile__plus {
  position: absolute; top: 16px; right: 16px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(246,241,233,0.16); backdrop-filter: blur(6px); border: 1px solid rgba(244,237,225,0.35);
  display: flex; align-items: center; justify-content: center; color: var(--on-dark);
  opacity: 0; transform: scale(0.85); transition: all 0.5s var(--ease);
}
.tile:hover .tile__plus { opacity: 1; transform: none; }

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 300; background: rgba(18,14,11,0.94); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.lb.open { opacity: 1; pointer-events: auto; }
.lb__stage { max-width: 90vw; max-height: 86vh; position: relative; }
.lb__stage img { max-width: 90vw; max-height: 86vh; object-fit: contain; box-shadow: var(--shadow-lg); }
.lb__cap { color: var(--on-dark-soft); text-align: center; margin-top: 16px; font-size: 13px; letter-spacing: 0.04em; }
.lb__cap .c { color: var(--clay); letter-spacing: 0.2em; text-transform: uppercase; font-size: 11px; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(244,237,225,0.3); background: rgba(0,0,0,0.2); color: var(--on-dark); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.4s var(--ease); }
.lb__nav:hover { background: var(--on-dark); color: var(--ink); }
.lb__nav.prev { left: -78px; } .lb__nav.next { right: -78px; }
.lb__close { position: absolute; top: 28px; right: 32px; background: none; border: 0; color: var(--on-dark); font-size: 26px; }
.lb__count { position: absolute; top: 30px; left: 34px; color: var(--on-dark-soft); font-size: 12px; letter-spacing: 0.2em; }

/* ============================================================
   VIDEOS
   ============================================================ */
.videos { background: var(--bg-deep); color: var(--on-dark); }
.videos .h2, .videos .sign { color: var(--on-dark); }
.videos .lead { color: var(--on-dark-soft); }

/* Vertical 9:16 reels */
.reel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.reel { cursor: pointer; }
.reel--soon { cursor: default; }
.reel__media { position: relative; aspect-ratio: 9 / 16; overflow: hidden; border-radius: 4px; background: #0f0b08; box-shadow: var(--shadow-md); }
.reel__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter 0.6s var(--ease); }
.reel__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,12,0.1) 40%, rgba(20,16,12,0.6)); transition: opacity 0.5s var(--ease); }
.reel:not(.reel--soon):hover .reel__media img { transform: scale(1.05); }
.reel--soon .reel__media img { filter: grayscale(0.4) brightness(0.6); }
.reel__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.92); z-index: 2;
  width: 66px; height: 66px; border-radius: 50%; border: 1px solid rgba(244,237,225,0.55);
  background: rgba(244,237,225,0.12); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; color: var(--on-dark);
  padding-left: 4px; transition: all 0.5s var(--ease);
}
.reel:not(.reel--soon):hover .reel__play { transform: translate(-50%,-50%) scale(1); background: var(--on-dark); color: var(--ink); }
.reel--soon .reel__play { display: none; }
.reel__soon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--on-dark-soft);
  border: 1px solid rgba(244,237,225,0.3); padding: 9px 16px; border-radius: 100px; white-space: nowrap;
}
.reel__cap { padding: 18px 4px 0; }
.reel__cat { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay); }
.reel__title { font-family: var(--serif); font-size: 23px; margin-top: 5px; color: var(--on-dark); }

/* Reel player (vertical) */
.reel-player { display: flex; flex-direction: column; align-items: center; }
.reel-player__frame { position: relative; width: auto; height: 84vh; aspect-ratio: 9 / 16; max-width: 92vw; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.reel-player__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.reel-player__cap { color: var(--on-dark-soft); margin-top: 16px; font-size: 13px; letter-spacing: 0.04em; }
.reel-player__cap .c { color: var(--clay); letter-spacing: 0.2em; text-transform: uppercase; font-size: 11px; }

/* ============================================================
   QUOTE BAND
   ============================================================ */
.quote { background: var(--bg-soft); text-align: center; }
.quote q { font-family: var(--serif); font-style: italic; font-size: clamp(26px, 3.4vw, 46px); line-height: 1.25; quotes: none; display: block; max-width: 18ch; margin: 0 auto; color: var(--ink); }
.quote .by { margin-top: 30px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay-deep); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 90px; align-items: start; }
.contact__info .lead { margin-top: 24px; max-width: 42ch; }
.contact__rows { margin-top: 44px; display: flex; flex-direction: column; gap: 0; }
.crow { display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); align-items: baseline; }
.crow:last-child { border-bottom: 1px solid var(--line); }
.crow .k { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); width: 110px; flex: none; }
.crow .v { font-size: 17px; color: var(--ink); }
.crow .v a:hover { color: var(--clay-deep); }

.form { background: var(--paper); border: 1px solid var(--line-soft); padding: 42px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line);
  background: transparent; font-family: var(--sans); font-size: 16px; font-weight: 300; color: var(--ink);
  transition: border-color 0.4s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); }
.field textarea { resize: vertical; min-height: 92px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form__submit { width: 100%; justify-content: center; margin-top: 8px; }
.form__ok { text-align: center; padding: 30px 0; }
.form__ok .ic { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--olive); color: var(--olive-deep); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 24px; }
.form__ok h3 { font-size: 28px; }
.form__ok p { color: var(--ink-soft); margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-deep); color: var(--on-dark); padding: 96px 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 64px; border-bottom: 1px solid var(--line-dark); }
.footer__brand .name { font-family: var(--serif); font-size: 34px; }
.footer__brand p { color: var(--on-dark-soft); max-width: 36ch; margin-top: 16px; font-size: 15px; }
.footer__col h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); margin: 0 0 20px; font-family: var(--sans); font-weight: 400; }
.footer__col a, .footer__col p { display: block; color: var(--on-dark-soft); font-size: 15px; margin-bottom: 12px; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--on-dark); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; font-size: 12px; color: rgba(244,237,225,0.5); letter-spacing: 0.04em; gap: 20px; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
  .ugrid { gap: 14px; }
}
@media (max-width: 860px) {
  .wrap { padding: 0 24px; }
  .section { padding: 84px 0; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta--desk { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__media { max-width: 460px; }
  .reel-grid { max-width: 560px; gap: 20px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero__bg img { object-position: 32% center; }
  .svc-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .ugrid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gband + .gband { margin-top: 48px; }
  .gband__head { gap: 12px; margin-bottom: 18px; }
  .hero__scroll { display: none; }
  .field--row { grid-template-columns: 1fr; gap: 0; }
  .form { padding: 28px; }
  .reel-grid { grid-template-columns: 1fr; max-width: 320px; }
  .reel-player__frame { height: auto; width: 92vw; }
  .about__stats { flex-wrap: wrap; gap: 28px; }
  .lb__nav.prev { left: 8px; } .lb__nav.next { right: 8px; }
  .about__media .tag { left: 0; }
}
