:root {
  --olive: #626557;
  --terracotta: #d2a795;
  --sand: #c9b3a2;
  --cream: #e2dbd5;
  --stone: #969797;
  --surface: #f6f2ee;
  --paper: #fbf8f5;
  --ink: #2e2e2b;
  --ink-soft: #4a4a45;
  --hairline: rgba(98, 101, 87, 0.18);

  --font-display: 'Cormorant Garamond', 'Didot', 'Bodoni 72', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

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

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.font-display {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.font-mono {
  font-family: var(--font-mono);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive);
}

.eyebrow .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 {
  transition-delay: 0.08s;
}
.reveal.delay-2 {
  transition-delay: 0.16s;
}
.reveal.delay-3 {
  transition-delay: 0.24s;
}
.reveal.delay-4 {
  transition-delay: 0.32s;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) {
  .container {
    padding: 0 24px;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 22px 0;
  transition:
    background 0.5s var(--ease),
    backdrop-filter 0.5s var(--ease),
    border-color 0.5s var(--ease),
    padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(251, 248, 245, 0.86);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--hairline);
  padding: 14px 0;
}
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-header .logo svg {
  height: 34px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav a:hover {
  color: var(--olive);
}
.nav a.active {
  color: var(--olive);
}
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--olive);
}

.cta-thin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--olive);
  color: var(--olive);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 999px;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.cta-thin:hover {
  background: var(--olive);
  color: var(--paper);
}

.cta-solid {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--olive);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border-radius: 999px;
  transition:
    background 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.cta-solid:hover {
  background: #4f5246;
  transform: translateY(-1px);
}
.cta-solid .arrow {
  transition: transform 0.35s var(--ease);
}
.cta-solid:hover .arrow {
  transform: translate(3px, 0);
}
.cta-solid--compact {
  padding: 12px 22px;
  letter-spacing: 0.24em;
}

.mobile-toggle {
  display: none;
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }
  .site-header .cta-solid--compact {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--olive);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 60;
  padding: 110px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.mobile-nav.open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink);
}
.mobile-nav .close {
  position: absolute;
  top: 28px;
  right: 32px;
  color: var(--olive);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 120px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.98;
  margin: 18px 0 28px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--olive);
}
.hero .lede {
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-meta {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.hero-meta .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.hero-meta .v {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--olive);
  font-weight: 400;
}
@media (max-width: 720px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 72px;
  }
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 22px;
  }
  .hero-meta .item {
    min-width: 0;
  }
  .hero-meta .k {
    font-size: 9px;
    letter-spacing: 0.14em;
  }
  .hero-meta .v {
    font-size: 15px;
    line-height: 1.25;
  }
}

