:root {
  color-scheme: light;
  --c-bg: #F8F3EE;
  --c-bg-soft: #FFFFFF;
  --c-surface: rgba(255,255,255,.82);
  --c-surface-strong: #FFFFFF;
  --c-text: #2B2B2B;
  --c-muted: #6D5C55;
  --c-line: rgba(90,64,54,.16);
  --c-brand: #5A4036;
  --c-accent: #C9A46A;
  --c-accent-2: #D8B7A3;
  --c-accent-3: #C88F86;
  --shadow: 0 24px 70px rgba(90,64,54,.14);
  --shadow-soft: 0 14px 40px rgba(90,64,54,.10);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;
  --header-height: 82px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --c-bg: #171312;
  --c-bg-soft: #211B19;
  --c-surface: rgba(33,27,25,.84);
  --c-surface-strong: #251E1B;
  --c-text: #F8F3EE;
  --c-muted: #D3C2B7;
  --c-line: rgba(248,243,238,.14);
  --c-brand: #F8F3EE;
  --c-accent: #D1B06C;
  --c-accent-2: #C88F86;
  --c-accent-3: #E6C8BB;
  --shadow: 0 24px 70px rgba(0,0,0,.34);
  --shadow-soft: 0 14px 40px rgba(0,0,0,.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--c-text);
  background:
    radial-gradient(circle at top left, rgba(216,183,163,.32), transparent 34rem),
    radial-gradient(circle at 90% 14%, rgba(201,164,106,.18), transparent 26rem),
    var(--c-bg);
  line-height: 1.62;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  z-index: 9999;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--c-brand);
  color: var(--c-bg-soft);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.demo-banner {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: .52rem 1rem;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #5A4036, #8A6A5A);
}

.site-header {
  position: sticky;
  top: 32px;
  z-index: 70;
  backdrop-filter: blur(22px);
  background: color-mix(in srgb, var(--c-bg-soft) 82%, transparent);
  border-bottom: 1px solid var(--c-line);
}
.header-inner {
  width: min(var(--container), calc(100% - 2rem));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.logo-wrap { display: flex; align-items: center; gap: .85rem; min-width: 210px; }
.logo-img { width: 220px; max-height: 86px; object-fit: contain; display: block; }
.logo-darkmode { display: none; }
[data-theme="dark"] .logo-lightmode { display: none; }
[data-theme="dark"] .logo-darkmode { display: block; }
.logo-text { display: none; font-family: Georgia, serif; font-size: 1.3rem; color: var(--c-brand); line-height: 1; }
.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: .92rem;
  color: var(--c-muted);
}
.nav a:hover { color: var(--c-brand); }
.header-actions { display: flex; align-items: center; gap: .7rem; }
.theme-toggle, .menu-toggle {
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  color: var(--c-brand);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  padding: .78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #5A4036, #C9A46A);
  box-shadow: 0 16px 36px rgba(90,64,54,.22);
}
.btn-secondary {
  border-color: var(--c-line);
  background: var(--c-surface);
  color: var(--c-brand);
}
.btn-link {
  padding: 0;
  min-height: auto;
  color: var(--c-brand);
  font-weight: 800;
  border-radius: 0;
}

.section {
  padding: 92px 0;
}
.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--c-accent);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  color: var(--c-brand);
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -.035em;
}
h1 {
  font-size: clamp(2.55rem, 6vw, 5.35rem);
  max-width: 790px;
}
h2 { font-size: clamp(2rem, 4.2vw, 3.35rem); }
h3 { font-size: 1.12rem; }
.lead {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--c-muted);
  max-width: 680px;
}
.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.2rem;
}
.section-head.center {
  text-align: center;
  justify-items: center;
}
.section-head.center .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.section-head.center .eyebrow::before { display: none; }

.hero {
  position: relative;
  padding: 86px 0 76px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 3rem;
  align-items: center;
}
.hero-copy { display: grid; gap: 1.35rem; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .8rem;
  margin-top: 1.2rem;
}
.meta-card {
  padding: .95rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: var(--c-surface);
  box-shadow: var(--shadow-soft);
}
.meta-card strong { display: block; color: var(--c-brand); font-size: 1rem; }
.meta-card span { color: var(--c-muted); font-size: .84rem; }
.hero-visual {
  position: relative;
}
.hero-image-wrap {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.4);
  aspect-ratio: 4 / 5;
  background: var(--c-bg-soft);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floating-note {
  position: absolute;
  left: -24px;
  bottom: 34px;
  width: min(280px, 68%);
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.floating-note b { display: block; color: var(--c-brand); margin-bottom: .2rem; }
.floating-note span { color: var(--c-muted); font-size: .9rem; }

.notice-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  background: color-mix(in srgb, var(--c-accent-2) 18%, var(--c-surface));
  color: var(--c-muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: 3rem;
  align-items: center;
}
.image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
}
.image-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.text-stack { display: grid; gap: 1rem; }
.check-list {
  display: grid;
  gap: .75rem;
  padding: 0;
  list-style: none;
  margin: 1rem 0 0;
}
.check-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  color: var(--c-muted);
}
.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--c-accent) 24%, transparent);
  color: var(--c-brand);
  font-weight: 900;
}

