/* ============================================================
   CARPINTERÍA Y TORNEADOS SORIANO — La Hoya, Lorca
   Vertical: madera (monocromo cálido) · Cormorant + Manrope + Space Mono
   ============================================================ */

:root {
  --paper: #f7f1e8;
  --paper-2: #efe5d6;
  --cream: #fbf7f0;
  --ink: #271d14;
  --ink-soft: #574737;
  --muted: #8a7560;
  --faint: #b6a690;
  --line: rgba(39, 29, 20, 0.13);
  --hair: rgba(39, 29, 20, 0.08);

  --accent: #a9743f;
  --accent-deep: #875a2c;
  --accent-soft: #c79a6a;
  --accent-glow: rgba(169, 116, 63, 0.22);

  --walnut: #2a1d12;
  --walnut-deep: #1c130a;
  --walnut-2: #34251600;

  --wa: #25d366;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --section: clamp(68px, 9vw, 128px);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --shadow-sm: 0 2px 10px -4px rgba(39, 29, 20, 0.25);
  --shadow-md: 0 14px 34px -16px rgba(39, 29, 20, 0.35);
  --shadow-lg: 0 40px 80px -32px rgba(39, 29, 20, 0.5);

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

  /* Veta de madera procedural (tile SVG rasterizado una vez) */
  --woodgrain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='w'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.012 0.09' numOctaves='3' seed='7'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.16 0 0 0 0 0.10 0 0 0 0 0.05 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23w)'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent-glow); color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

