/* ============================================================
   BETTINA BANBAJIAN — video editing & photo processing
   Light editorial design system
   ============================================================ */

:root {
  --paper: #F7F3EC;
  --paper-2: #EFE8DC;
  --surface: #FFFFFF;
  --surface-2: #FBF8F3;
  --ink: #23282F;
  --ink-2: #3B424C;
  --muted: #6F7681;
  --line: #E4DCCF;
  --line-2: #D8CEBD;
  --accent: #C05F3C;
  --accent-deep: #A3482A;
  --accent-soft: #F4E3D9;
  --gold: #B9894E;
  --shadow-sm: 0 1px 2px rgba(35, 40, 47, .05), 0 8px 24px -14px rgba(35, 40, 47, .18);
  --shadow-md: 0 2px 4px rgba(35, 40, 47, .05), 0 22px 44px -24px rgba(35, 40, 47, .28);
  --radius: 18px;
  --radius-lg: 26px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--accent-soft); color: var(--accent-deep); }

.wrap { width: min(1200px, 92%); margin-inline: auto; }
.wrap-narrow { width: min(820px, 92%); margin-inline: auto; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--accent); opacity: .7; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.01em;
}

.section { padding: 96px 0; }
.section--soft { background: var(--paper-2); }
.section--white { background: var(--surface); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { font-size: clamp(38px, 5vw, 58px); margin-bottom: 18px; }
.section-head .lead { color: var(--muted); font-size: 17px; max-width: 560px; }
.section-head.center .lead { margin-inline: auto; }

.em { font-style: italic; color: var(--accent); }

.lead { font-size: 17.5px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn .ar { transition: transform .35s var(--ease); }
.btn:hover .ar { transform: translateX(4px); }

.btn--primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--accent-soft); color: var(--accent-deep); transform: translateY(-2px); }

.btn--sm { padding: 11px 22px; font-size: 13px; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-deep);
}
.arrow-link .ar { transition: transform .35s var(--ease); }
.arrow-link:hover .ar { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .35s var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 30px -20px rgba(35, 40, 47, .25); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 82px; }

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__name {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--ink);
}
.brand__name em { font-style: italic; color: var(--accent); }
.brand__tag { display: block; margin-top: 4px; font-size: 10px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav__links { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: color .25s, background .25s;
}
.nav__links a:hover { color: var(--accent-deep); background: var(--accent-soft); }
.nav__links a.active { color: var(--accent-deep); background: var(--accent-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero { padding: 84px 0 40px; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 95, 60, .10), transparent 65%);
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; position: relative; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(192, 95, 60, .5); } 50% { box-shadow: 0 0 0 7px rgba(192, 95, 60, 0); } }

.hero h1 {
  font-size: clamp(52px, 6.6vw, 92px);
  font-weight: 600;
  line-height: .98;
  margin-bottom: 28px;
}
.hero h1 .line { display: block; }
.hero__sub { font-size: 18px; color: var(--muted); max-width: 500px; margin-bottom: 36px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 40px; border-top: 1px solid var(--line); padding-top: 30px; }
.hero__stat b { display: block; font-family: var(--serif); font-size: 34px; font-weight: 600; line-height: 1; color: var(--ink); }
.hero__stat span { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }

.hero__visual { position: relative; }
.hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotate(1.2deg);
}
.hero__frame img { width: 100%; height: 520px; object-fit: cover; }
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(35, 40, 47, .08);
}
.hero__frame--tilt {
  position: absolute;
  inset: -26px -26px 26px 26px;
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--line-2);
  transform: rotate(-1.8deg);
  z-index: -1;
}
.hero__frame--tilt::after {
  content: "VIDEO · PHOTO · MOTION";
  position: absolute;
  top: 14px;
  left: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--line-2);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  color: var(--muted);
  animation: floaty 5s ease-in-out infinite;
}
.float-card b { display: block; color: var(--ink); font-size: 13.5px; }
.float-card .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
}
.float-card .ic svg { width: 18px; height: 18px; }
.float-card--a { top: 34px; left: -34px; }
.float-card--b { bottom: 34px; right: -24px; animation-delay: 2.4s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- Trust strip ---------- */
.trust { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.trust__label { text-align: center; font-size: 11.5px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); margin: 0 0 22px; }
.trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 46px;
}
.trust__item {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--ink-2);
  opacity: .75;
  transition: opacity .3s, color .3s;
  cursor: default;
}
.trust__item:hover { opacity: 1; color: var(--accent-deep); }

