
:root {
  --bg: #faf6f2;
  --soft: #fffaf7;
  --card: #ffffff;
  --text: #2f251f;
  --muted: #6f625a;
  --brand: #5a3d31;
  --brand-2: #d5a57f;
  --accent: #f0d8c5;
  --green: #128c4a;
  --line: rgba(90, 61, 49, 0.12);
  --shadow: 0 18px 34px rgba(90, 61, 49, 0.08);
  --radius: 22px;
  --container: 1180px;
  --font: Arial, Helvetica, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(92%, var(--container)); margin: 0 auto; }
.section-padding { padding: 76px 0; }
.section-soft { background: linear-gradient(180deg, #fffaf7, #f8f1eb); }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(250,246,242,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.navbar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: 0.4px; color: var(--brand); font-size: 1.05rem; }
.brand img { border-radius: 14px; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; padding: 0; margin: 0; font-weight: 800; color: var(--muted); }
.nav-links a:hover { color: var(--brand-2); }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--card); color: var(--brand); border-radius: 12px; padding: 9px 12px; font-size: 1.3rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px; border-radius: 999px; background: linear-gradient(135deg, var(--brand-2), #c88e6a); color: white; font-weight: 900; border: 0; cursor: pointer; box-shadow: 0 12px 22px rgba(213,165,127,0.25); }
.btn:hover { transform: translateY(-1px); }
.btn-small { min-height: 40px; padding: 9px 16px; font-size: 0.92rem; }
.btn-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); box-shadow: none; }
.btn-full { width: 100%; }
.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 10% 15%, rgba(240,216,197,0.35), transparent 28%), radial-gradient(circle at 90% 10%, rgba(213,165,127,0.12), transparent 26%), linear-gradient(180deg, #fffdfb 0%, var(--bg) 100%); }
.hero-grid { display: grid; grid-template-columns: 0.94fr 1.06fr; align-items: center; gap: 36px; }
.eyebrow, .section-label { color: var(--brand-2); text-transform: uppercase; letter-spacing: 1.8px; font-size: 0.78rem; font-weight: 900; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(2.3rem, 4vw, 4rem); margin-bottom: 18px; max-width: 620px; }
h2 { font-size: clamp(1.95rem, 3vw, 3rem); margin-bottom: 14px; }
h3 { font-size: 1.15rem; }
.hero-text, .about-text p, .section-heading p:not(.section-label), .spec-card p, .contact-grid p { color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-card { border-radius: 34px; background: rgba(255,255,255,0.65); box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; }
.hero-card img { width: 100%; min-height: 470px; max-height: 510px; object-fit: cover; }
.authority { background: #50392d; color: white; padding: 24px 0; }
.authority-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.authority strong { display: block; font-size: 1.08rem; }
.authority span { color: rgba(255,255,255,0.78); }
.authority a { color: var(--accent); font-weight: 900; white-space: nowrap; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.card-image, .spec-card, .contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.card-image { overflow: hidden; }
.card-image img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.section-heading { max-width: 820px; margin: 0 auto 38px; text-align: center; }
.spec-grid { display: grid; gap: 22px; grid-template-columns: repeat(5, 1fr); }
.spec-card { padding: 16px; }
.spec-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px; margin-bottom: 14px; }
.gallery-grid { display: grid; gap: 18px; }
.gallery-grid.five-col { grid-template-columns: repeat(5, 1fr); }
.gallery-grid figure { margin: 0; border-radius: 18px; overflow: hidden; background: var(--card); border: 1px solid var(--line); box-shadow: 0 10px 22px rgba(90,61,49,0.07); }
.gallery-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-grid figcaption { padding: 10px 12px; color: var(--muted); font-weight: 800; font-size: 0.9rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 42px; align-items: start; }
.contact-list { display: grid; gap: 10px; margin-top: 24px; }
.contact-list a, .contact-list span { padding: 14px 16px; border-radius: 14px; background: #fff5ef; color: var(--brand); font-weight: 800; }
.contact-form { padding: 28px; }
.contact-form label { display: block; font-weight: 800; color: var(--brand); margin: 16px 0 8px; }
.contact-form input, .contact-form select { width: 100%; border: 1px solid var(--line); border-radius: 14px; min-height: 48px; padding: 12px 14px; font: inherit; background: #fff; }
.site-footer { padding: 36px 0 30px; background: #50392d; color: white; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.site-footer p { color: rgba(255,255,255,0.74); margin: 6px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,0.9); font-weight: 800; }
.social-row { margin-top: 18px; display: flex; justify-content: center; }
.instagram-link { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px; background: rgba(255,255,255,0.08); color: white; font-weight: 800; }
.instagram-link:hover { background: rgba(255,255,255,0.14); }
.float-whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 30; background: var(--green); color: white; padding: 13px 18px; border-radius: 999px; box-shadow: 0 14px 26px rgba(0,0,0,0.18); font-weight: 900; }
@media (max-width: 1100px) {
  .spec-grid, .gallery-grid.five-col { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; }
  .nav-links { position: absolute; top: 78px; left: 4%; right: 4%; display: none; flex-direction: column; align-items: stretch; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 18px; }
  .nav-links.show { display: flex; }
  .navbar > .btn-small { display: none; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.five-col { grid-template-columns: repeat(3, 1fr); }
  .authority-grid { flex-direction: column; align-items: flex-start; }
  .hero-card img { min-height: 340px; }
}
@media (max-width: 620px) {
  .section-padding { padding: 58px 0; }
  .spec-grid, .gallery-grid.five-col { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .hero-card img { min-height: 280px; }
}