/* Hero image column — elegant gradient placeholder with parallax */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(98, 101, 87, 0.35);
  transform: translateZ(0);
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}
.hero-visual .img {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  background: #1a1a1a;
  transition: transform 0.1s linear;
}
.hero-visual .grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: repeating-linear-gradient(
    23deg,
    rgba(46, 46, 43, 0.6) 0,
    rgba(46, 46, 43, 0.6) 1px,
    transparent 1px,
    transparent 3px
  );
}
.hero-visual .tag {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(46, 46, 43, 0.25);
  padding: 6px 10px;
  border-radius: 3px;
  backdrop-filter: blur(6px);
}
.hero-visual .frame-meta {
  position: absolute;
  top: 18px;
  right: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.hero-badge {
  position: absolute;
  left: -28px;
  top: 40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  text-align: center;
  animation: spin 28s linear infinite;
}
.hero-badge svg {
  width: 100%;
  height: 100%;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 960px) {
  .hero-badge {
    display: none;
  }
}

/* ---------- Section styles ---------- */
section.block {
  padding: 130px 0;
  position: relative;
}
@media (max-width: 720px) {
  section.block {
    padding: 90px 0;
  }
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
@media (max-width: 960px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 12px 0 0;
  color: var(--ink);
}
.section-head h2 em {
  color: var(--olive);
  font-style: italic;
}
.section-head .intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 58ch;
  font-weight: 300;
}

/* Bg variants */
.bg-cream {
  background: var(--cream);
}
.bg-surface {
  background: var(--surface);
}
.bg-olive {
  background: var(--olive);
  color: var(--cream);
}
.bg-olive .eyebrow {
  color: var(--terracotta);
}
.bg-olive .eyebrow .dot {
  background: var(--terracotta);
}
.bg-olive h2,
.bg-olive h3 {
  color: var(--cream);
}
.bg-olive h2 em {
  color: var(--terracotta);
}
.bg-olive .intro {
  color: rgba(226, 219, 213, 0.78);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-copy p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 22px;
  font-weight: 300;
}
.about-copy p strong {
  color: var(--olive);
  font-weight: 500;
}
.about-marks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 28px;
}
.about-marks .m {
  background: var(--paper);
  padding: 22px 20px;
}
.about-marks .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.about-marks .v {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--olive);
  margin-top: 4px;
}
@media (max-width: 720px) {
  .about-marks {
    grid-auto-rows: 1fr;
  }
  .about-marks .m {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 96px;
    padding: 18px 16px;
  }
  .about-marks .v {
    font-size: 20px;
  }
}

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.svc {
  padding: 42px 28px 38px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
  position: relative;
  cursor: pointer;
  transition: background 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.svc:hover {
  background: var(--surface);
}
.svc .num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--stone);
}
.svc h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 22px 0 12px;
  color: var(--ink);
  transition: color 0.35s var(--ease);
  overflow-wrap: break-word;
  hyphens: auto;
}
.svc:hover h3 {
  color: var(--olive);
}
.svc p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.svc .foot {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
}
.svc .foot .arrow {
  transition: transform 0.4s var(--ease);
}
.svc:hover .foot .arrow {
  transform: translateX(6px);
}
.svc .thumb {
  aspect-ratio: 16 / 10;
  margin-bottom: 0;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.svc .thumb .tag {
  position: absolute;
  left: 10px;
  bottom: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1100px) {
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .svc {
    min-height: 380px;
  }
}
@media (max-width: 640px) {
  .services {
    grid-template-columns: 1fr;
  }
  .svc {
    min-height: auto;
  }
}

/* Thumbs – gradient variants */
.t-smp {
  background: linear-gradient(135deg, #4a4d42 0%, #626557 60%, #7a7d6e 100%);
}
.t-laser {
  background: linear-gradient(140deg, #c9b3a2 0%, #d2a795 100%);
}
.t-inj {
  background: linear-gradient(135deg, #e2dbd5 0%, #c9b3a2 100%);
}
.t-nano {
  background: linear-gradient(135deg, #a99685 0%, #626557 110%);
}
.t-hud {
  background: linear-gradient(135deg, #d2a795 0%, #8c6b5a 100%);
}

/* ---------- Prices ---------- */
.pricelist {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .pricelist {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.price-tabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--hairline);
}
.price-tab {
  text-align: left;
  padding: 18px 2px;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    color 0.3s var(--ease),
    padding 0.3s var(--ease);
}
.price-tab:hover {
  color: var(--olive);
  padding-left: 12px;
}
.price-tab.active {
  color: var(--olive);
  padding-left: 12px;
}
.price-tab.active::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--terracotta);
  border-radius: 50%;
  transform: translate(-14px, 50%);
  margin-top: -2px;
}
.price-tab .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--stone);
}

.price-panel {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 40px 48px 36px;
}
@media (max-width: 720px) {
  .price-panel {
    padding: 24px 22px;
  }
}

.price-panel h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 300;
  margin: 0 0 6px;
}
.price-panel .p-lede {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 28px;
}
.price-group {
  border-top: 1px solid var(--hairline);
}
.price-group-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  cursor: pointer;
  border-bottom: 1px solid var(--hairline);
}
.price-group.open .price-group-head {
  border-bottom-color: transparent;
}
.price-group-head .plus {
  width: 18px;
  height: 18px;
  position: relative;
}
.price-group-head .plus::before,
.price-group-head .plus::after {
  content: '';
  position: absolute;
  background: var(--olive);
  transition: transform 0.4s var(--ease);
}
.price-group-head .plus::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.price-group-head .plus::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}
.price-group.open .price-group-head .plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.price-rows {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease);
  border-bottom: 1px solid var(--hairline);
}
.price-group.open .price-rows {
  max-height: 2000px;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.price-row:last-child {
  border-bottom: 0;
}
.price-row .n {
  font-size: 15px;
  color: var(--ink);
}
.price-row .s {
  font-size: 12px;
  color: var(--stone);
  margin-top: 2px;
  display: block;
}
.price-row .p {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--olive);
  white-space: nowrap;
}
.price-row .p small {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--stone);
  margin-left: 4px;
  letter-spacing: 0.12em;
}