.prof-card {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  box-shadow: var(--shadow-soft);
}
.prof-card img {
  width: 135px;
  height: 135px;
  border-radius: 24px;
  object-fit: cover;
}
.prof-card p { margin: .3rem 0 0; color: var(--c-muted); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.service-card, .feature-card, .step-card, .contact-card, .legal-card {
  position: relative;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.service-card { display: grid; }
.service-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-card-content { padding: 1.2rem; display: grid; gap: .55rem; }
.service-card p, .feature-card p, .step-card p, .contact-card p { color: var(--c-muted); margin: 0; }
.badge {
  display: inline-flex;
  width: fit-content;
  padding: .28rem .62rem;
  border-radius: 999px;
  font-size: .72rem;
  color: var(--c-brand);
  background: color-mix(in srgb, var(--c-accent) 20%, transparent);
  font-weight: 800;
}
.feature-card, .step-card, .contact-card { padding: 1.2rem; }
.feature-card img, .step-card img {
  width: 44px;
  height: 44px;
  margin-bottom: .8rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.step-num {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: color-mix(in srgb, var(--c-accent) 58%, transparent);
  font-family: Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.soft-section {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--c-accent-2) 20%, transparent), transparent),
    color-mix(in srgb, var(--c-bg-soft) 72%, transparent);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  gap: 1rem;
}
.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.faq-list {
  max-width: 890px;
  margin: 0 auto;
  display: grid;
  gap: .8rem;
}
.faq-item {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: var(--c-surface);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--c-brand);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  font-weight: 800;
  text-align: left;
}
.faq-answer {
  display: none;
  padding: 0 1.1rem 1rem;
  color: var(--c-muted);
}
.faq-item.active .faq-answer { display: block; }
.faq-icon { transition: transform .2s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.contact-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 1rem;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: .85rem;
}
.contact-card a { font-weight: 800; color: var(--c-brand); }

.map-card {
  overflow: hidden;
  padding: 0;
}
.map-card h3 {
  padding: 1.1rem 1.1rem 0;
}
.map-frame {
  margin-top: .9rem;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 220px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: color-mix(in srgb, var(--c-accent-2) 18%, var(--c-bg-soft));
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(.88) contrast(.96);
}
.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .85rem 1rem;
  color: var(--c-brand);
  font-weight: 800;
  background: color-mix(in srgb, var(--c-accent) 16%, transparent);
  transition: color .2s ease, background .2s ease;
}
.map-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #5A4036, #C9A46A);
}

