@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f7f3ee;
  --bg-alt: #fdfbf8;
  --card: #ffffff;
  --text: #1b1b1b;
  --muted: #6c6f73;
  --primary: #f2b33d;
  --accent: #1f4dd8;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 24px 60px rgba(24, 28, 35, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

button {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.page {
  min-height: 100vh;
  background: var(--bg);
}

.container {
  width: min(1140px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand img {
  height: 64px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #101318;
  box-shadow: 0 14px 40px rgba(242, 179, 61, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: #111111;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(9, 10, 12, 0.7), rgba(9, 10, 12, 0.2));
}

.hero-content {
  position: relative;
  padding: 120px 0 90px;
  display: grid;
  gap: 24px;
  color: #fdfbf8;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.lead {
  color: rgba(253, 251, 248, 0.86);
  font-size: 1.1rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(253, 251, 248, 0.8);
}

.hero-badges strong {
  display: block;
  color: #ffffff;
  font-size: 1.2rem;
}

.trust {
  padding: 50px 0;
  background: var(--bg-alt);
}

.trust-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.trust-grid h3 {
  margin-bottom: 8px;
}

.trust-grid p {
  color: var(--muted);
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head p {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  min-height: 170px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.two-cols {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 10px;
}

.highlight-box {
  background: linear-gradient(140deg, rgba(242, 179, 61, 0.18), rgba(31, 77, 216, 0.08));
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(242, 179, 61, 0.25);
  display: grid;
  gap: 20px;
}

.highlight-box ol {
  margin-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.filter {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.2s ease;
}

.filter.active,
.filter:hover {
  color: var(--text);
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-grid figure {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery-grid figcaption {
  padding: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steps span {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.steps p {
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 2rem;
}

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

.testimonials {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonials article {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
}

.testimonials p {
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-cards div {
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
}

.form {
  background: var(--card);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border);
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  background: #f7f5f1;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(242, 179, 61, 0.35);
  border-color: rgba(242, 179, 61, 0.5);
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.captcha-field {
  margin-top: 6px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.checkbox-label input {
  width: 18px;
  height: 18px;
}

.form-status {
  font-size: 0.95rem;
  color: #1f6b2b;
  min-height: 1.2em;
}

.form-status.error {
  color: #b01f1f;
}

.form-status.loading {
  color: #1f4dd8;
}


.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-form {
  margin-top: 24px;
}

.site-footer {
  background: #f1ece4;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding-bottom: 40px;
}

.footer-inner h4 {
  margin-bottom: 12px;
}

.footer-inner ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.footer-inner img {
  width: 160px;
  height: auto;
}

.footer-inner p {
  color: var(--muted);
  margin-top: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  z-index: 20;
  padding: 20px;
}

.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 70vh;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.lightbox p {
  color: var(--muted);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 30;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-content p {
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    background: rgba(247, 243, 238, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 90px 0 70px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
