@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Syne:wght@700;800&display=swap");

:root {
  --ink: #0a0a0a;
  --ink-2: #141414;
  --flare: #ff5c00;
  --flare-hot: #ff7a2e;
  --paper: #f4f0e8;
  --white: #ffffff;
  --mute: #8a847a;
  --line: #2a2a2a;
  --text: #161616;
  --wa: #25d366;
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --topbar-h: 38px;
  --header-h: 74px;
  --chrome-h: calc(var(--topbar-h) + var(--header-h));
  --max: 1180px;
  --pad: 1.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-radius: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  min-height: 100%;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; border-radius: 0; }
button { cursor: pointer; background: none; border: 0; }
:focus-visible { outline: 2px solid var(--flare); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--flare);
  color: var(--ink);
  padding: 0.65rem 1rem;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.container { width: min(100% - 2 * var(--pad), var(--max)); margin-inline: auto; }

h1, h2, h3, h4, .rev-layer-title, .page-hero h1, .section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6.4vw, 5.4rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.65rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.03em; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section { padding: 4.5rem 0; }
.section-alt { padding: 4.5rem 0; background: var(--white); }
.section-ink { padding: 4.5rem 0; background: var(--ink); color: var(--paper); }
.section-ink h2, .section-ink h3, .section-ink .section-head h2 { color: var(--white); }
.section-flare { padding: 3.5rem 0; background: var(--flare); color: var(--ink); }
.section-head { margin-bottom: 2.4rem; max-width: 42rem; }
.section-head h2 { margin-top: 0.55rem; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--flare);
}
.section-label::before { content: ""; width: 4px; height: 14px; background: var(--flare); flex-shrink: 0; }
.section-ink .section-label { color: var(--flare-hot); }

.btn, .btn-primary, .btn-ghost, .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover, .btn-primary:hover, .btn-ghost:hover, .btn-whatsapp:hover { transform: translateY(-2px); }
.btn-primary, .btn.btn-primary { background: var(--flare); color: var(--ink); border-color: var(--flare); }
.btn-primary:hover, .btn.btn-primary:hover { background: var(--flare-hot); border-color: var(--flare-hot); }
.btn-ghost, .btn.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover, .btn.btn-ghost:hover { background: var(--ink); color: var(--white); }
.section-ink .btn-ghost { color: var(--white); border-color: var(--white); }
.section-ink .btn-ghost:hover { background: var(--white); color: var(--ink); }
.btn-whatsapp, .btn.btn-whatsapp { background: var(--wa); color: var(--ink); border-color: var(--wa); }
.btn-lg { min-height: 56px; padding: 1rem 1.7rem; font-size: 1rem; }
.btn-block { width: 100%; }

.top-bar {
  height: var(--topbar-h);
  background: var(--ink);
  color: var(--white);
  border-bottom: 3px solid var(--flare);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.top-bar-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.top-bar-link { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--white); white-space: nowrap; }
.top-bar-link strong, .top-bar-wa { color: var(--flare); }

.header, .site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.logo { display: flex; align-items: center; flex-shrink: 0; margin-right: auto; }
.logo img { height: 46px; width: auto; filter: brightness(0) invert(1); }
.main-nav ul { display: flex; align-items: center; gap: 0.15rem; }
.main-nav a {
  display: block;
  padding: 0.55rem 0.75rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
}
.main-nav a:hover, .main-nav a.active { color: var(--flare); }
.header-cta {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  background: var(--flare);
  color: var(--ink);
  padding: 0.45rem 1.05rem;
  min-height: 48px;
  line-height: 1.1;
  flex-shrink: 0;
}
.header-cta .cta-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}
.header-cta strong { font-family: var(--font-display); font-size: 0.95rem; font-weight: 800; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--white); }