.form-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  background: var(--c-surface);
  padding: clamp(1rem, 3vw, 1.6rem);
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .9rem;
}
.field { display: grid; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; color: var(--c-brand); font-size: .9rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--c-line);
  background: color-mix(in srgb, var(--c-bg-soft) 76%, transparent);
  color: var(--c-text);
  border-radius: 14px;
  padding: .82rem .9rem;
}
.field textarea { min-height: 118px; resize: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea {
  border-color: #b75050;
  box-shadow: 0 0 0 3px rgba(183,80,80,.12);
}
.form-help {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--c-muted);
  font-size: .82rem;
}
.form-message {
  display: none;
  margin-top: 1rem;
  padding: .85rem;
  border-radius: 14px;
  font-weight: 700;
}
.form-message.show { display: block; }
.form-message.error { background: rgba(183,80,80,.12); color: #9b3737; }
.form-message.success { background: rgba(80,150,110,.14); color: #2d7650; }
.checkbox-field {
  grid-column: 1 / -1;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  color: var(--c-muted);
  font-size: .9rem;
}
.checkbox-field input { width: 18px; height: 18px; margin-top: .2rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

.site-footer {
  padding: 64px 0 28px;
  background: #171312;
  color: #F8F3EE;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .72fr .82fr .9fr .82fr;
  gap: 2rem;
}
.footer-logo {
  width: 220px;
  max-height: 86px;
  object-fit: contain;
}
.site-footer .logo-lightmode { display: none; }
.site-footer .logo-darkmode { display: block; }
.footer-brand p,
.footer-col p,
.footer-bottom {
  color: rgba(248,243,238,.72);
}
.footer-col h3 {
  color: #F8F3EE;
  margin-bottom: .8rem;
}
.footer-legal h3 {
  color: #C9A46A;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.footer-links {
  display: grid;
  gap: .45rem;
}
.legal-links {
  gap: .85rem;
}
.footer-links a,
.footer-links button {
  color: rgba(248,243,238,.78);
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
}
.footer-links a:hover,
.footer-links button:hover {
  color: #C9A46A;
}
.legal-links button {
  font-size: .98rem;
  transition: color .2s ease, transform .2s ease;
}
.legal-links button:hover {
  transform: translateX(3px);
}
.socials {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}
.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,164,106,.36);
  border-radius: 999px;
  color: #C9A46A;
  background: rgba(201,164,106,.06);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.socials a:hover {
  color: #171312;
  background: #C9A46A;
  border-color: #C9A46A;
  transform: translateY(-2px);
}
.socials a svg {
  width: 20px;
  height: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(248,243,238,.12);
  font-size: .88rem;
}
.footer-bottom a {
  color: #C9A46A;
  font-weight: 800;
}

.whatsapp-float, .back-top {
  position: fixed;
  z-index: 60;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 0;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.whatsapp-float {
  right: 20px;
  bottom: 86px;
  background: #25D366;
  color: #fff;
  animation: pulse 2s infinite;
}
.back-top {
  right: 20px;
  bottom: 22px;
  background: var(--c-surface-strong);
  color: var(--c-brand);
  border: 1px solid var(--c-line);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .2s ease;
}
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.38); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 90;
  transform: translate(-50%, 140%);
  width: min(980px, calc(100% - 1rem));
  transition: transform .25s ease;
}
.cookie-banner.show { transform: translate(-50%, 0); }
.cookie-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-radius: 28px;
  border: 1px solid rgba(201,164,106,.28);
  background: linear-gradient(180deg, rgba(37,30,27,.98), rgba(23,19,18,.96));
  color: #F8F3EE;
  box-shadow: 0 26px 80px rgba(0,0,0,.38);
}
.cookie-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #171312;
  background: linear-gradient(180deg, #D8B7A3, #C9A46A);
  box-shadow: 0 10px 26px rgba(201,164,106,.24);
}
.cookie-copy strong {
  display: block;
  font-size: 1.24rem;
  color: #FFFFFF;
  margin-bottom: .4rem;
}
.cookie-copy p {
  margin: 0;
  color: rgba(248,243,238,.76);
  font-size: .98rem;
  max-width: 570px;
}
.cookie-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .9rem;
}
.cookie-links button {
  border: 0;
  background: transparent;
  padding: 0;
  color: #C9A46A;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions { display: flex; gap: .7rem; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.btn-cookie-secondary {
  min-height: 44px;
  padding: .75rem 1.1rem;
  color: rgba(248,243,238,.82);
  border: 1px solid rgba(248,243,238,.16);
  background: rgba(255,255,255,.035);
}
.btn-cookie-secondary:hover { background: rgba(255,255,255,.08); }
.btn-cookie-primary {
  min-height: 44px;
  padding: .75rem 1.15rem;
  color: #171312;
  border: 1px solid rgba(201,164,106,.9);
  background: linear-gradient(135deg, #D8B7A3, #C9A46A);
  box-shadow: 0 12px 28px rgba(201,164,106,.22);
}

.modal-backdrop,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(23,19,18,.66);
}
.modal-backdrop.show,
.lightbox.show {
  display: flex;
}
.legal-modal {
  width: min(820px, 100%);
  max-height: 86vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(201,164,106,.28);
  background: linear-gradient(180deg, rgba(37,30,27,.98), rgba(23,19,18,.97));
  color: #F8F3EE;
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}
.legal-modal-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(248,243,238,.12);
}
.legal-modal-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #171312;
  background: linear-gradient(180deg, #D8B7A3, #C9A46A);
  box-shadow: 0 10px 26px rgba(201,164,106,.22);
}
.legal-modal-head h2 {
  color: #FFFFFF;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.02em;
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.legal-modal-body {
  overflow: auto;
  padding: 1.2rem 1.35rem;
  color: rgba(248,243,238,.78);
}
.legal-modal-body p {
  margin: 0 0 1rem;
}
.legal-topic,
.cookie-preference-card {
  padding: 1rem;
  margin: 1rem 0;
  border: 1px solid rgba(201,164,106,.18);
  border-radius: 18px;
  background: rgba(248,243,238,.045);
}
.legal-topic h3,
.cookie-preference-card strong {
  display: block;
  margin: 0 0 .45rem;
  color: #C9A46A;
  font-size: 1rem;
}
.legal-topic ul {
  margin: .5rem 0 0;
  padding-left: 1.2rem;
}
.cookie-preference-card p {
  margin: 0;
}
.legal-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: .7rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(248,243,238,.12);
}
.close-modal {
  border: 1px solid rgba(248,243,238,.16);
  background: rgba(255,255,255,.06);
  color: #F8F3EE;
  border-radius: 99px;
  width: 40px;
  height: 40px;
}
.close-modal:hover {
  background: rgba(201,164,106,.16);
  color: #C9A46A;
}
.lightbox-shell {
  position: relative;
  width: min(1180px, 94vw);
  max-height: 90vh;
  display: grid;
  place-items: center;
}
.lightbox-figure {
  margin: 0;
  display: grid;
  gap: .85rem;
  justify-items: center;
}
.lightbox img {
  max-width: min(1080px, 86vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.04);
}
.lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  min-height: 38px;
  padding: .55rem .9rem;
  border: 1px solid rgba(248,243,238,.12);
  border-radius: 999px;
  background: rgba(23,19,18,.78);
  color: #F8F3EE;
  backdrop-filter: blur(14px);
  text-align: center;
}
.lightbox-caption span {
  font-weight: 800;
}
.lightbox-caption small {
  color: rgba(248,243,238,.68);
  font-weight: 700;
}
.close-lightbox {
  position: fixed;
  top: 18px;
  right: 18px;
  border: 1px solid var(--c-line);
  background: #fff;
  color: #171312;
  border-radius: 99px;
  width: 40px;
  height: 40px;
  z-index: 2;
}
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(248,243,238,.18);
  background: rgba(23,19,18,.72);
  color: #F8F3EE;
  font-size: 2.2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.06);
  background: linear-gradient(135deg, #5A4036, #C9A46A);
  color: #fff;
}
.lightbox-prev {
  left: max(18px, calc((100vw - 1180px) / 2 - 76px));
}
.lightbox-next {
  right: max(18px, calc((100vw - 1180px) / 2 - 76px));
}

