/* ============================================================
   Book your photo — main stylesheet
   Two-palette system: Studio Paper <-> Bubblegum
   Constants: magenta #EC0F80, orange #F59320
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html, body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  --bg: #faf7f2;
  --fg: #14110f;
  --muted: #6b6660;
  --surface: #ffffff;
  --surface-2: #f3eee5;
  --rule: rgba(20, 17, 15, 0.12);

  --magenta: #ec0f80;
  --magenta-deep: #c20a68;
  --orange: #f59320;

  --pad-section: 140px;
  --gap: 24px;

  background: var(--bg);
  color: var(--fg);
}

body.dense {
  --pad-section: 96px;
  --gap: 16px;
}

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

/* ---------- typography ---------- */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--magenta);
}

h1.display {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(60px, 11vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.02em;
}
h1.display em { font-style: italic; color: var(--magenta); }

h2.section {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
h2.section em { font-style: italic; color: var(--magenta); }

p.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: color-mix(in oklab, var(--fg) 80%, transparent);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 200ms ease, background 250ms ease, color 250ms ease, border-color 250ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--magenta);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-1px); background: var(--magenta-deep); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: color-mix(in oklab, var(--fg) 28%, transparent);
}
.btn-ghost:hover { background: color-mix(in oklab, var(--fg) 6%, transparent); }
.btn .arrow { display: inline-block; transition: transform 220ms ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav .mark {
  display: flex; align-items: center;
}
.nav .mark .mark-logo {
  height: 32px;
  width: auto;
  display: block;
}
@media (max-width: 560px) {
  .nav .mark .mark-logo { height: 26px; }
}
.nav .links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.nav .links a { opacity: 0.78; }
.nav .links a:hover { opacity: 1; color: var(--magenta); }
.nav .nav-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--magenta);
  color: #fff;
  transition: background 200ms ease, transform 200ms ease;
}
.nav .nav-cta:hover { background: var(--magenta-deep); transform: translateY(-1px); }

/* ---------- progress bar ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--magenta); z-index: 60;
  transition: width 60ms linear;
}

/* ---------- layout ---------- */
section { position: relative; }
.wrap { max-width: 1280px; width: 100%; margin: 0 auto; }

#services, #testimonials, #contact { scroll-margin-top: -60px; }

/* ============================================================
   HERO + ABOUT (merged)
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 160px 40px 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tagline-row {
  position: absolute;
  top: 120px;
  left: 40px;
  display: flex; align-items: center; gap: 14px;
}
.tagline-row .tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--magenta);
  letter-spacing: -0.005em;
}

.hero-headline {
  position: relative;
  margin-top: 48px;
}
.hero-headline .glow {
  position: absolute;
  inset: -10% -8%;
  background: radial-gradient(50% 60% at 30% 50%, color-mix(in oklab, var(--magenta) 24%, transparent), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.hero-meta {
  position: absolute;
  top: 120px;
  right: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  line-height: 1.7;
}
.hero-meta b { color: var(--fg); font-weight: 500; }

.hero-cta {
  margin-top: 56px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

.about-block {
  margin-top: 120px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.about-block .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.about-block h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.about-block h2 em { font-style: italic; color: var(--magenta); }
.about-block p {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: color-mix(in oklab, var(--fg) 85%, transparent);
}
.about-block p + p { margin-top: 18px; }
.about-stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.stat .n {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat .n em { font-style: italic; color: var(--magenta); }
.stat .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* parallax elements */
.parallax-shutter {
  position: absolute;
  right: -120px;
  top: 28%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    var(--orange) 0%,
    var(--orange) 28%,
    color-mix(in oklab, var(--orange) 60%, var(--magenta)) 38%,
    var(--magenta) 60%,
    transparent 70%);
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
  will-change: transform;
}

.parallax-orb {
  position: absolute;
  left: -80px;
  bottom: 15%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    color-mix(in oklab, var(--magenta) 70%, transparent),
    transparent 70%);
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
  will-change: transform;
}

