:root {
  --bg: #f4efe7;
  --bg-alt: #efe6da;
  --paper: rgba(255, 250, 245, 0.82);
  --paper-strong: #fffaf4;
  --text: #171412;
  --muted: #65584d;
  --line: rgba(23, 20, 18, 0.1);
  --brand: #0e8fb6;
  --brand-deep: #07556d;
  --brand-soft: #d9f2fa;
  --accent: #c8a16b;
  --dark: #111111;
  --shadow: 0 22px 55px rgba(37, 28, 18, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(14, 143, 182, 0.12), transparent 24%),
    radial-gradient(circle at right 15%, rgba(200, 161, 107, 0.12), transparent 20%),
    linear-gradient(180deg, #f6f1ea 0%, #f7f3ee 40%, #fffdf9 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(246, 241, 234, 0.78);
  border-bottom: 1px solid rgba(23, 20, 18, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 48px;
  height: 48px;
}

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

.brand strong {
  font-weight: 800;
}

.brand span {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  font-weight: 700;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  box-shadow: 0 14px 30px rgba(7, 85, 109, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(23, 20, 18, 0.1);
}

.button-light {
  color: var(--dark);
  background: #fff;
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 800;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.5rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.9rem;
}

p {
  margin: 0;
  line-height: 1.7;
}

.hero {
  padding: 42px 0 70px;
}

.hero-grid,
.page-hero-grid,
.contact-grid,
.process-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.hero-copy,
.hero-main-image,
.hero-mini-card,
.highlight-panel,
.service-card,
.step,
.gallery-card,
.faq-item,
.contact-form,
.contact-copy,
.info-card,
.legal-card {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  padding: 42px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 143, 182, 0.12), transparent 72%);
}

.hero-copy p,
.section-head p,
.service-content p,
.step p,
.gallery-card p,
.contact-copy p,
.info-card p,
.legal-card p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.hero-trust div,
.hero-mini-card,
.highlight-items article,
.contact-points div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(23, 20, 18, 0.08);
}

.hero-trust strong,
.hero-mini-card strong,
.highlight-items strong,
.contact-points strong {
  display: block;
  margin-bottom: 6px;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.hero-main-image {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  min-height: 520px;
}

.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.16), rgba(15, 15, 15, 0.7));
  color: #fff;
  font-weight: 700;
}

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

.hero-mini-card {
  min-height: 120px;
}

.section {
  padding: 24px 0 72px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(239, 230, 218, 0.34), rgba(255, 255, 255, 0));
}

.section-dark {
  padding: 0 0 72px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-head p {
  max-width: 56ch;
}

.highlight-panel {
  border-radius: 34px;
  padding: 30px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

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

.services-grid,
.gallery-grid,
.feature-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.gallery-card,
.info-card {
  border-radius: 28px;
  overflow: hidden;
}

.service-card img,
.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.service-content,
.gallery-card div {
  padding: 24px;
}

.service-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--brand-deep);
  font-weight: 800;
}

.process-copy {
  padding: 24px 0;
}

.process-steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border-radius: 24px;
}

.step strong {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  font-size: 1.2rem;
}

.cta-panel {
  border-radius: 34px;
  padding: 34px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background:
    linear-gradient(135deg, rgba(10, 28, 35, 0.94), rgba(10, 85, 109, 0.88)),
    url("https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 48ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-copy,
.contact-form {
  border-radius: 30px;
  padding: 30px;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(23, 20, 18, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(14, 143, 182, 0.56);
  box-shadow: 0 0 0 4px rgba(14, 143, 182, 0.12);
}

.field-full {
  grid-column: 1 / -1;
}

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

.site-footer {
  background: #120f0d;
  color: rgba(255, 255, 255, 0.9);
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
}

.brand-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.64);
}

.footer-bottom-single {
  margin-top: 0;
}

.internal-page {
  padding-bottom: 48px;
}

.page-hero {
  padding: 42px 0 18px;
}

.page-media img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.info-card {
  padding: 26px;
}

.legal-page {
  min-height: 100vh;
  padding: 48px 0;
}

.legal-card {
  padding: 34px;
  border-radius: 34px;
}

.legal-card h2 {
  margin-top: 24px;
  font-size: 2rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-width: 144px;
  padding: 15px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1ebc5a, #25d366);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.32s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .contact-grid,
  .process-grid,
  .highlight-panel,
  .services-grid,
  .gallery-grid,
  .feature-split,
  .footer-grid,
  .hero-trust,
  .highlight-items,
  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(23, 20, 18, 0.12);
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    font-weight: 700;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
  }

  .nav-menu.is-open,
  .nav-menu-static {
    display: flex;
  }

  .hero-copy,
  .contact-copy,
  .contact-form,
  .highlight-panel,
  .cta-panel,
  .legal-card {
    padding: 22px;
  }

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

  .whatsapp-float {
    min-width: 0;
    padding: 14px 16px;
  }
}
