/* ============================================================
   VICKY7STUDIO — Stylesheet
   Design language: darkroom / contact sheet / camera hardware
   ============================================================ */

:root {
  /* Color — maroon + white */
  --ink: #442425;          /* primary dark maroon */
  --ink-soft: #542D2E;     /* card / raised surface on dark */
  --ink-line: #6E4344;     /* hairlines on dark */
  --paper: #442425;        /* was white — now unified maroon background */
  --paper-soft: #542D2E;   /* card on "paper" — matches dark card surface */
  --paper-line: #6E4344;   /* hairlines on "paper" — matches dark hairline */
  --safelight: #663638;    /* accent maroon, buttons */
  --safelight-bright: #7D4244;
  --brass: #E9D4D4;        /* soft rose, secondary accent on dark */
  --brass-soft: #E9D4D4;
  --cream: #FFFFFF;        /* text on dark */
  --ink-text: #FFFFFF;     /* was maroon — now white, since "paper" is maroon too */
  --muted-on-dark: #D2B7B8;
  --muted-on-light: #D2B7B8; /* was dark rose-grey — now matches muted-on-dark */

  /* Type */
  --font-display: "Big Shoulders Display", sans-serif;
  --font-body: "Work Sans", sans-serif;
  --font-mono: "Work Sans", system-ui, sans-serif;

  /* Layout */
  --max-w: 1180px;
  --edge: clamp(20px, 5vw, 64px);
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--edge);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0 0 0.4em;
  text-transform: uppercase;
}

h1 { font-size: clamp(48px, 9vw, 118px); }
h2 { font-size: clamp(32px, 5.5vw, 58px); }
h3 { font-size: clamp(22px, 3vw, 30px); }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--safelight-bright);
  box-shadow: 0 0 8px var(--safelight-bright);
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--safelight);
  color: var(--cream);
  border-color: var(--safelight);
}
.btn-primary:hover { background: var(--safelight-bright); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--ink-line);
}
.btn-ghost:hover { border-color: var(--brass-soft); color: var(--brass-soft); }
.on-paper.btn-ghost { color: var(--ink-text); border-color: var(--paper-line); }
.on-paper.btn-ghost:hover { border-color: var(--safelight); color: var(--safelight); }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(68, 36, 37, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--edge);
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo span { color: var(--safelight-bright); }
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.site-footer .logo-img { height: 44px; }
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted-on-dark);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--safelight-bright);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink-line);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
  letter-spacing: 0.08em;
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--ink-line);
    flex-direction: column;
    gap: 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 16px var(--edge);
    width: 100%;
    border-bottom: 1px solid var(--ink-line);
  }
}