.rev-hero {
  position: relative;
  height: calc(100svh - var(--chrome-h));
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.rev-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}
.rev-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 1; }
.rev-slide-media { position: absolute; inset: 0; overflow: hidden; }
.rev-hero .container { height: 100%; position: relative; z-index: 3; }
.rev-slide img, .rev-slide .ken-burns {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1);
}
.rev-slide.is-active img, .rev-slide.is-active .ken-burns { animation: kenBurns 8s ease-out forwards; }
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.rev-overlay, .rev-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.62) 38%, rgba(10, 10, 10, 0.18) 72%, rgba(10, 10, 10, 0.08) 100%);
}
.rev-slide-inner, .rev-layers {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 46rem;
  padding: 2.5rem 0 4.5rem;
}
.rev-layer-kicker, .rev-layer-title, .rev-layer-sub, .rev-layer-cta {
  opacity: 0;
  transform: translateY(18px);
}
.rev-slide.is-active .rev-layer-kicker,
.rev-slide.is-active .rev-layer-title,
.rev-slide.is-active .rev-layer-sub,
.rev-slide.is-active .rev-layer-cta { animation: revIn 0.7s var(--ease) forwards; }
.rev-slide.is-active .rev-layer-title { animation-delay: 0.12s; }
.rev-slide.is-active .rev-layer-sub { animation-delay: 0.22s; }
.rev-slide.is-active .rev-layer-cta { animation-delay: 0.32s; }
@keyframes revIn { to { opacity: 1; transform: none; } }
.rev-layer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--flare);
  margin-bottom: 1rem;
}
.rev-layer-kicker::before { content: ""; width: 4px; height: 16px; background: var(--flare); }
.rev-layer-title {
  font-size: clamp(2.55rem, 7.2vw, 6.2rem);
  color: var(--white);
  max-width: 13ch;
  margin-bottom: 1.1rem;
}
.rev-layer-sub {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(244, 240, 232, 0.82);
  max-width: 36rem;
  margin-bottom: 1.6rem;
  line-height: 1.55;
}
.rev-layer-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.rev-index {
  position: absolute;
  right: max(1.25rem, calc((100% - var(--max)) / 2));
  bottom: 2.4rem;
  z-index: 6;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  color: var(--white);
}
.rev-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--line);
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
}
.rev-arrow:hover { background: var(--flare); color: var(--ink); border-color: var(--flare); }
.rev-arrow-left, .rev-arrow-prev { left: max(0.75rem, calc((100% - var(--max)) / 2 - 0.25rem)); }
.rev-arrow-right, .rev-arrow-next { right: max(0.75rem, calc((100% - var(--max)) / 2 - 0.25rem)); }
.rev-bullets {
  position: absolute;
  left: max(1.25rem, calc((100% - var(--max)) / 2));
  bottom: 1.55rem;
  z-index: 6;
  display: flex;
  gap: 0.4rem;
}
.rev-bullet { width: 28px; height: 3px; background: rgba(255, 255, 255, 0.32); border: 0; padding: 0; }
.rev-bullet.is-active { background: var(--flare); }
.rev-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 7;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.rev-progress span, .rev-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--flare);
  transform-origin: left center;
}
.rev-progress.is-running span, .rev-progress.is-running .rev-progress-bar { animation: revProgress 6.5s linear forwards; }
.rev-hero.is-paused .rev-progress span,
.rev-hero.is-paused .rev-progress-bar,
.rev-hero.is-paused .rev-slide.is-active img,
.rev-hero.is-paused .rev-slide.is-active .ken-burns { animation-play-state: paused; }
@keyframes revProgress {
  from { width: 0; }
  to { width: 100%; }
}

