:root {
  --brand: #d8c5a5;
  --brand-strong: #ac8d60;
  --ink: #0b0a08;
  --ink-soft: #24211d;
  --paper: #f7f4ef;
  --card: #fffaf1;
  --muted: #776d62;
  --line: rgba(20, 17, 13, .13);
  --white: #ffffff;
  --shadow: 0 24px 64px rgba(11, 10, 8, .11);
  --radius: 14px;
  --radius-small: 8px;
  --section-y: 92px;
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Regista Grande", "Bodoni Moda", Didot, Georgia, serif;
  --font-button: Inter, system-ui, sans-serif;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--brand-strong); outline-offset: 4px; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { position: relative; padding: var(--section-y) 0; }
.section-tight { padding: 70px 0; }
.section-dark { color: var(--paper); background: var(--ink); }
.section-dark .muted,
.section-dark .lead { color: rgba(247, 244, 239, .72); }
.section-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 62px); }
.section-head.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-head h2 + .lead,
.page-hero h1 + .lead,
.home-why-section h2 + .lead,
.home-reviews-section h2 + .lead { margin-top: clamp(22px, 2.8vw, 34px); }
.section-number {
  display: block;
  margin-bottom: 20px;
  color: var(--brand-strong);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.04;
  text-wrap: balance;
}
h1 { font-size: clamp(3.75rem, 7vw, 7rem); }
h2 { font-size: clamp(2.65rem, 5.4vw, 5.2rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 2.25rem); }
h4 { font-size: clamp(1.2rem, 1.8vw, 1.65rem); }
p { margin: 0; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.72; }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  color: var(--paper);
  background: #0b0a08;
  border-bottom: 1px solid rgba(247, 244, 239, .12);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(5, 5, 4, .12);
}
.site-header::before,
.site-header::after {
  position: absolute;
  bottom: -14px;
  width: 14px;
  height: 14px;
  background: #0b0a08;
  content: "";
  pointer-events: none;
}
.site-header::before { left: 0; border-bottom-right-radius: 14px; }
.site-header::after { right: 0; border-bottom-left-radius: 14px; }
.header-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(1320px, calc(100% - 32px));
  min-height: var(--header-h);
  margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; min-width: 170px; }
.brand img { width: clamp(136px, 13vw, 174px); height: auto; }
.desktop-nav { margin-left: auto; }
.desktop-nav ul,
.mobile-panel ul {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.desktop-nav a {
  color: rgba(247, 244, 239, .76);
  font-size: .82rem;
  letter-spacing: .025em;
  transition: color .22s ease;
}
.desktop-nav a:hover { color: var(--paper); }
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius-small);
  font-family: var(--font-button);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .075em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.header-cta:hover,
.btn:hover { transform: translateY(-2px); color: var(--ink); background: var(--paper); border-color: var(--paper); }
.btn-dark { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.btn-dark:hover { color: var(--ink); background: var(--brand); border-color: var(--brand); }
.btn-light { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.btn-light:hover { color: var(--ink); background: var(--brand); border-color: var(--brand); }
.btn-ghost { color: var(--ink); border-color: rgba(11, 10, 8, .28); }
.btn-ghost:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.language-switcher { display: flex; align-items: center; gap: 8px; }
.language-switcher a {
  padding: 4px 0;
  color: rgba(247, 244, 239, .62);
  border-bottom: 1px solid transparent;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.language-switcher a.is-active { color: var(--paper); border-color: var(--brand); }
.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  margin-left: auto;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(247, 244, 239, .28);
  border-radius: var(--radius-small);
}
.menu-toggle span { display: block; width: 23px; height: 1px; background: currentColor; transition: transform .22s ease, opacity .22s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-panel {
  position: fixed;
  top: var(--header-h);
  right: 0;
  left: 0;
  display: none;
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  padding: 28px 24px 44px;
  overflow-y: auto;
  color: var(--paper);
  background: #0b0a08;
  border-top: 1px solid rgba(247, 244, 239, .12);
}
.mobile-panel.is-open { display: block; }
.mobile-panel ul { flex-direction: column; align-items: stretch; gap: 0; }
.mobile-panel li { border-bottom: 1px solid rgba(247, 244, 239, .12); }
.mobile-panel a { display: block; width: 100%; padding: 16px 4px; color: var(--paper); font-size: 1.08rem; }
.mobile-actions { display: grid; gap: 12px; margin-top: 26px; }

.hero-home {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink) var(--hero-image) center / cover no-repeat;
  text-align: center;
}
.hero-home::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 8, 7, .44), rgba(8, 8, 7, .64));
}
.hero-bg {
  position: absolute;
  z-index: -2;
  inset: -1px;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 1.15s ease;
  will-change: opacity;
}
.hero-bg.is-active { opacity: 1; }
.hero-home .wrap { display: grid; justify-items: center; gap: 28px; position: relative; z-index: 1; }
.hero-home h1 { max-width: 1160px; font-size: clamp(3.65rem, 6.8vw, 6.4rem); line-height: 1; text-shadow: 0 18px 65px rgba(0, 0, 0, .36); }
.hero-home .lead { max-width: 700px; color: rgba(247, 244, 239, .84); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(910px, 100%);
  margin-top: 18px;
  overflow: hidden;
  background: rgba(247, 244, 239, .2);
  border: 1px solid rgba(247, 244, 239, .2);
  border-radius: 12px;
}
.stat-card { padding: 22px 24px; background: rgba(11, 10, 8, .66); text-align: left; }
.stat-card strong { display: block; font-family: var(--font-heading); font-size: clamp(1.75rem, 3vw, 2.8rem); font-weight: 500; line-height: 1; }
.stat-card span { display: block; margin-top: 9px; color: rgba(247, 244, 239, .72); font-size: .84rem; }