/* ---------------- Sprocket divider (signature motif) ---------------- */
.sprocket {
  height: 22px;
  background-image: radial-gradient(circle, var(--ink-line) 3.5px, transparent 3.6px);
  background-size: 26px 22px;
  background-position: center;
  background-repeat: repeat-x;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.sprocket.on-paper {
  background-image: radial-gradient(circle, var(--paper-line) 3.5px, transparent 3.6px);
  border-top-color: var(--paper-line);
  border-bottom-color: var(--paper-line);
}

/* ---------------- Sections ---------------- */
section { padding: clamp(56px, 9vw, 120px) 0; }
.on-paper { background: var(--paper); color: var(--ink-text); }
.on-paper .muted { color: var(--muted-on-light); }
.muted { color: var(--muted-on-dark); }

/* ---------------- Hero / Parallax ---------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 980px;
  overflow: hidden;
  padding: calc(var(--header-h) + 8px) 0 0;
  margin-top: calc(-1 * var(--header-h));
  display: flex;
  align-items: flex-end;
}
.hero-parallax {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  overflow: hidden;
}
.hero-parallax img {
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center 20%;
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    linear-gradient(180deg, rgba(68,36,37,0.35) 0%, rgba(68,36,37,0.15) 30%, rgba(68,36,37,0.55) 72%, rgba(68,36,37,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--edge) clamp(48px, 7vw, 88px);
}
.hero-content .eyebrow { color: var(--brass-soft); }
.hero-content h1 { color: var(--cream); }
.hero-lead { max-width: 46ch; font-size: 18px; color: var(--muted-on-dark); }
.hero-content .hero-lead { color: rgba(255,255,255,0.82); }
.hero-meta {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--brass-soft);
  letter-spacing: 0.06em;
  margin-top: 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-content .hero-meta { color: rgba(255,255,255,0.7); }

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: var(--edge);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,0.5);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@media (max-width: 760px) {
  .hero { height: 92vh; min-height: 560px; }
  .scroll-cue { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-parallax img { transform: translate(-50%, 0) !important; }
  .scroll-cue::after { animation: none; }
}

/* ---------------- Horizontal image marquee (train-like scroll) ---------------- */
.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--ink);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  padding: 18px 0;
  animation: marqueeScroll 38s linear infinite;
  will-change: transform;
}
.marquee-item {
  flex: 0 0 auto;
  width: clamp(170px, 26vw, 230px);
  height: clamp(110px, 16vw, 150px);
  margin-right: 14px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--ink-line);
  background: var(--ink-soft);
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------------- What We Offer (cards) ---------------- */
.offer-head { max-width: 64ch; }
.offer-head h2 { margin: 6px 0 0; }
.offer-intro { margin-top: 16px; font-size: 16px; max-width: 60ch; }
.offer-cards { margin-top: 36px; }
.offer-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease, box-shadow 0.35s ease;
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 212, 212, 0.35);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.55);
}
.offer-card-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass-soft);
  margin-bottom: 18px;
}
.offer-card-icon svg { width: 100%; height: 100%; }
.offer-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--cream);
}
.offer-card p.muted { font-size: 14.5px; }
.offer-cta { margin-top: 40px; text-align: center; }
.offer-cta .btn svg { width: 18px; height: 18px; }
.recent-projects {
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--ink-line);
  text-align: center;
  max-width: 60ch;
}
.recent-projects h2 { margin-bottom: 14px; }
.recent-projects p.muted { margin: 0 auto 24px; }

/* ---------------- Hero sliding 3-image carousel ---------------- */
/* Reuse the .photo-carousel engine but let it fill the full-height hero
   as a background layer (cover-fit) instead of an aspect-ratio box. */
.hero .photo-carousel {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  aspect-ratio: auto;
  border: 0;
  background: var(--ink);
  z-index: 0;
}
.hero .photo-carousel .cap { display: none; }
.hero .carousel-track { height: 100%; }
.hero .carousel-slide img {
  object-fit: cover;
  object-position: center 30%;
}
.hero .hero-scrim { z-index: 1; }
.hero .hero-content { z-index: 2; }

/* ---------------- Category / feature cards ---------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  margin-top: 40px;
}
.on-paper .grid-3 { background: var(--paper-line); border-color: var(--paper-line); }
.grid-3 > div,
.grid-3 > a {
  background: var(--ink);
  padding: 34px 28px;
}
.on-paper .grid-3 > div,
.on-paper .grid-3 > a { background: var(--paper); }
.grid-3 .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--safelight-bright);
  margin-bottom: 14px;
  display: block;
}
.on-paper .grid-3.grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-features {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin: 44px 0 0;
}
.service-feature {
  margin: 0;
  max-width: 320px;
  width: 100%;
  perspective: 1000px;
}
.service-feature img {
  width: 100%;
  height: auto;
  display: block;
  border: 12px solid var(--paper);
  border-bottom-width: 38px;
  box-shadow: 0 22px 44px rgba(0,0,0,0.35);
  transform: rotate(-3deg);
  transition: transform .5s ease, box-shadow .5s ease;
}
.service-feature:nth-child(2) img { transform: rotate(0deg); }
.service-feature:nth-child(3) img { transform: rotate(3deg); }
.service-feature:hover img {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
@media (max-width: 1100px) {
  .on-paper .grid-3.grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .grid-3 { grid-template-columns: 1fr; }
  .on-paper .grid-3.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 > div { padding: 22px 18px; }
  .grid-4 .num { margin-bottom: 8px; }
  .grid-4 h3 { font-size: 18px; }
  .service-features { gap: 16px; }
  .service-feature { max-width: 280px; }
  .service-feature img { border-width: 8px; border-bottom-width: 24px; }
  .service-feature:nth-child(odd) img { transform: rotate(-2deg); }
  .service-feature:nth-child(even) img { transform: rotate(2deg); }
}
@media (max-width: 420px) {
  .on-paper .grid-3.grid-4 { grid-template-columns: 1fr; }
}

/* ---------------- Two-column feature ---------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}
.exif-frame {
  position: relative;
  height: 0;
  padding-bottom: 125%; /* 4:5 aspect ratio, universally supported */
  overflow: hidden;
  background: linear-gradient(160deg, #5A3132, #442425 65%);
  border: 1px solid var(--ink-line);
}
.exif-frame img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exif-frame .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brass-soft);
  padding: 14px;
  background: rgba(0,0,0,0.45);
  display: flex;
  justify-content: space-between;
}