.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 4.25rem 0 3.1rem;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: -1.2rem;
  bottom: 0;
  width: 9rem;
  height: 8px;
  background: var(--flare);
  transform: skewX(-32deg);
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4.8vw, 3.6rem); margin-top: 0.65rem; }
.page-hero-sm { padding: 3.2rem 0 2.4rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.82rem; color: var(--mute); }
.breadcrumb a { color: rgba(244, 240, 232, 0.72); }
.breadcrumb a:hover { color: var(--flare); }
.breadcrumb span { color: var(--flare); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}
.stat-strip > * { padding: 1.35rem 1.1rem; border-right: 1px solid var(--line); }
.stat-strip > *:last-child { border-right: 0; }
.stat-strip strong, .stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--flare);
  letter-spacing: -0.04em;
}
.stat-strip span, .stat-label { font-size: 0.82rem; color: var(--mute); }

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2.2rem 0;
}
.cta-band h2 { color: inherit; max-width: 18ch; }
.section-flare .cta-band p { color: var(--ink); opacity: 0.82; }

.card-grid, .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.service-card, .news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--ink);
  color: var(--text);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.service-card:hover, .news-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--flare);
  box-shadow: inset 0 4px 0 0 var(--flare);
}
.service-card-img, .news-card-img, .gallery-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-2);
}
.service-card-img img, .news-card-img img, .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-card-img::before, .news-card-img::before, .gallery-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-top: 6px solid var(--flare);
  border-left: 6px solid var(--flare);
  z-index: 2;
  pointer-events: none;
}
.service-card-body, .news-card-body {
  padding: 1.15rem 1.15rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.service-card-body p, .news-card-body p { color: #4a463e; font-size: 0.95rem; }
.news-card-body time { display: block; font-size: 0.78rem; color: var(--mute); margin-bottom: 0.4rem; letter-spacing: 0.06em; text-transform: uppercase; }
.news-card-body h2 { font-size: 1.15rem; }
.news-meta { font-size: 0.78rem; color: var(--mute); letter-spacing: 0.08em; text-transform: uppercase; }
.read-more {
  margin-top: auto;
  padding-top: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--flare);
}

.region-search {
  width: min(100%, 28rem);
  margin-bottom: 1.6rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--ink);
  background: var(--white);
}
.region-search:focus { outline: 2px solid var(--flare); box-shadow: 0 0 0 3px var(--ink); }
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.65rem; }
.region-chip, .keyword-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.45rem 0.8rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid var(--ink);
  text-align: center;
}
.region-chip:hover, .keyword-tag:hover { background: var(--flare); border-color: var(--flare); color: var(--ink); }
.ilce-group { margin-bottom: 2.2rem; }
.ilce-group h2, .ilce-group h3 { margin-bottom: 0.9rem; }
.keyword-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(16rem, 0.7fr);
  gap: 2.2rem;
  align-items: start;
}
.prose { color: var(--text); }
.prose h2 { margin: 2rem 0 1rem; }
.prose h2::after { content: ""; display: block; width: 40px; height: 3px; background: var(--flare); margin-top: 0.55rem; }
.prose h3 { margin: 1.5rem 0 0.7rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1rem; }
.prose ul, .prose ol { padding-left: 1.15rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose a { color: var(--flare); text-decoration: underline; text-underline-offset: 3px; }
.prose img { margin: 1.2rem 0; border: 1px solid var(--ink); }
.sidebar-card { background: var(--white); border: 1px solid var(--ink); padding: 1.2rem; margin-bottom: 1rem; }
.sidebar-card h3 { margin-bottom: 0.8rem; }
.sidebar-cta { background: var(--ink); color: var(--white); border-color: var(--ink); }
.sidebar-cta h3 { color: var(--white); }
.sidebar-links { display: flex; flex-direction: column; }
.sidebar-links a { padding: 0.45rem 0; border-bottom: 1px solid #ece7dc; font-weight: 600; }
.sidebar-links a:hover { color: var(--flare); }
.partner-box { margin: 1.4rem 0; padding: 1.2rem; border: 1px solid var(--ink); background: var(--white); }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem; }
.contact-info p, .contact-info a { margin-bottom: 0.45rem; }
.contact-form, .contact-form-wrap { background: var(--white); border: 1px solid var(--ink); padding: 1.4rem; }
.contact-form label, .form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.35rem; }
.form-group, .form-row { margin-bottom: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: 2px solid var(--flare);
  box-shadow: 0 0 0 3px var(--ink);
  background: var(--white);
}
.captcha { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.captcha img { width: 160px; height: 56px; border: 1px solid var(--ink); background: var(--ink); }
.captcha-refresh, #captcha-refresh {
  min-height: 42px;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.captcha-refresh:hover, #captcha-refresh:hover { background: var(--flare); border-color: var(--flare); color: var(--ink); }
.form-alert { margin-bottom: 1rem; padding: 0.8rem 0.95rem; font-weight: 600; border: 1px solid var(--ink); }
.form-alert.is-success { background: #e8f8ee; border-color: var(--wa); }
.form-alert.is-error { background: #fbece6; border-color: var(--flare); }

.faq { display: flex; flex-direction: column; gap: 0.55rem; }
.faq details { background: var(--white); border: 1px solid var(--ink); padding: 0.15rem 0; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--flare); font-size: 1.2rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p, .faq details .faq-body { padding: 0 1.1rem 1.05rem; color: #3a372f; }

.gallery-thumb { width: 100%; cursor: zoom-in; border: 1px solid var(--ink); }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.92);
  padding: 1.5rem;
}
.lightbox.is-open { display: flex; }
body.lightbox-open { overflow: hidden; }
.lightbox-content img { max-height: 82vh; max-width: min(92vw, 1100px); border: 1px solid var(--line); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--line);
  font-size: 1.5rem;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--flare);
  color: var(--ink);
  border-color: var(--flare);
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

.footer, .site-footer {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--flare);
  padding-top: 3.2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr; gap: 2rem; padding-bottom: 2.4rem; }
