/* ===================================================
   STOLDEX.F-LINE — Claude design system
   =================================================== */

:root {
  /* Claude palette */
  --cream:         #faf7f2;
  --cream-2:       #f3ede2;
  --cream-3:       #e8dfd0;
  --paper:         #ffffff;

  --ink:           #1a1915;
  --ink-2:         #3d3a33;
  --muted:         #6b665c;
  --muted-2:       #a39c8e;

  --accent:        #c96442;
  --accent-dark:   #a84e2f;
  --accent-light:  #e6957a;
  --accent-soft:   #f7e4db;

  --wood:          #2a1c10;
  --wood-light:    #6b4a2f;

  --border:        rgba(26,25,21,.08);
  --border-strong: rgba(26,25,21,.16);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-xs: 0 1px 2px rgba(26,25,21,.04);
  --shadow-sm: 0 2px 10px rgba(26,25,21,.06);
  --shadow-md: 0 10px 30px rgba(26,25,21,.08);
  --shadow-lg: 0 24px 70px rgba(26,25,21,.15);

  --ease: cubic-bezier(.4,0,.2,1);
  --t: .3s;

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, sans-serif;

  --container: 1240px;
  --nav-h: 72px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
figure { margin: 0; }
em { font-style: italic; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ---------- TYPOGRAPHY PRIMITIVES ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.section-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header .section-sub { margin-inline: auto; }
.section-header .section-label { margin-inline: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  padding: 1rem 1.85rem;
  transition: background var(--t) var(--ease),
              transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              color var(--t) var(--ease),
              border-color var(--t) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--paper);
  box-shadow: 0 6px 20px rgba(201,100,66,.32);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,100,66,.42);
}
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--paper);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: var(--paper); }
.btn-xl { font-size: 1.05rem; padding: 1.15rem 2.2rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--t) var(--ease),
              backdrop-filter var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}
.site-header.scrolled {
  background: rgba(250,247,242,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t) var(--ease);
}
.site-header.scrolled .logo-img { border-color: var(--accent-soft); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -.015em;
  font-variation-settings: "SOFT" 50;
  transition: color var(--t) var(--ease);
}
.site-header.scrolled .logo-text { color: var(--ink); }
.logo-accent { color: var(--accent-light); font-style: italic; }
.site-header.scrolled .logo-accent { color: var(--accent); }
.footer-logo-text { color: var(--cream); font-size: 1.5rem; }

/* Nav */
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: .55rem 1.05rem;
  border-radius: 999px;
  transition: color var(--t) var(--ease), background var(--t) var(--ease);
}
.site-header.scrolled .main-nav a { color: var(--ink-2); }
.main-nav a:hover { color: var(--paper); background: rgba(255,255,255,.12); }
.site-header.scrolled .main-nav a:hover { color: var(--accent); background: var(--accent-soft); }
.main-nav .nav-cta {
  background: var(--accent);
  color: var(--paper) !important;
  font-weight: 600;
  padding: .6rem 1.25rem;
}
.main-nav .nav-cta:hover { background: var(--accent-dark); color: var(--paper) !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform var(--t) var(--ease),
              opacity var(--t) var(--ease),
              background var(--t) var(--ease);
}
.site-header.scrolled .burger span { background: var(--ink); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--wood);
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: kenburns 22s ease-out forwards;
}
@keyframes kenburns { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,25,21,.3) 0%, rgba(26,25,21,.1) 40%, rgba(26,25,21,.85) 100%),
    linear-gradient(95deg, rgba(26,25,21,.75) 0%, rgba(26,25,21,.2) 65%, rgba(26,25,21,.05) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 7rem;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.75rem;
  padding: .5rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 12px var(--accent-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  color: var(--paper);
  margin-bottom: 1.75rem;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.hero-accent {
  color: var(--accent-light);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.hero-sub {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 54ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero-free {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  margin-inline: auto;
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%      { opacity: .3; transform: scaleY(.5); }
}

/* ============================================================
   VALUE STRIP
   ============================================================ */
.value-strip {
  background: var(--cream-2);
  border-block: 1px solid var(--border);
  padding: 2.5rem 0;
}
.value-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.value-item svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
  padding: 6px;
  background: var(--accent-soft);
  border-radius: 10px;
  box-sizing: content-box;
}
.value-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.value-item span {
  display: block;
  font-size: .85rem;
  color: var(--muted);
  margin-top: .1rem;
}

/* ============================================================
   SERVICES — bento with featured
   ============================================================ */
.services {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.25rem;
}
.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card--featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, var(--accent-soft) 0%, var(--cream-2) 100%);
  border-color: var(--accent-light);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.service-card--featured:hover { border-color: var(--accent); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood-light);
  margin-bottom: 1.5rem;
  transition: background var(--t) var(--ease),
              color var(--t) var(--ease),
              border-color var(--t) var(--ease);
}
.service-card--featured .service-icon {
  background: var(--paper);
  border-color: var(--accent-light);
  color: var(--accent);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}
.service-icon svg { width: 32px; height: 32px; }
.service-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--paper);
  padding: .35rem .75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  width: fit-content;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .65rem;
  letter-spacing: -.01em;
}
.service-card--featured h3 { font-size: 1.7rem; }
.service-card p {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
  flex-grow: 1;
}
.service-card--featured p { font-size: 1.02rem; color: var(--ink-2); }
.service-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--t) var(--ease);
  margin-top: auto;
}
.service-link:hover { gap: .7rem; }

