@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f6f1ea;
  --surface: #fffaf3;
  --surface-2: #efe6d9;
  --line: #decfbc;
  --text: #2f2b28;
  --muted: #70675f;
  --primary: #a97947;
  --primary-dark: #80572d;
  --accent: #cf8d5c;
  --whatsapp: #25d366;
  --shadow: 0 24px 60px rgba(70, 52, 28, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --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(207, 141, 92, 0.16), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(169, 121, 71, 0.18), transparent 28%),
    var(--bg);
  line-height: 1.65;
}

img,
iframe {
  display: block;
  max-width: 100%;
  border: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 243, 0.85);
  border-bottom: 1px solid rgba(222, 207, 188, 0.8);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name,
h1,
h2,
h3,
.section-kicker {
  font-family: "Cormorant Garamond", serif;
}

.brand-name {
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--text);
  background: rgba(169, 121, 71, 0.12);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(222, 207, 188, 0.95);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.78);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lang-link:hover,
.lang-link[aria-current="true"] {
  color: #fff;
  background: var(--primary);
}

.hero {
  padding: 80px 0 36px;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-media,
.card,
.panel,
.contact-card,
.map-card,
.faq-item,
.project-card,
.gallery-block {
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid rgba(222, 207, 188, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy,
.panel,
.contact-card,
.map-card,
.gallery-block,
.card {
  padding: 30px;
}

.card-media {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  margin: -10px 0 20px;
  border-radius: 22px;
}

.hero-copy {
  padding: 44px;
}

.hero-media {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(169, 121, 71, 0.13);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

p {
  margin: 0 0 16px;
}

.lead,
.muted,
.section-copy,
.meta-list li,
.card p,
.panel p,
.faq-item p,
.map-note,
.tiny {
  color: var(--muted);
}

.section {
  padding: 28px 0 40px;
}

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

.section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 1.15rem;
  font-weight: 600;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1daa56;
}

.grid-3,
.grid-4,
.project-grid,
.mini-grid,
.service-grid {
  display: grid;
  gap: 20px;
}

.grid-3,
.service-grid,
.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.panel,
.project-card {
  border-radius: var(--radius-lg);
}

.card strong,
.panel strong,
.project-tag,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(169, 121, 71, 0.12);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.icon-list,
.meta-list,
.bullet-list {
  margin: 0;
  padding-left: 18px;
}

.icon-list li,
.meta-list li,
.bullet-list li {
  margin-bottom: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.project-card {
  overflow: hidden;
  padding: 0;
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.project-body {
  padding: 24px 24px 28px;
}

.cta-strip {
  padding: 28px 30px;
  background: linear-gradient(135deg, rgba(169, 121, 71, 0.92), rgba(128, 87, 45, 0.96));
  color: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.cta-strip .muted {
  color: rgba(255, 255, 255, 0.82);
}

.map-card iframe {
  width: 100%;
  min-height: 380px;
  border-radius: calc(var(--radius-xl) - 4px);
}

.contact-item {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(169, 121, 71, 0.08);
  margin-bottom: 12px;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

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

.faq-item {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.gallery-block + .gallery-block {
  margin-top: 20px;
}

.gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
}

.gallery-link {
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(222, 207, 188, 0.9);
  background: var(--surface);
}

.gallery-link img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery-caption {
  padding: 14px 16px 18px;
}

.gallery-caption strong {
  display: block;
  margin-bottom: 4px;
}

.gallery-note {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.seo-strip {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(169, 121, 71, 0.1);
}

.footer {
  padding: 28px 0 42px;
}

.footer-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  font-weight: 900;
}

.floating-whatsapp:hover {
  background: #1daa56;
  transform: translateY(-1px);
}

.floating-whatsapp-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .grid-3,
  .grid-4,
  .service-grid,
  .project-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .header-row {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav {
    display: flex;
    width: 100%;
    justify-content: flex-start;
  }

  .language-switch {
    align-self: flex-start;
  }

  .hero-copy,
  .panel,
  .card,
  .contact-card,
  .map-card,
  .gallery-block {
    padding: 22px;
  }

  .gallery-track {
    grid-auto-columns: minmax(82%, 1fr);
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding-right: 14px;
  }
}