.page-hero {
  padding: clamp(72px, 8vw, 112px) 0 clamp(60px, 7vw, 92px);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.page-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1160px) / 2));
}
.page-hero h1 { max-width: 760px; font-size: clamp(3.15rem, 5.7vw, 5.65rem); line-height: 1.08; }
.page-hero .lead { margin-top: clamp(26px, 3vw, 38px); color: rgba(247, 244, 239, .76); }
.page-hero-visual {
  min-height: 500px;
  align-self: stretch;
  overflow: hidden;
  background: transparent;
  border: 0;
  padding: 0;
  transform: none;
}
.page-hero-visual img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; object-position: center; }
.page-hero.no-image { padding: clamp(72px, 8vw, 108px) 0; }
.page-hero.no-image .wrap { display: block; width: min(960px, calc(100% - 40px)); padding-left: 0; }
.page-hero.no-image h1 { max-width: 880px; }

.broken-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(32px, 6vw, 82px); }
.broken-grid .image-stack { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 16px; }
.image-stack img { width: 100%; height: 410px; object-fit: cover; box-shadow: var(--shadow); }
.image-stack img:nth-child(2) { height: 315px; transform: translateY(42px); }
.home-why-section { padding: 0; overflow: hidden; }
.home-why-section .wrap {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1160px) / 2));
}
.home-why-section .broken-grid { grid-template-columns: minmax(520px, 1.1fr) minmax(460px, .9fr); align-items: stretch; }
.home-why-section .broken-grid > div:last-child { align-self: center; padding: var(--section-y) 0; }
.why-gallery {
  --why-gallery-gap: 16px;
  --why-gallery-travel: 520px;
  position: relative;
  min-width: 0;
  min-height: 760px;
  overflow: hidden;
}
.why-gallery-column {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-rows: 1.32fr .82fr 1.08fr .72fr;
  gap: var(--why-gallery-gap);
  width: calc(50% - (var(--why-gallery-gap) / 2));
  height: calc(100% + var(--why-gallery-travel));
  min-width: 0;
  will-change: transform;
}
.why-gallery-column:nth-child(2) { right: 0; left: auto; grid-template-rows: .82fr 1.32fr .72fr 1.08fr; padding-top: 72px; }
.why-gallery img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.home-why-section h2 { max-width: 640px; }
.benefit-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 34px; }
.benefit-card,
.package-card,
.pricing-card,
.contact-card,
.info-card,
.faq-card {
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  box-shadow: 0 14px 42px rgba(11, 10, 8, .055);
}
.benefit-card { transition: transform .16s linear, box-shadow .25s ease; }
.benefit-card:hover { box-shadow: 0 20px 55px rgba(11, 10, 8, .09); }
.benefit-card h3 { margin-bottom: 11px; color: var(--ink); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.1; }
.benefit-card p { color: var(--muted); font-size: .94rem; }