/* ---------------- Quote / testimonial ---------------- */
.quote-block {
  border-left: 3px solid var(--safelight-bright);
  padding-left: 28px;
  max-width: 60ch;
}
.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  text-transform: none;
  line-height: 1.2;
  font-weight: 500;
}
.quote-attr {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--brass-soft);
  letter-spacing: 0.05em;
}

/* ---------------- Pricing / service cards ---------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.plan {
  border: 1px solid var(--ink-line);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--ink-soft);
}
.plan.featured {
  border-color: var(--safelight-bright);
  background: linear-gradient(160deg, #5A3132, #442425);
  position: relative;
}
.plan.featured::before {
  content: "MOST BOOKED";
  position: absolute;
  top: -12px; left: 28px;
  background: var(--safelight-bright);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
}
.plan .price {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--cream);
}
.plan .price small {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-on-dark);
  text-transform: none;
}
.plan ul {
  list-style: none;
  margin: 0; padding: 0;
  font-size: 14.5px;
  color: var(--muted-on-dark);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.plan li::before { content: "— "; color: var(--brass-soft); }

/* ---------------- Process steps (real sequence = numbers justified) ---------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
  counter-reset: step;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  border-top: 2px solid var(--brass);
  padding-top: 16px;
}
.step .step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brass-soft);
  display: block;
  margin-bottom: 10px;
}

/* ---------------- Forms ---------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}
label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-soft);
  display: block;
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border-radius: 2px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brass-soft);
}
textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-on-dark);
  margin-top: 16px;
}
#form-status { font-family: var(--font-mono); font-size: 13px; margin-top: 16px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------------- Info blocks (contact page) ---------------- */
.info-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}
@media (max-width: 800px) {
  .info-cols { grid-template-columns: 1fr; }
}
.info-cols h4 {
  font-size: 14px;
  color: var(--brass-soft);
  margin-bottom: 10px;
}
.info-cols p { color: var(--muted-on-dark); font-size: 15px; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--ink-line);
  padding: 60px 0 30px;
}
.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 760px) {
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-columns h5 {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin: 0 0 16px;
}
.footer-links-col {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted-on-dark);
}
.footer-links-col a { text-decoration: none; color: var(--muted-on-dark); transition: color 0.2s ease; }
.footer-links-col a:hover { color: var(--cream); }
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0; margin: 0;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--muted-on-dark);
}
.footer-links a { text-decoration: none; color: var(--muted-on-dark); }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--muted-on-dark);
  margin-top: 40px;
  border-top: 1px solid var(--ink-line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------------- Page hero (interior pages) ---------------- */
.page-hero {
  padding-top: clamp(50px, 8vw, 90px);
  padding-bottom: 40px;
}
.page-hero h1 { font-size: clamp(40px, 7vw, 84px); }

/* ---------------- Sliding photo carousel ---------------- */
.photo-carousel {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
}
.photo-carousel.landscape {
  aspect-ratio: 3 / 2;
}
.carousel-track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.carousel-slide {
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-soft);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.carousel-slide picture { width: 100%; height: 100%; display: flex; }
.photo-carousel .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brass-soft);
  padding: 14px;
  background: rgba(0,0,0,0.45);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

