/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #EDEAE6;
  --ink: #0E0E0E;
  --orange: #FE8E2E;
  --orange-hover: #f0801c;
  --muted-on-light: rgba(14, 14, 14, 0.65);
  --muted-on-dark: rgba(237, 234, 230, 0.7);
  --line-on-dark: rgba(237, 234, 230, 0.18);
  --line-on-light: rgba(14, 14, 14, 0.12);
  --container: 1240px;
  --pad-inline: clamp(1.5rem, 4vw, 3rem);
  --font: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.section { padding-block: clamp(4rem, 9vw, 7.5rem); }

h1, h2, h3 { font-weight: 500; letter-spacing: -0.01em; line-height: 1.05; }

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: #fff; }

.btn-orange { background: var(--orange); color: var(--ink); }
.btn-orange:hover { background: var(--orange-hover); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  padding-block: 1.5rem;
}

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-weight: 600;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a { color: var(--cream); opacity: 0.9; }
.nav-links a:hover { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.lang-switch {
  display: flex;
  border: 1px solid var(--line-on-dark);
  border-radius: 999px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  opacity: 0.6;
}
.lang-btn.active { opacity: 1; background: var(--cream); color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 35%, rgba(0,0,0,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding-inline: var(--pad-inline);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 500;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--muted-on-dark);
  max-width: 640px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--muted-on-light);
  margin-bottom: 1rem;
  max-width: 44ch;
}

.about-image img {
  width: 100%;
  height: clamp(280px, 34vw, 440px);
  object-fit: cover;
  border-radius: 20px;
}

/* ---------- Offer ---------- */
.offer-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.offer-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.offer-desc { color: var(--muted-on-light); max-width: 46ch; }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.offer-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-on-light);
}

.offer-card-img { aspect-ratio: 16/11; overflow: hidden; }
.offer-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.offer-card:hover .offer-card-img img { transform: scale(1.04); }

.offer-card-body { padding: 1.5rem 1.6rem 1.75rem; }

.offer-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.offer-card-top h3 { font-size: 1.3rem; }
.offer-index { color: var(--muted-on-light); font-size: 0.85rem; }

.offer-card-body p { color: var(--muted-on-light); font-size: 0.95rem; }

/* ---------- Why ---------- */
.why { background: var(--ink); color: var(--cream); }

.why h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  max-width: 16ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-on-dark);
}

.why-card {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}
.why-card:nth-child(2n) { border-right: none; }

.why-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-on-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--orange);
}

.why-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.why-card p { color: var(--muted-on-dark); font-size: 0.95rem; max-width: 32ch; }

/* ---------- Breaker ---------- */
.breaker { width: 100%; height: clamp(280px, 55vh, 620px); overflow: hidden; }
.breaker img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA ---------- */
.cta-inner { text-align: center; max-width: 760px; margin-inline: auto; }
.cta-inner h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 1.25rem; }
.cta-inner p { color: var(--muted-on-light); margin-bottom: 2.25rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { background: var(--ink); color: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.contact-info h2 {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  margin-bottom: 1rem;
  max-width: 12ch;
}

.contact-info p.contact-line,
.contact-info > p:first-of-type { color: var(--muted-on-dark); }

.contact-email {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  margin-block: 1.5rem 1.25rem;
}

.contact-line { color: var(--cream); margin-bottom: 0.3rem; }

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  height: clamp(300px, 36vw, 460px);
  filter: grayscale(0.2) contrast(1.05);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding-top: clamp(3rem, 6vw, 5rem); }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-on-dark);
}

.footer-top .brand { color: var(--cream); }

.socials { display: flex; gap: 1.1rem; }
.socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  opacity: 0.85;
}
.socials a:hover { opacity: 1; background: var(--line-on-dark); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem 2rem;
  border-top: 1px solid var(--line-on-dark);
  font-size: 0.85rem;
  color: var(--muted-on-dark);
}

.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--cream); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .offer-head, .contact-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none !important; }
  .offer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 1.5rem var(--pad-inline);
    gap: 1.25rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .header-inner { position: relative; }
}

@media (max-width: 520px) {
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