.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; background: rgba(247, 244, 239, .18); border: 1px solid rgba(247, 244, 239, .18); border-radius: var(--radius-small); }
.timeline-card { display: flex; flex-direction: column; gap: 15px; min-height: 244px; padding: clamp(22px, 3vw, 34px); color: var(--ink); background: var(--paper); }
.timeline-card .number { color: var(--brand-strong); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; }
.timeline-card h3 { font-size: clamp(1.35rem, 2vw, 1.82rem); line-height: 1.12; }
.timeline-card p { color: var(--muted); font-size: .92rem; }

.package-grid,
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.package-card { display: flex; flex-direction: column; gap: 17px; min-height: 100%; padding: clamp(24px, 3vw, 34px); }
.package-card h3 { min-height: auto; font-size: clamp(1.65rem, 2.4vw, 2.2rem); }
.package-card .price,
.pricing-card .price { color: var(--ink); font-family: var(--font-heading); font-size: clamp(1.75rem, 2.6vw, 2.5rem); line-height: 1.08; }
.package-card p,
.package-card li,
.pricing-card p { color: var(--muted); }
.package-card p { font-size: .94rem; }
.package-card ul { display: grid; gap: 8px; padding-left: 18px; margin: 0; font-size: .91rem; }
.package-card .btn { width: 100%; margin-top: auto; }
.offer-quote-note .broken-grid { align-items: stretch; }
.offer-quote-note img { width: 100%; min-height: 500px; object-fit: cover; }
.quote-note-action { margin-top: 26px; }
.offer-supervision { overflow: hidden; }
.offer-supervision .wrap {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1160px) / 2));
}
.supervision { display: grid; grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr); align-items: stretch; gap: clamp(38px, 6vw, 82px); }
.supervision > div { align-self: center; padding: 62px 0; }
.supervision img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 28px 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: rgba(247, 244, 239, .7); }
.check-list li::before { position: absolute; top: 0; left: 0; color: var(--brand); content: "*"; font-size: 1.3rem; line-height: 1; }