/* Seamless loop: N unique slides + 1 duplicate of slide 1 appended.
   The animation slides through all N+1 positions; since the final
   (duplicate) frame is visually identical to the first, the loop
   restart is imperceptible — no jump, no gap, no pause. */
@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; }
}

.carousel-track-3s {
  width: 400%; /* 4 slides total (3 unique + 1 duplicate) */
  animation: slideCarousel3seamless 15s ease-in-out infinite; /* ~5s per image */
}
.carousel-track-3s .carousel-slide {
  width: 25%;
}
@keyframes slideCarousel3seamless {
  0.00%   { transform: translateX(0.0000%); }
  23.33%  { transform: translateX(0.0000%); }
  33.33%  { transform: translateX(-25.0000%); }
  56.67%  { transform: translateX(-25.0000%); }
  66.67%  { transform: translateX(-50.0000%); }
  90.00%  { transform: translateX(-50.0000%); }
  100.00% { transform: translateX(-75.0000%); }
}

.carousel-track-8 {
  width: 900%; /* 9 slides total (8 unique + 1 duplicate) */
  animation: slideCarousel8 34s ease-in-out infinite;
}
.carousel-track-8 .carousel-slide {
  width: 11.1111%;
}
@keyframes slideCarousel8 {
  0.00%   { transform: translateX(0.0000%); }
  8.75%   { transform: translateX(0.0000%); }
  12.50%  { transform: translateX(-11.1111%); }
  21.25%  { transform: translateX(-11.1111%); }
  25.00%  { transform: translateX(-22.2222%); }
  33.75%  { transform: translateX(-22.2222%); }
  37.50%  { transform: translateX(-33.3333%); }
  46.25%  { transform: translateX(-33.3333%); }
  50.00%  { transform: translateX(-44.4444%); }
  58.75%  { transform: translateX(-44.4444%); }
  62.50%  { transform: translateX(-55.5556%); }
  71.25%  { transform: translateX(-55.5556%); }
  75.00%  { transform: translateX(-66.6667%); }
  83.75%  { transform: translateX(-66.6667%); }
  87.50%  { transform: translateX(-77.7778%); }
  96.25%  { transform: translateX(-77.7778%); }
  100.00% { transform: translateX(-88.8889%); }
}

/* ---------------- Full-bleed photo banner ---------------- */
/* Gallery Strip — side by side, thin gap */
.gallery-strip {
  background: var(--ink);
  color: #fff;
  padding: 64px 0;
}
.gallery-strip .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-strip figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #2a1218;
}
.gallery-strip img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .5s ease;
}
.gallery-strip figure:hover img { transform: scale(1.04); }
@media (max-width: 700px) {
  .gallery-strip { padding: 48px 0; }
  .gallery-strip .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}

/* Category cards (gallery) */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.cat-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--ink-line);
  aspect-ratio: 3 / 4;
  background: #2a1218;
  transition: transform .35s ease, box-shadow .35s ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(0,0,0,0.4);
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .5s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.05));
}
.cat-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
}
.cat-go {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-soft);
  border: 1px solid rgba(233,212,212,0.55);
  padding: 6px 12px;
  border-radius: 999px;
  transition: background .3s ease, color .3s ease;
}
.cat-card:hover .cat-go { background: var(--brass-soft); color: #1f0a10; }
.cat-go svg { width: 14px; height: 14px; }
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 460px) {
  .cat-grid { gap: 10px; }
  .cat-name { font-size: 17px; }
  .cat-overlay { padding: 12px; }
}