.page-simple {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.page-card {
  width: min(760px, 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  background: var(--c-surface);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 5vw, 3rem);
  text-align: center;
}
.page-card h1 { margin-inline: auto; font-size: clamp(2.2rem, 6vw, 4rem); }
.page-card p { color: var(--c-muted); }

@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-toggle { display: grid; }
  .site-header.menu-open .nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .8rem);
    display: grid;
    gap: 0;
    padding: .8rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-line);
    background: var(--c-surface-strong);
    box-shadow: var(--shadow);
  }
  .site-header.menu-open .nav a {
    padding: .8rem;
    border-radius: 12px;
  }
  .site-header.menu-open .nav a:hover {
    background: color-mix(in srgb, var(--c-accent) 12%, transparent);
  }
  .hero-grid, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-image-wrap { aspect-ratio: 16 / 11; }
  .floating-note { left: 20px; bottom: 20px; }
  .cards-grid, .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-row: auto; grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .demo-banner { font-size: .68rem; padding: .42rem .6rem; }
  .site-header { top: 27px; }
  .header-inner { width: min(100% - 1rem, var(--container)); min-height: 68px; }
  .logo-img { width: 168px; max-height: 64px; }
  .header-cta { display: none; }
  .section { padding: 64px 0; }
  .hero-meta { grid-template-columns: 1fr; }
  .cards-grid, .steps-grid, .gallery-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: auto; }
  .prof-card { grid-template-columns: 1fr; }
  .prof-card img { width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .hero-image-wrap { aspect-ratio: 3 / 4; }
  .floating-note { position: static; width: 100%; margin-top: .8rem; }
  .cookie-panel { grid-template-columns: 1fr; align-items: start; }
  .cookie-icon { width: 52px; height: 52px; }
  .cookie-links { gap: .75rem; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-actions .btn { width: 100%; }
  


.footer-legal h3 {
  color: #C9A46A;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.legal-links {
  gap: .85rem;
}
.legal-links button {
  color: rgba(248,243,238,.78);
  font-size: .98rem;
  transition: color .2s ease, transform .2s ease;
}
.legal-links button:hover {
  color: #C9A46A;
  transform: translateX(3px);
}

.footer-bottom { flex-direction: column; }
  .legal-modal {
    max-height: 92vh;
    border-radius: 24px;
  }
  .legal-modal-head {
    padding: 1rem;
  }
  .legal-modal-icon {
    width: 48px;
    height: 48px;
  }
  .legal-modal-footer {
    flex-direction: column;
  }
  .legal-modal-footer .btn {
    width: 100%;
  }
  .lightbox img {
    max-width: 92vw;
    max-height: 70vh;
  }
  .lightbox-nav {
    top: auto;
    bottom: 72px;
    transform: none;
    width: 46px;
    height: 46px;
    font-size: 1.8rem;
  }
  .lightbox-nav:hover {
    transform: none;
  }
  .lightbox-prev {
    left: 18px;
  }
  .lightbox-next {
    right: 18px;
  }
  .lightbox-caption {
    max-width: 92vw;
    border-radius: 18px;
  }

  .whatsapp-float, .back-top { right: 14px; }
  .whatsapp-float { bottom: 82px; }
  .back-top { bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}