:root {
  --bg: #f7f2ea;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: #212226;
  --text: #24262b;
  --muted: #67625a;
  --line: rgba(36, 38, 43, 0.12);
  --gold: #bf9b63;
  --gold-soft: #e7d5b5;
  --shadow: 0 22px 60px rgba(32, 26, 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(231, 213, 181, 0.5), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f5efe5 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 6rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.about-content h2,
.contact-panel h2,
.hero-content h1,
.hero-card h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.section-heading h2,
.about-content h2,
.contact-panel h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(247, 242, 234, 0.82);
  border-bottom: 1px solid rgba(36, 38, 43, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #d8bd8b, #b88b48);
  color: white;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  line-height: 1.1;
}

.logo-text small {
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav-links a:hover,
.footer-links a:hover,
.inline-link:hover {
  color: var(--gold);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, #d7b782, #b88949);
  color: white;
  box-shadow: 0 16px 34px rgba(184, 137, 73, 0.25);
}

.nav-cta:hover,
.button-primary:hover,
.button-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(33, 34, 38, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(24, 21, 18, 0.78), rgba(24, 21, 18, 0.28)),
    url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(215, 183, 130, 0.28), transparent 30%),
    linear-gradient(180deg, transparent 0%, rgba(15, 15, 18, 0.2) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: end;
  padding: 5rem 0;
}

.hero-content {
  max-width: 720px;
  color: white;
}

.hero-content h1 {
  margin: 1rem 0 1.25rem;
  font-size: clamp(3.6rem, 9vw, 6.8rem);
}

.hero-text {
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-card,
.service-card,
.offer-card,
.testimonial-card,
.contact-form,
.contact-panel,
.stat-card,
.timeline-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(18px);
}

.hero-card-label {
  margin: 0 0 0.8rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.hero-card h2 {
  margin: 0 0 1rem;
  font-size: 2.1rem;
}

.hero-contact {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.about-photo img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.about-content p,
.service-card p,
.timeline-item p,
.testimonial-card p,
.contact-panel p,
.form-note {
  color: var(--muted);
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(36, 38, 43, 0.06);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--surface-dark);
}

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

.service-card,
.testimonial-card,
.contact-form,
.contact-panel,
.timeline-item {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(36, 38, 43, 0.06);
}

.service-card,
.offer-card,
.testimonial-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover,
.offer-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(33, 34, 38, 0.14);
  border-color: rgba(191, 155, 99, 0.4);
}

.service-card h3,
.offer-card h3,
.timeline-item h3,
.testimonial-card strong,
.contact-form h3,
.site-footer h3 {
  margin-top: 0;
}

.offer-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  border: 1px solid rgba(36, 38, 43, 0.06);
}

.offer-card img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.offer-card:hover img {
  transform: scale(1.05);
}

.offer-content {
  padding: 1.5rem;
}

.offer-location {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.offer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
  color: var(--muted);
}

.inline-link {
  color: var(--surface-dark);
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.timeline-item {
  position: relative;
  overflow: hidden;
}

.timeline-item span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(191, 155, 99, 0.14);
  color: var(--gold);
  font-weight: 700;
}

.contact-details {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.contact-details a {
  font-weight: 600;
}

.button-whatsapp {
  background: #1fa855;
  color: white;
}

.map-placeholder {
  margin-top: 1.75rem;
  padding: 1.5rem;
  min-height: 180px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(191, 155, 99, 0.12), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=1200&q=80")
      center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 38, 43, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.86);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(191, 155, 99, 0.14);
}

.site-footer {
  padding-top: 2rem;
  background: #1d1f23;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-logo .logo-text small,
.site-footer h3,
.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 1.25rem 1rem 5.5rem;
  color: rgba(255, 255, 255, 0.58);
}

.nav-toggle,
.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .offer-grid,
  .testimonial-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.5rem 0;
  }

  .navbar {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--surface-dark);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(36, 38, 43, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-grid,
  .service-grid,
  .offer-grid,
  .testimonial-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero-card h2 {
    font-size: 1.75rem;
  }

  .about-photo img {
    min-height: 340px;
  }

  .mobile-call {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 54px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d7b782, #b88949);
    color: white;
    box-shadow: 0 18px 38px rgba(22, 22, 24, 0.22);
  }
}
