:root {
  --bg: #f7f4ef;
  --bg-soft: #efe8dc;
  --white: #ffffff;
  --title: #1f1b18;
  --text: #675d54;
  --accent: #b8956f;
  --accent-dark: #8b6a47;
  --border: rgba(31, 27, 24, 0.08);
  --shadow: 0 20px 60px rgba(33, 25, 18, 0.12);
  --radius: 26px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(184, 149, 111, 0.12), transparent 22%),
    radial-gradient(circle at bottom right, rgba(139, 106, 71, 0.08), transparent 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 16px;
}

h1,
h2,
h3,
.logo-text strong {
  font-family: "Cormorant Garamond", serif;
  color: var(--title);
}

h1 {
  font-size: clamp(3.1rem, 6vw, 6rem);
  line-height: 0.95;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.8rem;
}

p {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  box-shadow: 0 14px 30px rgba(139, 106, 71, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--title);
  border-color: rgba(31, 27, 24, 0.1);
}

.btn-secondary:hover {
  background: #fff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 27, 24, 0.05);
}

.nav-container {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(139, 106, 71, 0.18);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-size: 1.35rem;
}

.logo-text span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  font-weight: 700;
  color: var(--title);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--accent-dark);
  transition: 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--title);
  border-radius: 2px;
}

.hero {
  padding: 46px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 38px;
}

.hero-text {
  max-width: 620px;
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.hero-number-card {
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(31, 27, 24, 0.06);
  box-shadow: var(--shadow);
}

.hero-number-card strong {
  display: block;
  font-size: 1.45rem;
  color: var(--title);
  margin-bottom: 6px;
}

.hero-number-card span {
  font-size: 0.94rem;
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-image-main {
  position: absolute;
  inset: 20px 0 40px 60px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e8dfd4;
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 27, 24, 0.06);
}

.floating-note span {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 6px;
}

.floating-note strong {
  color: var(--title);
  font-size: 1rem;
  line-height: 1.4;
}

.note-top {
  top: 0;
  left: 0;
}

.note-bottom {
  right: 0;
  bottom: 0;
}

.brand-strip {
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(31, 27, 24, 0.05);
  border-bottom: 1px solid rgba(31, 27, 24, 0.05);
}

.brand-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand-row span {
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-images img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #e8dfd4;
}

.about-images img:last-child {
  margin-top: 50px;
}

.about-content p {
  margin-bottom: 16px;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.about-item {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(31, 27, 24, 0.07);
  border-radius: 18px;
  color: var(--title);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(33, 25, 18, 0.06);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.projects {
  background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0.6));
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: repeat(2, 270px);
  gap: 18px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #e8dfd4;
}

.project-card.large {
  grid-row: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.project-overlay span {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 4px;
}

.project-overlay h3 {
  font-size: 1.5rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metric-card,
.differential-card,
.testimonial-card,
.contact-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 27, 24, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 26px;
  text-align: center;
}

.metric-card strong {
  display: block;
  font-size: 1.9rem;
  color: var(--title);
  margin-bottom: 6px;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.differential-card {
  padding: 28px;
  transition: 0.3s ease;
}

.differential-card:hover {
  transform: translateY(-8px);
}

.differential-number {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(184, 149, 111, 0.16), rgba(139, 106, 71, 0.12));
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.differential-card h3 {
  margin-bottom: 10px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card p {
  margin-bottom: 18px;
}

.testimonial-card strong {
  display: block;
  color: var(--title);
  margin-bottom: 4px;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(135deg, #f1e7da, #faf6f0);
  border: 1px solid rgba(31, 27, 24, 0.07);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.contact-item strong {
  display: block;
  color: var(--title);
  margin-bottom: 4px;
}

.contact-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p {
  margin-bottom: 22px;
}

.contact-card .btn + .btn {
  margin-top: 12px;
}

.footer {
  padding: 42px 0 20px;
  background: #f1ece4;
  border-top: 1px solid rgba(31, 27, 24, 0.06);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-brand h3 {
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: var(--text);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 27, 24, 0.06);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  background: linear-gradient(135deg, #1db954, #25d366);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 240px);
  }

  .project-card.large {
    grid-row: span 1;
  }

  .metrics-grid,
  .differentials-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: 560px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 22px;
    background: rgba(247, 244, 239, 0.98);
    border: 1px solid rgba(31, 27, 24, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .hero-numbers,
  .about-list,
  .metrics-grid,
  .differentials-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 82px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-images img {
    height: 300px;
  }

  .about-images img:last-child {
    margin-top: 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .project-card,
  .project-card.large {
    height: 260px;
  }

  .brand-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 440px;
  }

  .floating-note {
    position: static;
    margin-top: 14px;
    max-width: 100%;
  }

  .hero-image-main {
    position: relative;
    inset: auto;
    min-height: 320px;
  }
}