:root {
  --bg: #fbf7f3;
  --surface: #ffffff;
  --surface-soft: #f3ece4;
  --text: #271f1a;
  --muted: #6f655d;
  --line: #e7ddd1;
  --accent: #b99768;
  --accent-dark: #98794d;
  --accent-deep: #6d5433;
  --shadow: 0 20px 45px rgba(57, 42, 25, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(251, 247, 243, 0.9);
  border-bottom: 1px solid rgba(231, 221, 209, 0.9);
}

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

.brand {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktop-nav a {
  color: var(--muted);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 16px 20px;
  background: rgba(251, 247, 243, 0.98);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  font-weight: 600;
}

.mobile-menu.is-open { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary,
.btn-outline {
  background: var(--surface);
  border: 1px solid var(--line);
}

.full-width { width: 100%; }
.section {
  padding: 88px 0;
}
.soft-section { background: #f7f1ea; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 14px;
}

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0 0 14px;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.7rem); max-width: 12ch; }
h2 { font-size: clamp(1.9rem, 4vw, 3.3rem); max-width: 14ch; }
h3 { font-size: 1.22rem; }
p { margin: 0; }

.hero {
  padding: 72px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: 32px;
  align-items: center;
}

.hero-copy p,
.section-head p,
.service-card p,
.timeline-item p,
.info-card p,
.contact-card li,
.faq-list p,
.compact-head p {
  color: var(--muted);
  font-size: 1.03rem;
}

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

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.hero-list li {
  color: var(--muted);
}

.hero-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
  font-weight: 800;
}

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

.hero-badge-card,
.service-card,
.testimonial-card,
.timeline-item,
.info-card,
.contact-card,
.cta-box,
.check-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-badge-card {
  padding: 22px;
}

.hero-badge-card strong {
  display: block;
  font-size: 2rem;
  color: var(--accent-deep);
  margin-bottom: 6px;
}

.mini-label {
  display: inline-block;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.hero-photo-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #f3e5d6 0%, #f9f4ef 48%, #efe6dc 100%);
}

.photo-glow {
  position: absolute;
  inset: auto -70px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(185, 151, 104, 0.24);
  filter: blur(6px);
}

.photo-frame {
  position: absolute;
  inset: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.95), rgba(255,255,255,.2) 25%, transparent 26%),
    linear-gradient(160deg, rgba(255,255,255,.7), rgba(255,255,255,.15)),
    linear-gradient(135deg, #ceb08a, #f7efe5 60%, #d7bf9e);
  display: flex;
  align-items: end;
  padding: 22px;
}

.photo-copy {
  max-width: 260px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.8);
  padding: 18px;
  border-radius: 20px;
}

.photo-copy span {
  display: block;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

.photo-copy strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.quick-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fcf9f5;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px 0;
}

.quick-grid strong {
  display: block;
  margin-bottom: 4px;
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.compact-head { margin-bottom: 28px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 24px;
}

.split-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.check-item {
  padding: 20px;
}

.check-item::before {
  content: "✓";
  color: var(--accent-dark);
  font-weight: 800;
  margin-right: 10px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  padding: 24px;
}

.testimonial-card footer {
  margin-top: 16px;
  font-weight: 700;
  color: var(--accent-dark);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline-item {
  padding: 26px;
}

.timeline-item span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-soft);
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 14px;
}

.works-layout {
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill-list span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 600;
}

.info-card {
  padding: 28px;
}

.cta-section { padding-top: 10px; }

.cta-box {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

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

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p { margin-top: 10px; }

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.contact-links a {
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-card {
  padding: 28px;
}

.contact-card ul {
  margin: 0;
  padding-left: 18px;
}

.contact-card li + li { margin-top: 10px; }

.map-section { padding-top: 0; }

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 26px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-shell strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.24);
}

@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-block; }
  .hero-grid,
  .split-layout,
  .contact-grid,
  .timeline,
  .testimonial-grid,
  .check-grid,
  .cta-box { grid-template-columns: 1fr; display: grid; }

  .hero { padding-top: 48px; }
  h1 { max-width: 12ch; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .quick-grid,
  .service-grid { grid-template-columns: 1fr; }

  .hero-photo-card { min-height: 270px; }
  .photo-frame { inset: 16px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}