/* ============================================================
   BLATY SECTION
   ============================================================ */
.blaty-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.blaty-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(201,100,66,.2) 0%, transparent 55%);
  pointer-events: none;
}
.blaty-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
}
.blaty-media { position: relative; }
.blaty-img-stack {
  position: relative;
  aspect-ratio: 4/5;
}
.blaty-img { border-radius: var(--radius-lg); object-fit: cover; }
.blaty-img-main { width: 100%; height: 100%; box-shadow: var(--shadow-lg); }
.blaty-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 4/3;
  border: 8px solid var(--ink);
  box-shadow: var(--shadow-md);
}
.blaty-content .section-title,
.blaty-title { color: var(--paper); }
.blaty-content .section-label { color: var(--accent-light); }
.blaty-title em { color: var(--accent-light); }
.blaty-lead {
  color: rgba(255,255,255,.72);
  font-size: 1.12rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 50ch;
}

.process-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.75rem; }
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.4rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.process-step:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  font-style: italic;
  color: var(--accent-light);
  line-height: 1;
  flex-shrink: 0;
  width: 2.4rem;
  letter-spacing: -.02em;
}
.process-step strong {
  display: block;
  color: var(--paper);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: .3rem;
}
.process-step p {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   HOW WE WORK — bento grid
   ============================================================ */
.how-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream-2);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.25rem;
}
.how-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.how-card--lg {
  grid-column: span 2;
  grid-row: span 2;
  background:
    radial-gradient(circle at 100% 0%, var(--accent-soft) 0%, var(--paper) 50%);
}
.how-card--accent {
  background: var(--ink);
  color: var(--paper);
  border-color: transparent;
}
.how-card--accent:hover { background: #252420; }
.how-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -.01em;
  margin-bottom: 1rem;
  display: inline-block;
}
.how-card--accent .how-num { color: var(--accent-light); }
.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: .65rem;
  line-height: 1.15;
}
.how-card--lg h3 { font-size: 2.4rem; line-height: 1.05; }
.how-card--accent h3 { color: var(--paper); }
.how-card p {
  font-size: .98rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 46ch;
}
.how-card--lg p { font-size: 1.1rem; }
.how-card--accent p { color: rgba(255,255,255,.65); }
.how-visual {
  margin-top: auto;
  padding-top: 2rem;
  color: var(--accent);
  align-self: flex-end;
}
.how-visual--phone svg {
  width: 110px;
  height: 110px;
  opacity: .9;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  background: var(--cream-3);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.gallery-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,25,21,.6) 100%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream-2);
}
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
.about-content p {
  color: var(--muted);
  margin-bottom: 1.15rem;
  font-size: 1.08rem;
  line-height: 1.75;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin: 2.25rem 0 0;
}
.about-values li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: .95rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.about-values svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.about-media { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.about-badge strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -.01em;
}
.about-badge span {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
}

/* ============================================================
   CONTACT — big CTA + cards
   ============================================================ */
.contact {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}

/* Big CTA */
.big-cta {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  color: var(--paper);
}
.big-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(201,100,66,.35) 0%, transparent 55%);
  pointer-events: none;
}
.big-cta::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -5%;
  width: 40%; height: 80%;
  background: radial-gradient(ellipse, rgba(230,149,122,.18) 0%, transparent 60%);
  pointer-events: none;
}
.big-cta-inner {
  position: relative;
  max-width: 680px;
  text-align: center;
  margin-inline: auto;
}
.big-cta .section-label {
  color: var(--accent-light);
  margin-inline: auto;
}
.big-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--paper);
  margin-bottom: 1.5rem;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.big-cta-title em {
  color: var(--accent-light);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.big-cta-sub {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 52ch;
  margin-inline: auto;
}
.big-cta-btn {
  font-size: 1.2rem !important;
  padding: 1.3rem 2.6rem !important;
  background: var(--accent) !important;
  color: var(--paper) !important;
  box-shadow: 0 10px 40px rgba(201,100,66,.4) !important;
}
.big-cta-btn:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(201,100,66,.55) !important;
}
.big-cta-free {
  margin-top: 1.25rem;
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}