h1, h2, h3, .display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
h1 em, h2 em { font-style: italic; color: var(--accent-deep); font-weight: 500; }
p { text-wrap: pretty; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11.5px;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.process .eyebrow, .sec-head.light .eyebrow { color: var(--accent-soft); }
.process .eyebrow::before { background: var(--accent-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.78em 1.3em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--sm { padding: 0.55em 1em; font-size: 13.5px; }
.btn--lg { padding: 0.95em 1.6em; font-size: 15.5px; }
.btn--block { width: 100%; justify-content: center; }

.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: rgba(39, 29, 20, 0.04); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: rgba(39, 29, 20, 0.08); transform: translateY(-2px); }
.btn--dark { background: var(--walnut); color: var(--cream); }
.btn--dark:hover { background: var(--walnut-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn--outline-light { background: transparent; border-color: rgba(251, 247, 240, 0.4); color: var(--cream); }
.btn--outline-light:hover { background: rgba(251, 247, 240, 0.12); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(247, 241, 232, 0.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--hair);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 30px;
  padding: 0 7px;
  border-radius: 6px;
  background: var(--accent);
}
.brand-mark i {
  display: block;
  width: 4px;
  border-radius: 4px;
  background: var(--cream);
}
.brand-mark i:nth-child(1) { height: 12px; }
.brand-mark i:nth-child(2) { height: 20px; }
.brand-mark i:nth-child(3) { height: 12px; }
.brand-mark.dark { background: var(--accent); }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-txt em {
  font-style: normal;
  font-family: "Space Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2px; width: 22px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; margin-inline: auto; }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 74px 0 auto 0;
  z-index: 55;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  padding: 1rem var(--gutter) 1.6rem;
  gap: 0.2rem;
  transform: translateY(-130%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu a { padding: 0.8rem 0; font-weight: 600; border-bottom: 1px solid var(--hair); }
.mobile-menu .btn { margin-top: 0.9rem; justify-content: center; border-bottom: none; }
body.menu-open .mobile-menu { transform: translateY(0); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(199, 154, 106, 0.18), transparent 55%),
    linear-gradient(180deg, var(--cream), var(--paper));
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--woodgrain);
  background-size: 240px 240px;
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(3.1rem, 8.5vw, 6.2rem);
  margin: 0.4rem 0 1.4rem;
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 1.9rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.8rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.hero-meta span { color: var(--ink); font-weight: 700; }

/* Hero media */
.hero-media { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  border: 1px solid var(--hair);
}
.hero-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-chip {
  position: absolute;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero-chip b { font-size: 14px; font-weight: 800; }
.hero-chip span { font-size: 11.5px; color: var(--muted); }
.chip-a { top: 1.4rem; left: -1.1rem; }
.chip-b { bottom: 1.6rem; right: -1rem; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid var(--faint);
  border-radius: 14px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--accent);
  animation: cue 1.8s var(--ease) infinite;
}
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ============================================================
   TRUST
   ============================================================ */
.trust { background: var(--walnut-deep); color: var(--cream); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(251, 247, 240, 0.1);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-block: clamp(2.4rem, 5vw, 4rem);
}
.trust-item {
  background: var(--walnut-deep);
  padding: 1.7rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.trust-item b { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-weight: 600; }
.trust-item span { font-size: 13px; color: var(--accent-soft); letter-spacing: 0.01em; }

/* ============================================================
   INTRO
   ============================================================ */
.intro { padding-block: var(--section); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.intro h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin: 0.4rem 0 1.3rem; }
.intro p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 50ch; }
.intro strong { color: var(--ink); font-weight: 700; }
.intro .btn { margin-top: 0.7rem; }
.intro-shot {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
  background: var(--paper-2);
}
.intro-shot img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.sec-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.sec-head .sec-sub { color: var(--muted); margin-top: 0.7rem; font-size: 1.05rem; }
.sec-head.light h2 { color: var(--cream); }

/* ============================================================
   SERVICIOS
   ============================================================ */
.services { padding-block: var(--section); background: var(--paper-2); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.svc {
  background: var(--cream);
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.svc:hover { background: #fff; }
.svc-num {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
}
.svc h3 { font-size: 1.6rem; margin: 0.7rem 0 0.5rem; }
.svc p { color: var(--ink-soft); font-size: 14.8px; }

/* ============================================================
   GALERÍA
   ============================================================ */
.gallery { padding-block: var(--section); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--paper-2);
  box-shadow: var(--shadow-sm);
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gal-item.wide { grid-column: span 2; }
.gal-item.tall { grid-row: span 2; }
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(28, 19, 10, 0.45));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item:hover::after { opacity: 1; }
/* encuadres específicos */
.gal-item[data-title="Cocina en madera con encimera de granito"] img { object-position: center 70%; }
.gal-item[data-title="Barandilla torneada de pino"] img { object-position: center 35%; }

/* ============================================================
   PROCESO (sección oscura)
   ============================================================ */
.process { background: var(--walnut); color: var(--cream); padding-block: var(--section); position: relative; overflow: hidden; }
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--woodgrain);
  background-size: 240px 240px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.process .container { position: relative; z-index: 2; }
.proc-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(251, 247, 240, 0.14);
  border-radius: var(--r-md);
  overflow: hidden;
}
.proc-steps li { background: var(--walnut); padding: 1.8rem 1.5rem; }
.proc-num { font-family: "Space Mono", monospace; font-size: 13px; color: var(--accent-soft); font-weight: 700; }
.proc-steps b { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.55rem; font-weight: 600; margin: 0.6rem 0 0.4rem; }
.proc-steps p { color: rgba(251, 247, 240, 0.72); font-size: 14px; }
.process-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.6rem; }

/* ============================================================
   UBICACIÓN
   ============================================================ */
.location { padding-block: var(--section); background: var(--paper-2); }
.loc-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: stretch; }
.loc-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0.3rem 0 1.1rem; }
.loc-addr { color: var(--ink-soft); margin-bottom: 1.3rem; line-height: 1.7; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
  background: var(--cream);
}
.status .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--faint); }
.status.open { color: #2f7a3f; border-color: rgba(47, 122, 63, 0.35); background: rgba(47, 122, 63, 0.08); }
.status.open .dot { background: #2f7a3f; box-shadow: 0 0 0 4px rgba(47, 122, 63, 0.18); }
.status.closed { color: var(--accent-deep); border-color: rgba(135, 90, 44, 0.3); background: rgba(135, 90, 44, 0.07); }
.status.closed .dot { background: var(--accent-deep); }

.hours { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; max-width: 360px; }
.hours .row th, .hours .row td { padding: 0.55rem 0; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--hair); }
.hours .row th { font-weight: 600; color: var(--ink-soft); }
.hours .row td { text-align: right; color: var(--ink); font-variant-numeric: tabular-nums; }
.hours .row.today th, .hours .row.today td { color: var(--accent-deep); font-weight: 800; }
.loc-cta { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.loc-map { border-radius: var(--r-lg); overflow: hidden; min-height: 380px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.loc-map iframe { display: block; height: 100%; min-height: 380px; filter: grayscale(0.15) sepia(0.12); }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact { padding-block: var(--section); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-intro h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0.3rem 0 1rem; }
.contact-intro p { color: var(--ink-soft); margin-bottom: 1.5rem; max-width: 40ch; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.contact-list li { display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: 0.7rem; }
.contact-list span { font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.contact-list a, .contact-list li { font-weight: 600; }
.contact-list a { color: var(--accent-deep); }

.form { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); position: relative; }
.field { margin-bottom: 1rem; display: flex; flex-direction: column; }
.field label { font-size: 13px; font-weight: 700; margin-bottom: 0.4rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 15px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.field.bad input, .field.bad select { border-color: #c0563f; }
.field textarea { resize: vertical; }
.check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 13px; color: var(--ink-soft); margin: 0.4rem 0 1.1rem; }
.check input { margin-top: 3px; accent-color: var(--accent); }
.check a { color: var(--accent-deep); text-decoration: underline; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 0.8rem; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--r-sm);
  background: rgba(47, 122, 63, 0.1);
  color: #2f7a3f;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.form.sent .form-success { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--walnut-deep); color: var(--cream); padding-top: clamp(3rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: 2rem; padding-bottom: 2.6rem; }
.f-name { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; margin: 0.8rem 0 0.5rem; }
.f-name b { color: var(--accent-soft); }
.f-tag { color: rgba(251, 247, 240, 0.6); font-size: 14px; max-width: 30ch; }
.f-col h4 { font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 1rem; }
.f-col a, .f-col span { display: block; color: rgba(251, 247, 240, 0.78); font-size: 14px; margin-bottom: 0.55rem; }
.f-col a { transition: color 0.2s; }
.f-col a:hover { color: var(--cream); }
.footer-bar { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; padding-block: 1.5rem; border-top: 1px solid rgba(251, 247, 240, 0.12); font-size: 12.5px; color: rgba(251, 247, 240, 0.55); }
.footer-bar .legal a { transition: color 0.2s; }
.footer-bar .legal a:hover { color: var(--cream); }

/* ============================================================
   CALL BAR MÓVIL
   ============================================================ */
.callbar { display: none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(20, 13, 6, 0.92); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 5vw; }
.lightbox.open { display: flex; }
.lb-inner { position: relative; max-width: 1000px; width: 100%; }
.lb-shot { border-radius: var(--r-md); overflow: hidden; max-height: 80vh; background: var(--walnut); }
.lb-shot img { width: 100%; max-height: 80vh; object-fit: contain; }
.lb-close { position: absolute; top: -42px; right: 0; color: #fff; font-size: 24px; width: 40px; height: 40px; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 40px; width: 54px; height: 54px; background: rgba(0, 0, 0, 0.35); border-radius: 50%; transition: background 0.2s; }
.lb-nav:hover { background: rgba(0, 0, 0, 0.6); }
.lb-nav.prev { left: -16px; }
.lb-nav.next { right: -16px; }
.lb-cap { color: #fff; text-align: center; margin-top: 0.9rem; font-size: 14px; }
.lb-cap b { font-weight: 700; }
.lb-cap span { color: var(--accent-soft); margin-left: 0.5rem; }

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-d="1"] { transition-delay: 0.08s; }
[data-d="2"] { transition-delay: 0.16s; }
[data-d="3"] { transition-delay: 0.24s; }
[data-d="4"] { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .hero-media { max-width: 460px; }
  .intro-grid, .loc-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-shot { max-width: 480px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-auto-rows: 180px; }
}

@media (max-width: 720px) {
  .nav-links, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding-top: 96px; min-height: auto; }
  .hero h1 { font-size: clamp(2.7rem, 12vw, 3.6rem); }
  .chip-a { left: 0.6rem; }
  .chip-b { right: 0.6rem; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gal-item.wide { grid-column: span 2; }
  .gal-item.tall { grid-row: span 1; }
  .lb-nav.prev { left: 0; }
  .lb-nav.next { right: 0; }
  .callbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    inset: auto 0 0 0;
    z-index: 70;
    background: var(--cream);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px -10px rgba(39, 29, 20, 0.4);
  }
  .cb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.95rem; font-weight: 800; font-size: 14.5px; }
  .cb-call { color: var(--ink); }
  .cb-wa { background: var(--wa); color: #fff; }
  body { padding-bottom: 56px; }
  .mobile-menu { inset-block-start: 74px; }
}

@media (max-width: 460px) {
  .svc-grid, .trust-grid, .proc-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