/* Founder Spotlight */
.founder {
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
}
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.founder-text { text-align: left; }
.founder-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  color: #fff;
  margin: 14px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.founder-name span {
  display: block;
  font-size: 0.46em;
  color: var(--brass-soft);
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.founder-role {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.founder-role > span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--brass-soft);
}
.founder-rule {
  height: 1px;
  width: 56px;
  background: var(--brass-soft);
  opacity: 0.6;
}
.founder-bio {
  margin: 22px 0 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.7;
}
.founder-social {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}
.founder-ico {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: border-color .3s ease, color .3s ease, transform .3s ease;
}
.founder-ico svg { width: 20px; height: 20px; fill: currentColor; }
.founder-ico:hover {
  border-color: var(--brass-soft);
  color: var(--brass-soft);
  transform: scale(1.1);
}
.founder-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.founder-photo-wrap {
  position: relative;
  width: clamp(220px, 62vw, 300px);
  height: clamp(220px, 62vw, 300px);
}
.founder-photo {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(233,212,212,0.35);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  background: #2a1218;
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
  transform: scale(1.15);
  transition: transform .5s ease;
}
.founder-photo-wrap:hover .founder-photo img { transform: scale(1.22); }

@media (max-width: 820px) {
  .founder { padding: 72px 0; }
  .founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-media { order: -1; }
  .founder-text { text-align: center; }
  .founder-role { justify-content: center; }
  .founder-social { justify-content: center; }
  .founder-bio { margin-left: auto; margin-right: auto; }
}

.photo-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.photo-banner img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
}
.photo-banner .banner-cap {
  position: absolute;
  left: var(--edge); bottom: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35);
  padding: 8px 14px;
}
@media (max-width: 700px) {
  .photo-banner { aspect-ratio: 3 / 2; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass-soft);
  outline-offset: 2px;
}

/* ============================================================
   PILL NAV — glass capsule navigation
   ============================================================ */
.site-header {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: none;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 40;
}
.site-header.solid {
  position: sticky;
  top: 0;
  background: rgba(68, 36, 37, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-line);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--edge);
  max-width: 1360px;
  margin: 0 auto;
  gap: 20px;
}
.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 6px;
}
.nav-pill .nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.nav-pill .nav-links a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  padding: 10px 20px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.nav-pill .nav-links a:hover { color: #fff; }
.nav-pill .nav-links a.active {
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }

@media (max-width: 900px) {
  .nav-pill { position: static; background: none; border: none; backdrop-filter: none; padding: 0; }
  .nav-pill .nav-links { display: none; }
  .nav-pill .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ink);
    border-top: 1px solid var(--ink-line);
    border-bottom: 1px solid var(--ink-line);
    padding: 8px var(--edge);
    gap: 0;
  }
  .nav-pill .nav-links.open a {
    padding: 16px 4px;
    border-radius: 0;
    border-bottom: 1px solid var(--ink-line);
    color: rgba(255,255,255,0.85);
  }
  .nav-pill .nav-links.open a.active { background: none; color: #fff; font-weight: 600; }
  .btn-book { padding: 11px 18px; font-size: 11.5px; }
}

/* ============================================================
   SOCIAL RAIL — fixed floating icon column
   ============================================================ */