/* Contact cards grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-block {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
}
.contact-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.contact-block--primary {
  background: var(--accent-soft);
  border-color: var(--accent-light);
}
.contact-block--primary:hover { border-color: var(--accent); }
.contact-block-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--cream-2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
}
.contact-block--primary .contact-block-icon {
  background: var(--accent);
  color: var(--paper);
}
.contact-block strong {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-block .contact-big {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.15;
}
.contact-block--primary .contact-big { color: var(--accent-dark); }
.contact-block small {
  font-size: .88rem;
  color: var(--muted);
}

/* Area */
.contact-area {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
}
.contact-area strong {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}
.contact-area p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
}
.footer-top {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-top::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(201,100,66,.14) 0%, transparent 55%);
  pointer-events: none;
}
.footer-big {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}
.footer-label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}
.footer-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  color: var(--paper);
  margin-bottom: 2.5rem;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.footer-headline em {
  color: var(--accent-light);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--accent-light);
  padding: 1rem 2rem;
  border: 2px solid rgba(230,149,122,.3);
  border-radius: 999px;
  transition: background var(--t) var(--ease),
              color var(--t) var(--ease),
              border-color var(--t) var(--ease),
              transform var(--t) var(--ease);
  letter-spacing: -.01em;
}
.footer-phone:hover {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
}
.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  margin-top: 1rem;
  line-height: 1.65;
  max-width: 30ch;
}
.footer-nav strong,
.footer-contact strong {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a {
  font-size: .98rem;
  color: rgba(255,255,255,.65);
  transition: color var(--t) var(--ease);
}
.footer-nav a:hover { color: var(--accent-light); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-contact a {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 1.15rem;
  font-family: var(--font-display);
  letter-spacing: -.01em;
}
.footer-contact a:hover { color: var(--accent-soft); }
.footer-contact span {
  color: rgba(255,255,255,.5);
  font-size: .95rem;
}
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom small {
  color: rgba(255,255,255,.35);
  font-size: .82rem;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,9,7,.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 80px rgba(0,0,0,.8);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
  backdrop-filter: blur(10px);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); color: var(--paper); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
  backdrop-filter: blur(10px);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,.2);
  color: var(--paper);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease) var(--delay, 0s),
              transform .7s var(--ease) var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal.visible,
.no-js .reveal { opacity: 1; transform: none; }

/* HERO always visible */
.hero .reveal {
  opacity: 1;
  transform: none;
  animation: heroFadeIn .9s var(--ease) both;
  animation-delay: var(--hd, 0s);
}
.hero .reveal-delay-1 { --hd: .08s; }
.hero .reveal-delay-2 { --hd: .18s; }
.hero .reveal-delay-3 { --hd: .3s; }
.hero .reveal-delay-4 { --hd: .42s; }
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.reveal-delay-1 { --delay: .1s; }
.reveal-delay-2 { --delay: .2s; }
.reveal-delay-3 { --delay: .3s; }
.reveal-delay-4 { --delay: .4s; }

/* ============================================================
   RESPONSIVE — TABLET ≤ 960px
   ============================================================ */
@media (max-width: 960px) {
  .value-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-column: span 2; }

  .blaty-inner { grid-template-columns: 1fr; }
  .blaty-media { order: -1; max-width: 480px; margin-inline: auto; }
  .blaty-img-accent { right: 0; }

  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-card--lg { grid-column: span 2; grid-row: auto; }

  .about-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; max-width: 480px; margin-inline: auto; }
  .about-img { aspect-ratio: 16/10; }
  .about-badge { bottom: -1rem; left: 1rem; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .footer-brand p { margin-inline: auto; }
  .footer-contact { align-items: center; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   MOBILE ≤ 640px
   ============================================================ */
@media (max-width: 640px) {
  :root { --nav-h: 64px; }

  .main-nav {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(250,247,242,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .4s var(--ease), opacity .3s ease;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    border-top: 1px solid var(--border);
    z-index: 800;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: .3rem; }
  .main-nav a {
    font-size: 1.05rem;
    padding: .9rem 1.1rem;
    display: block;
    color: var(--ink) !important;
  }
  .main-nav .nav-cta { text-align: center; margin-top: .75rem; color: var(--paper) !important; }
  .burger { display: flex; }

  .hero-content { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 5rem; }
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .value-inner { grid-template-columns: 1fr; gap: 1rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; }
  .service-card--featured h3 { font-size: 1.5rem; }

  .how-grid { grid-template-columns: 1fr; }
  .how-card--lg { grid-column: span 1; }
  .how-card--lg h3 { font-size: 1.9rem; }
  .how-visual--phone svg { width: 80px; height: 80px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }

  .about-values { grid-template-columns: 1fr; }

  .big-cta { padding: 2.5rem 1.5rem; border-radius: var(--radius-lg); }
  .big-cta-btn { font-size: 1rem !important; padding: 1.1rem 1.75rem !important; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-bottom-inner { flex-direction: column; text-align: center; gap: .3rem; }

  .lightbox-prev { left: .5rem; width: 44px; height: 44px; font-size: 2rem; }
  .lightbox-next { right: .5rem; width: 44px; height: 44px; font-size: 2rem; }
  .lightbox-close { top: 1rem; right: 1rem; }

  .blaty-img-accent { display: none; }
  .about-badge { position: static; margin-top: 1rem; display: inline-block; }

  .process-step { padding: 1.1rem; gap: 1rem; }
  .step-num { font-size: 1.5rem; width: 2rem; }
}

/* ============================================================
   A11Y
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-img { animation: none; transform: none; }
}
::selection { background: var(--accent); color: var(--paper); }
