:root {
  --bg: #ffffff;
  --bg-soft: #f8f3ed;
  --bg-accent: #efe3d5;
  --card: #fffdfa;
  --text: #3c2f25;
  --muted: #7b6756;
  --line: #e8d8c6;
  --primary: #a97a50;
  --primary-dark: #7d5635;
  --shadow: 0 18px 45px rgba(82, 52, 28, 0.10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #fff 0%, #fff 55%, var(--bg-soft) 100%);
  color: var(--text);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(169,122,80,0.12);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}
.eyebrow, .section-label, .badge {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--primary-dark);
}
.topbar h1, .hero h2, .section-title, .intro h3 {
  font-family: 'Playfair Display', serif;
}
.topbar h1 {
  margin: 6px 0 0;
  font-size: clamp(1.6rem, 2vw, 2rem);
}
.desktop-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}
.desktop-nav a:hover { color: var(--primary-dark); }
.hero {
  padding: 56px 0 38px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.hero-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.03;
  margin: 14px 0 18px;
}
.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}
.btn, .contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s ease;
}
.btn-primary, .contact-link {
  background: linear-gradient(135deg, var(--primary) 0%, #c79a6e 100%);
  color: white;
  box-shadow: var(--shadow);
}
.btn-primary:hover, .contact-link:hover {
  transform: translateY(-2px);
}
.btn-secondary {
  border-color: var(--line);
  background: white;
  color: var(--primary-dark);
}
.quick-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.hero-visual {
  position: relative;
  min-height: 620px;
}
.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(169,122,80,0.12);
}
.hero-card img, .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-main {
  inset: 60px 90px 0 0;
}
.hero-card-small {
  width: 220px;
  height: 220px;
  right: 0;
}
.hero-card-small.top { top: 0; }
.hero-card-small.bottom { bottom: 44px; }
.section {
  padding: 42px 0;
}
.intro-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.intro {
  padding-top: 20px;
}
.intro h3, .section-title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin: 10px 0 0;
}
.intro p, .contact-copy {
  color: var(--muted);
  line-height: 1.9;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.service-card {
  background: linear-gradient(180deg, white 0%, #fcf7f1 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(82, 52, 28, 0.05);
}
.service-card-wide { grid-column: span 3; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--bg-accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.service-card h4 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 260px;
  gap: 18px;
  margin-top: 28px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(169,122,80,0.12);
  background: white;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}
.feature-strip {
  padding-top: 12px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-box, .contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(82, 52, 28, 0.05);
}
.feature-box span {
  display: block;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}
.feature-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.feature-box p, .whatsapp-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.contact-card {
  display: grid;
  gap: 14px;
}
.contact-card h4 { margin: 0 0 4px; }
.contact-link.muted {
  background: #f2ebe4;
  color: var(--primary-dark);
  border: 1px solid var(--line);
  cursor: pointer;
}
.footer {
  margin-top: 22px;
  background: #2f241c;
  color: #f4e8dc;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px 0;
}
.footer h4 {
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}
.footer p {
  margin: 0 0 8px;
  line-height: 1.8;
}

@media (max-width: 980px) {
  .hero-grid, .intro-grid, .contact-grid, .footer-inner,
  .services-grid, .feature-grid {
    grid-template-columns: 1fr;
  }
  .service-card-wide { grid-column: auto; }
  .hero-visual {
    min-height: 500px;
  }
  .hero-card-main {
    inset: 70px 80px 0 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-item.tall, .gallery-item.wide { grid-column: auto; grid-row: auto; }
}

@media (max-width: 640px) {
  .desktop-nav { display: none; }
  .hero {
    padding-top: 30px;
  }
  .hero-copy h2 {
    font-size: 2.2rem;
  }
  .hero-visual {
    min-height: 420px;
  }
  .hero-card-main {
    inset: 70px 70px 0 0;
  }
  .hero-card-small {
    width: 140px;
    height: 140px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
}