.footer-brand img { filter: brightness(0) invert(1); height: 52px; width: auto; margin-bottom: 1rem; }
.footer-brand p, .footer-links a, .footer-contact, .footer-contact a {
  color: rgba(244, 240, 232, 0.7);
  font-size: 0.95rem;
}
.footer h3, .site-footer h3 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer-links li, .footer-contact li { margin-bottom: 0.4rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--flare); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1rem; }
.footer-social a {
  color: var(--flare);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-partners, .footer-keywords { border-top: 1px solid var(--line); padding: 1.5rem 0; }
.footer-partners h3, .footer-keywords h3 { color: var(--mute); font-size: 0.78rem; margin-bottom: 0.8rem; }
.footer .keyword-tag, .site-footer .keyword-tag {
  background: var(--ink-2);
  border-color: var(--line);
  color: var(--paper);
  font-size: 0.78rem;
  min-height: 34px;
}
.footer .keyword-tag:hover, .site-footer .keyword-tag:hover {
  background: var(--flare);
  border-color: var(--flare);
  color: var(--ink);
}
.footer-bottom { border-top: 1px solid var(--line); padding: 1.1rem 0 1.4rem; font-size: 0.85rem; color: var(--mute); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--flare); }

.floating-call, .floating-wa {
  position: fixed;
  right: 1.15rem;
  z-index: 80;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 0 0 3px var(--flare);
  border-radius: 50%;
}
.floating-call { bottom: 1.15rem; }
.floating-wa { bottom: 5.15rem; color: var(--wa); }
.floating-call:hover, .floating-wa:hover { background: var(--flare); color: var(--ink); }