/* ---------- Cards / services ---------- */
.grid { display: grid; gap: 24px; }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card:hover::after { transform: scaleX(1); }

.card__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--serif);
  font-size: 40px;
  font-style: italic;
  color: var(--line-2);
  line-height: 1;
}
.card__ic {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  margin-bottom: 24px;
}
.card__ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 27px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- About split ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about__img { position: relative; }
.about__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 460px; object-fit: cover; }
.about__img::after {
  content: "";
  position: absolute;
  inset: -20px -20px 20px 20px;
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--line-2);
  z-index: -1;
}
.sig { display: block; margin-top: 16px; font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--muted); }

.check-list { list-style: none; margin: 0 0 34px; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-2); font-size: 15.5px; }
.check-list .ck {
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process__step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; }
.process__num {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--accent);
  opacity: .55;
  margin-bottom: 18px;
}
.process__step h3 { font-size: 24px; margin-bottom: 10px; }
.process__step p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Portfolio tiles ---------- */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter {
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-2);
  transition: all .3s var(--ease);
}
.filter:hover { border-color: var(--ink); }
.filter.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile:hover img { transform: scale(1.05); }
.tile--tall { grid-row: span 2; }
.tile__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 22px 18px;
  background: linear-gradient(to top, rgba(20, 22, 26, .72), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tile__tag { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #f2c9b6; }
.tile__title { font-family: var(--serif); font-size: 22px; font-weight: 600; }

/* ---------- Slider ---------- */
.slider { position: relative; }
.slider__viewport { overflow: hidden; }
.slider__track { display: flex; transition: transform .6s var(--ease); }
.slide { flex: 0 0 100%; padding: 6px 2px; }
.slide__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.slide__quote { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 30px); font-style: italic; line-height: 1.4; color: var(--ink-2); margin: 0 0 30px; }
.slide__who { display: flex; align-items: center; justify-content: center; gap: 14px; }
.slide__ava {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
}
.slide__who b { display: block; font-size: 14.5px; color: var(--ink); }
.slide__who span:last-child span { display: block; font-size: 12.5px; color: var(--muted); }

.slider__nav { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 34px; }
.slider__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: all .3s var(--ease);
}
.slider__btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.slider__dots { display: flex; gap: 8px; }
.slider__dots .dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--line-2); padding: 0; transition: all .3s var(--ease); }
.slider__dots .dot.active { width: 26px; border-radius: 999px; background: var(--accent); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq__item.open { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
}
.faq__q .fx {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--accent-deep);
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}
.faq__item.open .fx { transform: rotate(45deg); background: var(--ink); color: #fff; border-color: var(--ink); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq__a p { margin: 0; padding: 0 28px 26px; color: var(--muted); font-size: 15.5px; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 90px 40px;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 380px;
  background: radial-gradient(closest-side, rgba(192, 95, 60, .42), transparent);
  pointer-events: none;
}
.cta__ring {
  position: absolute;
  border: 1.5px dashed rgba(255, 255, 255, .14);
  border-radius: 50%;
  pointer-events: none;
}
.cta__ring--1 { width: 420px; height: 420px; left: -120px; bottom: -220px; }
.cta__ring--2 { width: 300px; height: 300px; right: -90px; top: -140px; }
.cta .eyebrow { color: #e8b39b; }
.cta .eyebrow::before { background: #e8b39b; }
.cta__inner { position: relative; max-width: 620px; margin-inline: auto; }
.cta h2 { font-size: clamp(38px, 4.6vw, 56px); margin-bottom: 18px; }
.cta p { color: rgba(255, 255, 255, .75); font-size: 17px; margin-bottom: 34px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 84px 0 60px; position: relative; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 95, 60, .09), transparent 65%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(44px, 5.6vw, 72px); margin-bottom: 20px; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 620px; margin: 0; }

.crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 26px; }
.crumbs a { color: var(--muted); transition: color .25s; }
.crumbs a:hover { color: var(--accent-deep); }
.crumbs .sep { color: var(--line-2); }