.social-rail {
  position: fixed;
  left: clamp(14px, 2.5vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-rail a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
  color: #fff;
  transition: all 0.2s ease;
}
.social-rail a:hover {
  background: var(--safelight-bright);
  color: #fff;
  transform: translateX(3px);
}
.social-rail a svg { width: 18px; height: 18px; }

@media (max-width: 760px) {
  .social-rail {
    left: 10px;
    gap: 8px;
  }
  .social-rail a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .social-rail a svg { width: 16px; height: 16px; }
}

/* ============================================================
   HERO — auto-fading photo slideshow (lightweight, GPU-friendly)
   ============================================================ */
.hero-fade {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: center;
  padding: 130px var(--edge) 70px;
}

/* ---------------- 3D logo hero ---------------- */
.hero-logo3d {
  background: var(--ink);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.logo-3d-stage {
  position: relative;
  z-index: 2;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-3d-glow {
  position: absolute;
  inset: -60% -40%;
  background: radial-gradient(circle, rgba(255,255,255,0.14), rgba(255,255,255,0.03) 45%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.logo-3d-float {
  animation: logoBob 9s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes logoBob {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-16px); }
}
.logo-3d {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 164px;
  transform-style: preserve-3d;
  animation: logoTiltAuto 9s ease-in-out infinite;
}
.logo-3d.js-tilt {
  animation: none;
  transition: transform 0.2s ease-out;
}
@keyframes logoTiltAuto {
  0%, 100% { transform: rotateY(-16deg) rotateX(7deg); }
  50%      { transform: rotateY(16deg) rotateX(-5deg); }
}
@media (min-width: 640px) {
  .logo-3d { width: 320px; height: 238px; }
}
@media (min-width: 1000px) {
  .logo-3d { width: 380px; height: 283px; }
}
@media (min-width: 1300px) {
  .logo-3d { width: 420px; height: 313px; }
}
.logo-3d img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-3d img.layer {
  transform: translateZ(calc(var(--i) * -3px)) translate(calc(var(--i) * 1.3px), calc(var(--i) * 1.3px));
  filter: brightness(calc(1 - var(--i) * 0.08)) saturate(0.7);
  opacity: 0.92;
}
.logo-3d img.front {
  transform: translateZ(3px);
  filter:
    drop-shadow(0 30px 50px rgba(0,0,0,0.7))
    drop-shadow(0 0 34px rgba(255,255,255,0.18));
}
.logo-3d-reflection {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 60%;
  transform: scaleY(-1);
  opacity: 0.14;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 75%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 75%);
  pointer-events: none;
  z-index: 1;
}
.logo-3d-reflection img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.scroll-cue-3d.bare {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
}
@media (prefers-reduced-motion: reduce) {
  .logo-3d { animation: none; transform: rotateY(-10deg) rotateX(5deg); }
  .logo-3d-float { animation: none; }
}
.fade-slides {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}
.fade-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0;
  animation: heroFade 15s ease-in-out infinite;
  will-change: opacity;
}
.fade-slide:nth-child(1) { animation-delay: 0s; }
.fade-slide:nth-child(2) { animation-delay: 5s; }
.fade-slide:nth-child(3) { animation-delay: 10s; }

@keyframes heroFade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  30%  { opacity: 1; }
  38%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-video-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-bg video,
.hero-video-bg img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
}

.hero-video-scrim {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(68,36,37,0.35), rgba(68,36,37,0.75) 65%, rgba(68,36,37,0.95) 100%),
    linear-gradient(180deg, rgba(68,36,37,0.55) 0%, rgba(68,36,37,0.35) 25%, rgba(68,36,37,0.55) 70%, rgba(68,36,37,0.95) 100%);
}

.hero-3d-inner {
  position: relative;
  z-index: 3;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 9px 20px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin: 20px 0 34px;
}
.hero-badge-pill svg { width: 14px; height: 14px; color: var(--brass-soft); }

.hero-headline {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(36px, 5.6vw, 76px);
  margin: 30px 0 20px;
  text-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.hero-3d-lead {
  position: relative;
  z-index: 2;
  max-width: 60ch;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.85);
  font-size: clamp(15px, 1.6vw, 18px);
}
.hero-cta-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.btn-pill.solid { background: #fff; color: var(--ink); }
.btn-pill.solid:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.3); }
.btn-pill.outline { border: 1px solid rgba(255,255,255,0.35); color: #fff; }
.btn-pill.outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.stat-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (min-width: 700px) {
  .stat-row { gap: 56px; }
}
.stat-pill {
  text-align: center;
  color: #fff;
  margin: 0 10px;
}
.stat-pill .num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  display: block;
}
.stat-pill .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  display: block;
}

.scroll-cue-3d {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.scroll-cue-3d .chev {
  margin-top: 10px;
  animation: chevbounce 1.6s ease-in-out infinite;
}
@keyframes chevbounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 1; }
}