.price-note {
  margin-top: 24px;
  padding: 16px 18px;
  background: var(--surface);
  border-left: 2px solid var(--terracotta);
  font-size: 13px;
  color: var(--ink-soft);
}
.price-note strong {
  color: var(--olive);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---------- Staff ---------- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 960px) {
  .staff-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }
}

.staff-card .portrait {
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.staff-card .portrait .grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: repeating-linear-gradient(
    23deg,
    rgba(46, 46, 43, 0.6) 0,
    rgba(46, 46, 43, 0.6) 1px,
    transparent 1px,
    transparent 3px
  );
}
.staff-card .portrait .mono {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 96px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}
.staff-card .tag {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.staff-card h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 4px;
}
.staff-card .role {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
}

/* ---------- FAQ ---------- */
.faq {
  border-top: 1px solid var(--hairline);
  width: 100%;
  margin: 0;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-q {
  width: 100%;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  text-align: left;
  transition: color 0.3s var(--ease);
}
.faq-q:hover {
  color: var(--olive);
}
.faq-q .plus {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--olive);
  transition: transform 0.4s var(--ease);
}
.faq-q .plus::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.faq-q .plus::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}
.faq-item.open .faq-q .plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease);
  color: var(--ink-soft);
}
.faq-item.open .faq-a {
  max-height: 500px;
}
.faq-a-inner {
  padding: 0 0 28px;
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.75;
}

/* ---------- Gallery (before/after) ---------- */
.ba {
  position: relative;
  aspect-ratio: 3 / 2;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
  user-select: none;
  cursor: ew-resize;
  box-shadow: 0 40px 80px -40px rgba(98, 101, 87, 0.3);
}
.ba .half {
  position: absolute;
  inset: 0;
  background-size: 65%;
  background-position: center 25%;
  background-repeat: no-repeat;
}
.ba .before {
  background-image: url('assets/before.jpg');
}
.ba .after {
  background-image: url('assets/after.jpg');
  clip-path: inset(0 0 0 50%);
}
.ba .label {
  position: absolute;
  top: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(46, 46, 43, 0.3);
  padding: 6px 10px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.ba .label.l {
  left: 18px;
}
.ba .label.r {
  right: 18px;
}
.ba-labels-mobile {
  display: none;
}
@media (max-width: 720px) {
  .ba-labels-mobile {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--olive);
  }
  .ba .label {
    display: none;
  }
}
.ba .handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba .handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--hairline);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.ba .handle::after {
  content: '⇠  ⇢';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--olive);
  letter-spacing: 0.1em;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 60px;
}
@media (max-width: 720px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.insta {
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s var(--ease);
}
.insta:hover {
  transform: scale(0.98);
}
.insta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(46, 46, 43, 0.5) 100%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.insta:hover::after {
  opacity: 1;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-card {
  background: rgba(251, 248, 245, 0.05);
  border: 1px solid rgba(226, 219, 213, 0.18);
  border-radius: 6px;
  padding: 44px 48px 40px;
  backdrop-filter: blur(4px);
}
@media (max-width: 720px) {
  .contact-form-card {
    padding: 28px 24px;
  }
}

.contact-info dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 22px;
}
.contact-info dd {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  font-weight: 400;
}
.contact-info dt:first-child {
  margin-top: 0;
}

.map {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(226, 219, 213, 0.18);
}
.map svg {
  display: block;
  width: 100%;
  height: 100%;
}

form.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  margin-top: 8px;
}
form.contact-form .full {
  grid-column: span 2;
}
.field {
  position: relative;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(251, 248, 245, 0.04);
  border: 1px solid rgba(226, 219, 213, 0.28);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--cream);
  outline: none;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(226, 219, 213, 0.58);
  font-style: italic;
}
.field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: rgba(226, 219, 213, 0.5);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--terracotta);
  background: rgba(251, 248, 245, 0.07);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--olive);
  color: var(--cream);
  padding: 90px 0 40px;
  margin-top: 0;
}
.site-footer a:hover {
  color: var(--terracotta);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-grid h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 18px;
  font-weight: 400;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li {
  margin: 8px 0;
  font-size: 14px;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.footer-bottom {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 219, 213, 0.15);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226, 219, 213, 0.6);
  flex-wrap: wrap;
  gap: 16px;
}