/* ---------- Prose (policies) ---------- */
.prose { font-size: 16px; color: var(--ink-2); line-height: 1.85; }
.prose h2 {
  font-size: 30px;
  margin: 48px 0 18px;
  padding-top: 12px;
  scroll-margin-top: 110px;
}
.prose h2:first-of-type { margin-top: 30px; }
.prose h3 { font-size: 21px; margin: 30px 0 12px; font-family: var(--sans); font-weight: 700; }
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); }
.prose a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-2); transition: text-decoration-color .25s, color .25s; }
.prose a:hover { text-decoration-color: var(--accent); color: var(--accent); }

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 34px;
}
.meta strong { color: var(--ink); }

.toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 26px;
  margin-bottom: 40px;
}
.toc h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.toc a { display: block; padding: 7px 0; font-size: 15px; color: var(--ink-2); font-weight: 600; }
.toc a:hover { color: var(--accent-deep); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.contact-card h3 { font-size: 26px; margin-bottom: 20px; }
.cc { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cc:last-of-type { border-bottom: 0; }
.cc .ic {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
}
.cc .ic svg { width: 20px; height: 20px; }
.cc b { display: block; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.cc p { margin: 0; font-size: 15.5px; color: var(--ink); }
.cc a { color: var(--accent-deep); font-weight: 600; }
.cc a:hover { text-decoration: underline; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--ink-2); }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line-2);
  background: var(--surface-2);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(192, 95, 60, .12);
}
.form-status { font-size: 14.5px; font-weight: 600; }
.form-status.ok { color: #2f7d4f; }
.form-status.err { color: #b4432f; }
.form-status.sending { color: var(--accent-deep); }
.form-note { font-size: 12.5px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .78); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__tag { color: rgba(255, 255, 255, .55); }
.site-footer .brand__mark { filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .35)); }
.footer-brand p { font-size: 14.5px; margin: 20px 0 24px; max-width: 300px; color: rgba(255, 255, 255, .62); }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .85);
  transition: all .3s var(--ease);
}
.socials a svg { width: 18px; height: 18px; }
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin: 0 0 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255, 255, 255, .78); transition: color .25s; }
.footer-col a:hover { color: #e8b39b; }

.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.footer-contact li svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: #e8b39b; }
.footer-contact a { color: #e8b39b; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}
.policies { display: flex; flex-wrap: wrap; gap: 18px; }
.policies a { color: rgba(255, 255, 255, .6); transition: color .25s; }
.policies a:hover { color: #fff; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 560px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.cookie-banner.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-banner p { margin: 0; font-size: 14px; color: var(--ink-2); }
.cookie-banner a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.cb-actions { display: flex; gap: 12px; }
.cb-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line-2);
  background: var(--surface);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  transition: all .3s var(--ease);
}
.cb-btn--accept { background: var(--ink); border-color: var(--ink); color: #fff; }
.cb-btn--accept:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- To top ---------- */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s;
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--accent); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20, 22, 26, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
  padding: 24px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__inner { max-width: 940px; width: 100%; }
.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 12px;
}
.lightbox__cap { text-align: center; color: rgba(255, 255, 255, .8); margin-top: 14px; font-size: 14.5px; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .3s;
}
.lightbox__close { top: 22px; right: 22px; width: 44px; height: 44px; font-size: 18px; }
.lightbox__prev, .lightbox__next { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 26px; }
.lightbox__prev { left: 22px; }
.lightbox__next { right: 22px; }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--accent); }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 120px 0; }
.notfound .big {
  font-family: var(--serif);
  font-size: clamp(90px, 16vw, 180px);
  line-height: 1;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  opacity: .6;
}
.notfound h1 { font-size: clamp(30px, 4vw, 44px); margin: 20px 0 14px; }
.notfound p { color: var(--muted); max-width: 440px; margin: 0 auto 30px; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal="delay-1"] { transition-delay: .1s; }
[data-reveal="delay-2"] { transition-delay: .2s; }
[data-reveal="delay-3"] { transition-delay: .3s; }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__visual { max-width: 620px; }
  .hero__frame img { height: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 82px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 5%;
    gap: 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease), transform .35s var(--ease);
  }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links { flex-direction: column; gap: 4px; }
  .nav__links a { padding: 12px 14px; font-size: 17px; }
  .nav .nav__cta { text-align: center; }
  .section { padding: 72px 0; }
  .hero { padding-top: 56px; }
  .hero__stats { gap: 26px; }
  .float-card--a { left: -6px; }
  .float-card--b { right: -6px; }
  .process { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .slide__card { padding: 36px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