/* ============================================================
   RIBBON (scrolling marquee)
   ============================================================ */
.ribbon {
  position: relative;
  background: var(--magenta);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transform: rotate(-1deg);
  margin: -16px 0;
  z-index: 1;
}
.ribbon-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.ribbon-track .item {
  padding-right: 60px;
}
.ribbon-track .item {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 4.4vw, 64px);
  font-style: italic;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 60px;
}
.ribbon-track .item .star {
  width: 18px; height: 18px;
  display: inline-block;
  background: var(--orange);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ribbon.alt {
  background: var(--fg);
  color: var(--bg);
  transform: rotate(0.6deg);
}
.ribbon.alt .item .star { background: var(--magenta); }

/* ============================================================
   SERVICES PANELS
   ============================================================ */
.services {
  padding: var(--pad-section) 40px 80px;
}
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}
.svc {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background-color: #2a1320 !important;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(0,0,0,0.18);
  transition: transform 350ms cubic-bezier(.2,.8,.2,1), box-shadow 350ms ease;
  cursor: pointer;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px color-mix(in oklab, var(--magenta) 40%, transparent);
}
.svc::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(20,5,15,0.15) 0%, rgba(20,5,15,0.85) 100%),
    repeating-linear-gradient(45deg, transparent 0 10px, rgba(255,255,255,0.05) 10px 11px);
  background-color: #2a1320;
  z-index: 0;
}
.svc::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 80% 20%, rgba(245,147,32,0.45), transparent 60%);
  z-index: 0;
}
.svc .ph {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  color: rgba(255,255,255,0.45);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.svc .body {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
}
.svc .body h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  max-width: calc(100% - 56px);
}
.svc.s-half .body h3,
.svc.s-md .body h3 { font-size: clamp(20px, 1.9vw, 26px); }
.svc .body .go {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--magenta);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 200ms ease, transform 220ms ease;
}
.svc:hover .body .go { background: var(--orange); transform: rotate(45deg); }
.svc .body .go svg { width: 16px; height: 16px; }
.svc .num {
  position: absolute;
  top: 16px; left: 18px; z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
}
.svc .tag {
  position: absolute;
  top: 16px; right: 18px; z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.svc.s-tall  { grid-column: span 4; aspect-ratio: 4 / 5; }
.svc.s-wide  { grid-column: span 8; aspect-ratio: 12 / 7; }
.svc.s-sq    { grid-column: span 4; aspect-ratio: 1 / 1; }
.svc.s-md    { grid-column: span 4; aspect-ratio: 4 / 5; }
.svc.s-half  { grid-column: span 6; aspect-ratio: 8 / 5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 40px;
  position: relative;
}
.testimonials .head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: transform 300ms cubic-bezier(.2,.8,.2,1), box-shadow 300ms ease, border-color 300ms ease;
}
.testi:hover {
  transform: translateY(-6px);
  border-color: var(--magenta);
  box-shadow: 0 20px 50px -20px color-mix(in oklab, var(--magenta) 30%, transparent);
}
.testi::before {
  content: "\201C";
  position: absolute;
  top: 8px; right: 24px;
  font-family: 'Instrument Serif', serif;
  font-size: 96px;
  line-height: 1;
  color: var(--magenta);
  opacity: 0.18;
}
.testi .who {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.testi .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--magenta);
  position: relative;
  flex-shrink: 0;
  display: grid; place-items: center;
  overflow: hidden;
}
.testi .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testi .avatar .badge {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid var(--surface);
  display: grid; place-items: center;
}
.testi .avatar .badge svg { width: 12px; height: 12px; color: #fff; }
.testi .who .name {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.testi .who .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.testi .quote {
  font-size: 15.5px;
  line-height: 1.6;
  color: color-mix(in oklab, var(--fg) 82%, transparent);
  flex: 1;
}
.testi .stars {
  margin-top: 22px;
  display: inline-flex;
  gap: 4px;
  background: var(--fg);
  padding: 8px 14px;
  border-radius: 999px;
  align-self: flex-start;
}
.testi .stars .s {
  width: 14px; height: 14px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.google-row {
  margin-top: 40px;
  display: flex; justify-content: center; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.google-row .gdot {
  display: inline-flex; gap: 3px;
}
.google-row .gdot span {
  width: 8px; height: 8px; border-radius: 50%;
}
.google-row .gdot span:nth-child(1){background:#4285f4}
.google-row .gdot span:nth-child(2){background:#ea4335}
.google-row .gdot span:nth-child(3){background:#fbbc05}
.google-row .gdot span:nth-child(4){background:#34a853}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--pad-section) 40px 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contact-copy h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.contact-copy h2 em { font-style: italic; color: var(--magenta); }
.contact-copy p {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.6;
  color: color-mix(in oklab, var(--fg) 80%, transparent);
  max-width: 44ch;
}
.contact-buttons {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--rule);
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
  cursor: pointer;
}
.contact-btn:hover {
  transform: translateY(-2px);
  border-color: var(--magenta);
  background: color-mix(in oklab, var(--magenta) 6%, var(--surface));
}
.contact-btn .ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-btn.whatsapp .ic { background: #25d366; color: #fff; }
.contact-btn.phone .ic    { background: var(--magenta); color: #fff; }
.contact-btn.email .ic    { background: var(--orange); color: #fff; }
.contact-btn.insta .ic    { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af); color: #fff; }
.contact-btn .ic svg { width: 20px; height: 20px; }
.contact-btn .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-btn .val {
  font-family: 'Instrument Serif', serif;
  font-size: 19px;
  line-height: 1.1;
  margin-top: 2px;
}

/* map placeholder */
.map {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--rule);
  min-height: 480px;
  cursor: pointer;
  transition: box-shadow 250ms ease, transform 250ms ease;
  display: block;
}
.map:hover {
  box-shadow: 0 20px 50px -20px color-mix(in oklab, var(--magenta) 40%, transparent);
  transform: translateY(-2px);
}
  background:
    radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--magenta) 14%, var(--surface-2)) 0%, var(--surface-2) 60%);
}
.map .grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--rule) 1px, transparent 1px),
    linear-gradient(to bottom, var(--rule) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.7;
}
.map .road {
  position: absolute;
  background: var(--rule);
}
.map .road.r1 { top: 30%; left: -10%; right: -10%; height: 14px; transform: rotate(-8deg); background: color-mix(in oklab, var(--fg) 14%, transparent); }
.map .road.r2 { top: 60%; left: -10%; right: -10%; height: 10px; transform: rotate(5deg); background: color-mix(in oklab, var(--fg) 12%, transparent); }
.map .road.r3 { top: 0; bottom: 0; left: 38%; width: 10px; transform: rotate(2deg); background: color-mix(in oklab, var(--fg) 11%, transparent); }
.map .pin {
  position: absolute;
  top: 50%; left: 48%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
}
.map .pin .pin-body {
  width: 44px; height: 44px;
  border-radius: 50% 50% 50% 0;
  background: var(--magenta);
  transform: rotate(-45deg);
  box-shadow: 0 12px 30px -8px color-mix(in oklab, var(--magenta) 60%, transparent);
  position: relative;
}
.map .pin .pin-body::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--bg);
}
.map .pin .pulse {
  position: absolute;
  bottom: -20px;
  width: 80px; height: 16px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--magenta) 40%, transparent);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.map .label {
  position: absolute;
  top: 24px; left: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--rule);
}
.map .label b { color: var(--magenta); }
.map .label-place {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  line-height: 1.1;
  background: var(--bg);
  padding: 18px 22px;
  border-radius: 8px;
  border: 1px solid var(--rule);
}
.map .label-place .sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: #14110f;
  color: #faf7f2;
  padding: 80px 40px 40px;
  border-radius: 24px 24px 0 0;
  margin-top: 60px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,247,242,0.14);
}
.foot-top h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  color: #faf7f2;
}
.foot-top h3 em { font-style: italic; color: #ec0f80; }
.foot-top .col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.55);
  margin-bottom: 16px;
}
.foot-top ul { list-style: none; display: flex; flex-direction: column; gap: 10px; color: #faf7f2; }
.foot-top ul a { opacity: 0.85; color: #faf7f2; }
.foot-top ul a:hover { color: #ec0f80; opacity: 1; }
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.55);
}
.foot-bot .lockup {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  text-transform: none;
  letter-spacing: -0.01em;
  color: #faf7f2;
}
.foot-bot .lockup img { height: 24px; width: auto; }

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tweaks-fab {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 199;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(20,17,15,0.85);
  color: #fff;
  font-size: 18px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.24);
}
.tweaks-fab:hover { transform: scale(1.1); background: rgba(20,17,15,0.95); }