.projects-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; gap: 24px; }
.project-card,
.gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: start;
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
}
.project-card figure,
.gallery-card figure { position: relative; display: block; width: 100%; margin: 0; overflow: hidden; background: transparent; }
.project-card figure { aspect-ratio: 4 / 5; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, opacity .6s ease; }
.project-card:hover img,
.gallery-card:hover img { transform: scale(1.035); opacity: .9; }
.project-card .project-copy { display: grid; gap: 7px; padding: 20px 0 0; }
.project-card .category { color: var(--brand-strong); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; }
.project-card h3 { font-size: clamp(1.45rem, 2vw, 1.9rem); line-height: 1.12; }
.project-card p { color: var(--muted); font-size: .92rem; }
.project-card .open-note { margin-top: 6px; color: var(--ink); font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.gallery-grid { columns: 3 280px; column-gap: 18px; }
.gallery-card { break-inside: avoid; margin-bottom: 18px; }
.gallery-card figure { background: transparent; }
.gallery-card img { width: 100%; height: auto; object-fit: cover; transition: transform .6s ease, opacity .6s ease; }
.gallery-card figcaption { display: none; }

.about-grid { display: grid; grid-template-columns: minmax(390px, 1.05fr) minmax(0, .95fr); align-items: start; gap: clamp(42px, 7vw, 94px); }
.about-photo { position: sticky; top: calc(var(--header-h) + 26px); }
.about-photo img { width: 100%; min-height: 720px; object-fit: cover; box-shadow: var(--shadow); }
.about-copy { display: grid; gap: 38px; }
.about-copy article { padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.about-copy h2 { margin-bottom: 20px; font-size: clamp(2.25rem, 4vw, 3.9rem); line-height: 1.08; }

.faq-list { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
details.faq-card { padding: 0; overflow: hidden; }
details.faq-card summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 30px; font-family: var(--font-heading); font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.15; list-style: none; cursor: pointer; }
details.faq-card summary::-webkit-details-marker { display: none; }
details.faq-card summary::after { color: var(--brand-strong); content: "+"; font-family: var(--font-body); font-size: 1.35rem; }
details.faq-card[open] summary::after { content: "-"; }
details.faq-card p { padding: 0 30px 26px; color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(34px, 6vw, 76px); }
.contact-cards { display: grid; gap: 14px; }
.contact-card h3 { margin-bottom: 10px; font-size: 1.55rem; }
.contact-card a { color: var(--ink); border-bottom: 1px solid var(--brand); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-card { padding: clamp(24px, 3vw, 36px); background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-small); box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: 11px; }
.contact-form { display: grid; gap: 17px; margin-top: 24px; }
.field { display: grid; gap: 7px; }
.field label,
.field .label { color: var(--muted); font-size: .76rem; font-weight: 600; letter-spacing: .075em; text-transform: uppercase; }
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(11, 10, 8, .18);
  border-radius: 7px;
}
.field textarea { min-height: 132px; resize: vertical; }
.field-full { grid-column: 1 / -1; }
.checkbox { display: flex; align-items: flex-start; gap: 11px; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.checkbox input { flex: 0 0 auto; margin-top: 4px; }
.checkbox a { color: var(--ink); border-bottom: 1px solid var(--brand-strong); }
.hp { position: absolute; top: auto; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 22px; color: var(--muted); }

.home-reviews-section .broken-grid { align-items: stretch; }
.home-reviews-section .broken-grid > div { align-self: center; }
.home-reviews-section img { width: 100%; height: 520px; object-fit: cover; }
.home-reviews-section .btn { border-radius: var(--radius-small); }
.cta-band { padding: clamp(58px, 7vw, 88px) 0; color: var(--paper); background: var(--ink); text-align: center; }
.cta-band .wrap { display: grid; justify-items: center; gap: 22px; }
.cta-band .lead { color: rgba(247, 244, 239, .76); }

.site-footer { padding: 62px 0 28px; color: var(--paper); background: #050504; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 38px; padding-bottom: 40px; border-bottom: 1px solid rgba(247, 244, 239, .12); }
.footer-logo { width: 210px; margin-bottom: 20px; }
.footer-grid h3 { margin-bottom: 16px; font-size: 1.35rem; }
.footer-grid p,
.footer-grid a { color: rgba(247, 244, 239, .7); }
.footer-links { display: grid; gap: 9px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding-top: 24px; color: rgba(247, 244, 239, .58); font-size: .84rem; }
.footer-bottom a { color: var(--paper); border-bottom: 1px solid rgba(247, 244, 239, .34); }

.modal { position: fixed; z-index: 2000; inset: 0; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5, 5, 4, .78); }
.modal-panel { position: relative; width: min(760px, 100%); max-height: min(90vh, 920px); padding: clamp(24px, 4vw, 48px); overflow: auto; color: var(--ink); background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 50%; font-size: 1.35rem; }
.modal-panel .lead { margin-top: 14px; }

.lightbox { position: fixed; z-index: 2100; inset: 0; display: grid; grid-template-rows: auto 1fr auto; padding: 18px; color: var(--paper); background: rgba(5, 5, 4, .96); }
.lightbox[hidden] { display: none; }
.lightbox-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 12px; }
.lightbox-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.8rem); }
.lightbox-close,
.lightbox-prev,
.lightbox-next { width: 46px; height: 46px; color: var(--paper); background: transparent; border: 1px solid rgba(247, 244, 239, .3); border-radius: 50%; }
.lightbox-stage { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 16px; min-height: 0; }
.lightbox-image { width: 100%; max-height: calc(100vh - 160px); margin: 0 auto; object-fit: contain; }
.lightbox-counter { padding-top: 10px; color: rgba(247, 244, 239, .68); text-align: center; }

.sos-reviews-widget { padding: clamp(24px, 3vw, 38px); background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-small); }
.sos-reviews-widget h2 { margin-bottom: 28px; font-size: clamp(2.25rem, 4vw, 3.9rem); }
.sos-review,
.sos-review-form { border-color: var(--line) !important; border-radius: var(--radius-small) !important; box-shadow: none !important; }
.sos-review-form { margin-top: 24px !important; padding: 20px !important; }
.sos-review-form input,
.sos-review-form textarea,
.sos-review-form select { border-radius: 7px !important; }
.sos-review-form button { color: var(--paper) !important; background: var(--ink) !important; border-radius: var(--radius-small) !important; }
.sos-review-stars { color: var(--brand-strong) !important; }

.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.is-visible { opacity: 1; transform: none; }