@media (max-width: 900px) {
  .hero-headline { margin-top: 0; }
  .hero-fade { padding-top: 110px; }
}
@media (max-width: 480px) {
  .hero-3d-inner { padding-left: 34px; padding-right: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-slide { animation: none !important; opacity: 0; }
  .fade-slide:first-child { opacity: 1; }
  .scroll-cue-3d .chev { animation: none; }
}

/* ============================================================
   SCROLL REVEAL — lightweight fade-up on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   WHAT WE OFFER — services showcase (icon list + photo stack)
   ============================================================ */
.offer-split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .offer-split { grid-template-columns: 1fr; }
}
.offer-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
}
.offer-item {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--paper-line);
}
.offer-item:last-child { border-bottom: 1px solid var(--paper-line); }
.offer-item .offer-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--paper-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--safelight);
}
.offer-item .offer-icon svg { width: 20px; height: 20px; }
.offer-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.offer-item p { margin: 0; color: var(--muted-on-light); font-size: 14.5px; }

.offer-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-stack .stack-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--ink-line);
}
.offer-stack .stack-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offer-stack .stack-frame.tall { aspect-ratio: 4/5; }
.offer-stack .stack-frame.wide { aspect-ratio: 16/9; }
.play-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(23,20,15,0.55);
  border: 1px solid rgba(255,255,255,0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
  transition: transform 0.25s ease;
}
.play-badge svg { width: 20px; height: 20px; margin-left: 3px; }
.stack-frame:hover .play-badge { transform: translate(-50%, -50%) scale(1.08); }
.stack-frame .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brass-soft);
  padding: 14px;
  background: rgba(0,0,0,0.45);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

/* ---------------- YouTube video grid (Film page) ---------------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 760px) {
  .video-grid { grid-template-columns: 1fr; }
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: var(--ink-soft);
  display: block;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-frame .play-badge {
  width: 62px; height: 62px;
  background: rgba(23,20,15,0.55);
  border: 1px solid rgba(255,255,255,0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.video-thumb:hover .play-badge { transform: translate(-50%, -50%) scale(1.08); }

/* ============================================================
   RECENT PROJECTS — portfolio grid
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 44px;
}
@media (max-width: 900px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
.project-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink-soft);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.project-card:hover img { transform: scale(1.06); }
.project-card .play-badge { width: 44px; height: 44px; }
.project-card .play-badge svg { width: 16px; height: 16px; }
.project-card .pc-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}

/* ============================================================
   TESTIMONIALS — "What people say" card grid
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-card p.quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-on-dark);
}
.testimonial-who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--safelight);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  flex-shrink: 0;
}
.testimonial-who .name { font-family: var(--font-mono); font-size: 13px; color: #fff; letter-spacing: 0.03em; }
.testimonial-who .role { font-family: var(--font-mono); font-size: 11px; color: var(--muted-on-dark); }

/* ============================================================
   FOUNDER — meet the person behind the studio
   ============================================================ */
.founder-split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .founder-split { grid-template-columns: 1fr; }
}
.founder-portrait {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--ink-line);
  background: radial-gradient(circle at 35% 30%, #5A3132, #2a2020 75%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-portrait .monogram {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 110px);
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}
.founder-meta {
  margin-top: 24px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.founder-meta .fm-num { font-family: var(--font-display); font-size: 28px; color: var(--brass-soft); display: block; }
.founder-meta .fm-label { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted-on-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.founder-social {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}
.founder-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s ease;
}
.founder-social a:hover { background: #fff; color: var(--ink); }
.founder-social a svg { width: 16px; height: 16px; }

/* ============================================================
   FINAL CTA — full-bleed image + call now
   ============================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.final-cta .fc-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(23,20,15,0.92) 0%, rgba(23,20,15,0.75) 45%, rgba(23,20,15,0.35) 100%);
  z-index: 1;
}
.final-cta .fc-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.final-cta h2 { color: #fff; font-size: clamp(32px, 5vw, 56px); }
.final-cta p { color: rgba(255,255,255,0.78); max-width: 46ch; }

