:root {
  --bg: #f5f7f4;
  --paper: #ffffff;
  --ink: #172026;
  --soft-ink: #5d6a70;
  --muted: #7b878c;
  --line: #e2e8e6;
  --gold: #d9a72b;
  --gold-soft: #fff5d8;
  --green: #15965a;
  --green-soft: #e7f7ee;
  --blue: #244659;
  --shadow: 0 18px 50px rgba(30, 46, 54, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.75;
}

body.en {
  font-family: Arial, Helvetica, sans-serif;
}

body::selection {
  background: var(--gold);
  color: #111820;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.header-actions,
.hero-actions,
.contact-actions,
.floating-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--gold);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
}

.main-nav {
  gap: clamp(12px, 2vw, 28px);
  color: var(--soft-ink);
  font-size: 0.94rem;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-actions {
  gap: 10px;
}

.lang-toggle,
.mini-call,
.btn,
.floating-actions a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.lang-toggle {
  width: 44px;
  height: 40px;
  background: var(--paper);
  color: var(--ink);
}

.mini-call {
  padding: 8px 12px;
  background: var(--gold-soft);
  color: #6c4b00;
}

.lang-toggle:hover,
.mini-call:hover,
.btn:hover,
.floating-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(30, 46, 54, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(34px, 6vw, 76px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7f4 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: none;
}

.hero-media {
  position: relative;
  order: 2;
}

[dir="ltr"] .hero-media {
  order: 2;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 20px -14px -14px 20px;
  border-radius: 18px;
  background: var(--gold-soft);
  z-index: 0;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid var(--paper);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-copy {
  order: 1;
  max-width: 660px;
  padding: 0;
}

[dir="ltr"] .hero-copy {
  grid-column: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: #8d6507;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.15rem, 5vw, 4.6rem);
  line-height: 1.1;
}

h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.2;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.12rem;
}

.hero-text,
.split-copy p,
.contact-section p {
  max-width: 660px;
  color: var(--soft-ink);
  font-size: 1.02rem;
}

.hero-actions,
.contact-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
}

.btn-primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.btn-whatsapp {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 28px;
}

.hero-stats span {
  min-height: 92px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(30, 46, 54, 0.06);
}

.hero-stats b,
.hero-stats small {
  display: block;
}

.hero-stats b {
  color: var(--green);
  font-size: 1.28rem;
}

.hero-stats small {
  color: var(--muted);
}

.section,
.search-band,
.split-section,
.faq-section,
.contact-section {
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.search-band,
.campaign-section {
  display: none !important;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 228px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(30, 46, 54, 0.07);
}

.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  background: var(--gold-soft);
  color: #8d6507;
  border-radius: var(--radius);
  font-weight: 900;
}

.service-card p,
.process p,
.faq-grid p,
.site-footer {
  color: var(--soft-ink);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding: 12px 14px;
  background: var(--green-soft);
  border: 1px solid #cdebd9;
  border-radius: var(--radius);
  color: #22583d;
}

.process-section {
  background: #eef3f1;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process div {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(30, 46, 54, 0.08);
}

.faq-section {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.faq-section .section-kicker {
  color: #8d6507;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

details {
  padding: 18px;
  background: #fbfcfb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.82fr);
  gap: 24px;
  align-items: center;
  background: var(--blue);
  color: white;
}

.contact-section h2,
.contact-section .section-kicker {
  color: white;
}

.contact-section p {
  color: #d9e4e8;
}

.contact-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.phone-link {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px) 96px;
  background: #111820;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
}

.floating-actions {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 40;
  gap: 8px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.floating-actions a {
  min-width: 112px;
  padding: 10px 14px;
  text-align: center;
}

.float-call {
  background: var(--ink);
  color: white;
}

.float-whatsapp {
  background: var(--green);
  color: white;
}

@media (max-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .process,
  .gallery,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 330px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand small,
  .mini-call {
    display: none;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero {
    padding-top: 22px;
  }

  .hero-stats,
  .service-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .floating-actions {
    width: calc(100% - 28px);
    justify-content: stretch;
  }

  .floating-actions a {
    flex: 1;
    min-width: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