.bokadirekt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(226, 219, 213, 0.3);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 14px;
}
.bokadirekt-badge .star {
  color: var(--terracotta);
}

/* ---------- Subpage (service) ---------- */
.svc-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
}
.svc-hero .crumbs {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}
.svc-hero .crumbs a {
  color: var(--stone);
}
.svc-hero .crumbs a:hover {
  color: var(--olive);
}
.svc-hero .crumbs span {
  color: var(--olive);
}
.svc-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0;
}
.svc-hero h1 em {
  color: var(--olive);
  font-style: italic;
}
.svc-hero .lede {
  max-width: 60ch;
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: 24px;
  line-height: 1.75;
}

.svc-feature {
  aspect-ratio: 21 / 9;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin: 40px 0 0;
}

.svc-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-top: 60px;
}
@media (max-width: 960px) {
  .svc-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.svc-body aside {
  position: sticky;
  top: 120px;
  align-self: start;
}
.svc-body aside .eyebrow {
  margin-bottom: 16px;
  display: block;
}
.svc-body aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-body aside li {
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
}
.svc-body aside li .v {
  color: var(--olive);
  font-family: var(--font-display);
  font-size: 18px;
}

.svc-body main h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin: 36px 0 12px;
  color: var(--ink);
}
.svc-body main h3:first-child {
  margin-top: 0;
}
.svc-body main p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.svc-body main p strong {
  color: var(--olive);
  font-weight: 500;
}

/* ---------- Tweaks panel ---------- */
.tweaks {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 300px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(46, 46, 43, 0.25);
  z-index: 70;
  overflow: hidden;
  display: none;
}
.tweaks.open {
  display: block;
}
.tweaks h6 {
  margin: 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks h6 .close {
  color: var(--stone);
  cursor: pointer;
  letter-spacing: 0;
  font-size: 14px;
  text-transform: none;
}
.tweaks .group {
  padding: 14px 18px;
  border-bottom: 1px solid var(--hairline);
}
.tweaks .group:last-child {
  border-bottom: 0;
}
.tweaks .label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.tweaks .chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tweaks .chip {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 7px 11px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--ink-soft);
  transition: all 0.25s var(--ease);
}
.tweaks .chip:hover {
  border-color: var(--olive);
  color: var(--olive);
}
.tweaks .chip.active {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--paper);
}
.tweaks .swatches {
  display: flex;
  gap: 8px;
}
.tweaks .sw {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  position: relative;
  transition: transform 0.25s var(--ease);
}
.tweaks .sw.active {
  transform: scale(1.15);
  border-color: var(--olive);
}

/* Palette variants ---- */
body[data-palette='olive-forward'] {
  --paper: #e2dbd5;
  --surface: #d6cec7;
  --cream: #cdc3ba;
}
body[data-palette='terracotta'] {
  --paper: #f2e4da;
  --surface: #ead6c8;
  --cream: #e0c5b4;
  --olive: #8b4f3c;
  --terracotta: #c9745a;
}

/* Card variants ---- */
body[data-cards='flat'] .svc {
  border: 0;
  border-bottom: 1px solid var(--hairline);
}
body[data-cards='framed'] .svc {
  border: 1px solid var(--hairline);
  margin: 6px;
}
body[data-cards='framed'] .services {
  border: 0;
  gap: 0;
}

/* ---------- Utilities ---------- */
.divider {
  height: 1px;
  background: var(--hairline);
  margin: 0;
  border: 0;
}
.rotating-small {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Scrollbar */
::selection {
  background: var(--olive);
  color: var(--cream);
}

/* Soft parallax scene for service heros */
.svc-photo {
  position: absolute;
  inset: 0;
}
.svc-photo .tag {
  position: absolute;
  left: 22px;
  bottom: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