.tweaks-panel {
  position: fixed;
  right: 16px; bottom: 76px;
  z-index: 200;
  width: 260px;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 14px 16px 16px;
  box-shadow: 0 12px 40px -10px rgba(0,0,0,0.22);
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  color: #14110f;
  display: none;
  transform-origin: bottom right;
}
.tweaks-panel.open { display: block; }
.tweaks-panel .tw-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.tweaks-panel .tw-head b { font-size: 12.5px; }
.tweaks-panel .tw-head button {
  width: 20px; height: 20px; border-radius: 6px;
  background: transparent; color: rgba(0,0,0,0.5);
}
.tweaks-panel .tw-head button:hover { background: rgba(0,0,0,0.06); color: #14110f; }
.tweaks-panel .tw-row {
  display: flex; flex-direction: column; gap: 6px;
  padding: 8px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.tweaks-panel .tw-row:first-of-type { border-top: 0; padding-top: 0; }
.tweaks-panel .tw-row .lbl { font-size: 11px; color: rgba(0,0,0,0.6); }
.tweaks-panel .seg {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.6);
}
.tweaks-panel .seg button {
  padding: 7px 10px;
  font-size: 11px;
  background: transparent;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.tweaks-panel .seg button:last-child { border-right: 0; }
.tweaks-panel .seg button.on {
  background: #14110f; color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero { padding: 130px 22px 80px; }
  .hero-meta { display: none; }
  .about-block { grid-template-columns: 1fr; gap: 30px; margin-top: 80px; }
  .parallax-shutter { width: 360px; height: 360px; right: -160px; top: 12%; opacity: 0.4; }
  .parallax-orb { display: none; }
  .services { padding: 90px 22px 60px; }
  .services-grid { gap: 14px; }
  .svc.s-tall, .svc.s-wide, .svc.s-sq, .svc.s-md, .svc.s-half { grid-column: span 12; aspect-ratio: 16/11; }
  .testimonials { padding: 70px 22px; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact { padding: 90px 22px 70px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-buttons { grid-template-columns: 1fr 1fr; }
  .foot { padding: 60px 22px 30px; }
  .foot-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .foot-bot { flex-direction: column; gap: 18px; align-items: flex-start; }
  .nav { padding: 14px 22px; }
  .nav .links { display: none; }
  .nav .nav-cta { padding: 8px 12px; font-size: 10px; }
  .ribbon { padding: 16px 0; margin: -10px 0; }
  .services-head, .testimonials .head { flex-direction: column; align-items: start; }
}

@media (max-width: 560px) {
  .contact-buttons { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .tweaks-panel { right: 8px; bottom: 76px; width: calc(100% - 16px); }
  .tweaks-fab { right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .ribbon-track { animation: none; }
  .parallax-shutter, [data-parallax] { transform: none !important; }
  .map .pin .pulse { animation: none; }
}