.privacy-document { display: flex; justify-content: center; min-height: 100vh; padding: 70px 20px; color: #111; background: #fff; }
.privacy-document article { width: min(760px, 100%); font-family: Georgia, "Times New Roman", serif; font-size: 12pt; line-height: 1.65; }
.privacy-document h1 { margin-bottom: 28px; font-family: Georgia, "Times New Roman", serif; font-size: 22pt; letter-spacing: 0; line-height: 1.2; text-align: center; }
.privacy-document h2 { margin: 28px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 15pt; letter-spacing: 0; line-height: 1.25; }
.privacy-document p,
.privacy-document li { margin: 0 0 10px; }

@media (min-width: 901px) {
  .hero-home h1 { white-space: nowrap; }
  html[lang="en"] .hero-home h1 { font-size: clamp(3.4rem, 6.4vw, 5.9rem); }
}

@media (max-width: 1180px) {
  .desktop-nav,
  .header-cta { display: none; }
  .menu-toggle { display: flex; margin-left: 0; }
  .language-switcher { margin-left: auto; }
  .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-why-section .broken-grid { grid-template-columns: minmax(420px, 1fr) minmax(430px, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 70px; --section-y: 76px; }
  body { font-size: 15.5px; }
  .wrap { width: min(100% - 28px, 1160px); }
  .header-wrap { width: min(100% - 24px, 1320px); }
  .brand img { width: 146px; }
  .language-switcher { display: none; }
  .menu-toggle { margin-left: auto; }
  .hero-home { min-height: auto; padding: 82px 0 70px; }
  .hero-home h1 { font-size: clamp(3.2rem, 11vw, 5.4rem); }
  .hero-stats,
  .timeline,
  .benefit-list,
  .package-grid,
  .pricing-grid,
  .footer-grid,
  .contact-layout,
  .form-grid,
  .about-grid,
  .supervision,
  .page-hero .wrap,
  .broken-grid,
  .home-why-section .broken-grid { grid-template-columns: 1fr; }
  .stat-card { text-align: center; }
  .page-hero { padding: 70px 0 0; }
  .page-hero .wrap { width: 100%; padding-left: 0; gap: 48px; }
  .page-hero .wrap > div:first-child { width: min(100% - 28px, 1160px); margin: 0 auto; }
  .page-hero h1 { font-size: clamp(2.85rem, 9vw, 4.7rem); line-height: 1.1; }
  .page-hero-visual,
  .page-hero-visual img { min-height: 400px; }
  .page-hero.no-image { padding: 70px 0; }
  .page-hero.no-image .wrap { width: min(100% - 28px, 960px); }
  .home-why-section .wrap,
  .offer-supervision .wrap { width: 100%; padding-right: 0; padding-left: 0; }
  .home-why-section .broken-grid { gap: 0; }
  .home-why-section .broken-grid > div:last-child { width: min(100% - 28px, 1160px); margin: 0 auto; }
  .why-gallery { --why-gallery-travel: 420px; min-height: 660px; }
  .why-gallery-column:nth-child(2) { padding-top: 52px; }
  .image-stack { grid-template-columns: 1fr 1fr !important; }
  .home-why-section .image-stack img:first-child { height: 430px; }
  .home-why-section .image-stack img:nth-child(2) { height: 330px; }
  .about-photo { position: static; }
  .about-photo img { min-height: 0; aspect-ratio: 4 / 5; }
  .supervision { gap: 0; }
  .supervision > div { width: min(100% - 28px, 1160px); margin: 0 auto; padding: 70px 0; }
  .supervision img { min-height: 460px; }
  .offer-quote-note .broken-grid { gap: 44px; }
  .offer-quote-note img { min-height: 390px; }
  .field-full { grid-column: auto; }
  .footer-bottom { display: grid; }
  .modal { padding: 10px; }
  .modal-panel { max-height: 94vh; }
  .lightbox-stage { grid-template-columns: 1fr; }
  .lightbox-prev,
  .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(2.9rem, 14vw, 4.6rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.7rem); }
  .hero-home h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .hero-actions,
  .mobile-actions { align-items: stretch; }
  .hero-actions .btn,
  .mobile-actions .btn { width: 100%; }
  .projects-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .why-gallery { --why-gallery-gap: 10px; --why-gallery-travel: 340px; min-height: 560px; }
  .why-gallery-column:nth-child(2) { padding-top: 36px; }
  .image-stack { grid-template-columns: 1fr !important; }
  .image-stack img,
  .image-stack img:nth-child(2),
  .home-why-section .image-stack img:first-child,
  .home-why-section .image-stack img:nth-child(2) { height: auto; transform: none; }
  .page-hero-visual,
  .page-hero-visual img { min-height: 330px; }
  .benefit-card,
  .package-card,
  .pricing-card,
  .contact-card,
  .form-card,
  .info-card { padding: 22px; }
  details.faq-card summary { padding: 22px; }
  details.faq-card p { padding: 0 22px 22px; }
  .home-reviews-section img { height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .benefit-card { transform: none !important; }
}