.map-embed, .map-frame iframe { width: 100%; min-height: 280px; border: 1px solid var(--ink); background: var(--ink-2); }
iframe { border: 0; max-width: 100%; }
.page-404 { text-align: center; padding: 5rem 0; }
.page-404 h1 { margin-bottom: 0.8rem; }
.content-block { max-width: 46rem; }
.section-head p { margin-top: 0.85rem; color: #3a372f; font-size: 1.05rem; }
.section-ink .section-head p { color: rgba(244, 240, 232, 0.78); }
.service-card-placeholder { display: flex; align-items: center; justify-content: center; color: var(--flare); }
.service-icon-lg { font-size: 2.4rem; }
.floating-call svg, .floating-wa svg { width: 24px; height: 24px; }
.logo span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  color: var(--white);
}
.prose table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: 0.95rem; }
.prose th, .prose td { border: 1px solid var(--ink); padding: 0.65rem 0.8rem; text-align: left; }
.prose th { background: var(--ink); color: var(--white); font-family: var(--font-display); }
.prose strong { font-weight: 700; }
.cta-band .btn, .cta-band .btn-primary { flex-shrink: 0; }
.news-card time { color: var(--mute); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.rev-arrow:focus-visible, .rev-bullet:focus-visible { outline-offset: 2px; }
.header-cta:hover { background: var(--flare-hot); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    border-top: 1px solid var(--line);
    padding: 0.6rem 1.25rem 1.2rem;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav a { padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
  .card-grid, .gallery-grid, .detail-layout, .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .region-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip > *:nth-child(2) { border-right: 0; }
}

@media (max-width: 768px) {
  .section, .section-alt, .section-ink { padding: 3.1rem 0; }
  .rev-hero { min-height: 560px; height: calc(100svh - var(--chrome-h)); }
  .rev-layer-title { font-size: 2.15rem; letter-spacing: -0.03em; max-width: none; }
  .rev-layer-sub { font-size: 0.95rem; }
  .rev-index { display: none; }
  .rev-arrow { width: 42px; height: 42px; top: auto; bottom: 1.8rem; transform: none; }
  .rev-arrow-left, .rev-arrow-prev { left: auto; right: 4.1rem; }
  .rev-arrow-right, .rev-arrow-next { right: 0.75rem; }
  .card-grid, .gallery-grid, .detail-layout, .contact-grid, .footer-grid, .region-grid, .form-row, .stat-strip {
    grid-template-columns: 1fr;
  }
  .stat-strip > * { border-right: 0; border-bottom: 1px solid var(--line); }
  .top-bar-inner { justify-content: center; }
  .top-bar-wa { display: none; }
}

.text-center { text-align: center; }
.text-muted { color: var(--mute); }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.phone-big {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--flare);
  letter-spacing: -0.03em;
}
.featured-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flare);
  margin-bottom: 0.4rem;
}
.detail-hero-img { margin: 0 0 1.5rem; }
.detail-hero-img img { width: 100%; height: auto; border: 1px solid var(--ink); }
.article-meta { color: var(--mute); margin-top: 0.75rem; }
.article-lead { font-size: 1.15rem; font-weight: 500; }
.article-cta { margin-top: 2rem; padding: 1.4rem; background: var(--ink); color: var(--white); }
.article-cta h2 { color: var(--white); }
.error-page { padding: 5rem 0; }
.error-code {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--flare);
  line-height: 1;
}
.hero-actions, .cta-split-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.justify-center { justify-content: center; }
.form-intro { color: var(--mute); margin-bottom: 1.2rem; }
.captcha-group, .captcha-row .captcha-group { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.captcha-img { width: 160px; height: 56px; border: 1px solid var(--ink); }
.sidebar-cta h2 { color: var(--white); margin-bottom: 0.5rem; }
.news-grid { margin-top: 0.5rem; }
.region-search-wrap { margin-bottom: 2rem; }
.region-partner-link { margin-bottom: 1rem; color: var(--mute); }
.service-gallery { margin-top: 2rem; }
.lightbox {
  position: fixed; inset: 0; z-index: 400; display: none;
  background: rgba(10, 10, 10, 0.92); align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox-content img { max-height: 86vh; max-width: 90vw; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: var(--ink); color: var(--white);
  border: 1px solid var(--line); width: 48px; height: 48px; font-size: 1.5rem;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; }
.lightbox-next { right: 1rem; top: 50%; }
body.lightbox-open { overflow: hidden; }
.page-hero p { color: rgba(244, 240, 232, 0.78); max-width: 40rem; margin-top: 0.75rem; }
.section-ink .region-chip { background: var(--ink-2); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
