:root {
  --bg: #f6f1e8;
  --surface: #fffaf3;
  --card: rgba(255,255,255,0.84);
  --ink: #1f1b18;
  --muted: #5d544c;
  --line: rgba(31,27,24,0.12);
  --gold: #c7a462;
  --gold-deep: #9f7935;
  --forest: #24312d;
  --whatsapp: #25d366;
  --shadow: 0 24px 72px rgba(30,24,18,0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(199,164,98,.18), transparent 28%),
    radial-gradient(circle at top right, rgba(36,49,45,.12), transparent 26%),
    linear-gradient(180deg, #f9f4ec 0%, #f2ecdf 100%);
}

img {
  max-width: 100%;
  display: block;
}

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

p, h1, h2, h3, h4 {
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: .95;
  letter-spacing: -.02em;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

/* topbar */
.topbar {
  background: linear-gradient(90deg, rgba(36,49,45,.98), rgba(17,23,21,.95));
  color: #f8f4ec;
  font-size: .92rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
}

.topbar-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248,244,236,.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31,27,24,.08);
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  max-width: 100%;
  height: auto;
}

.brand-logo--header {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  flex: 0 0 auto;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.brand-text strong {
  display: block;
  font-size: 1rem;
}

.brand-text span {
  display: block;
  font-size: .82rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.site-nav > a.is-active {
  color: var(--ink);
}

.button-language {
  background: rgba(255,255,255,.82);
  border-color: var(--line);
  color: var(--forest);
}

.nav-toggle {
  display: none;
}

/* buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold), #ecd6a2);
  color: var(--forest);
  box-shadow: 0 18px 36px rgba(199,164,98,.22);
}

.button-secondary {
  background: rgba(255,255,255,.74);
  border-color: var(--line);
}

/* social */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  opacity: .92;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  flex: 0 0 18px;
}

.social-link--topbar {
  color: #f8f4ec;
}

.social-link--footer {
  color: rgba(248,244,236,.92);
}

/* shared */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16,22,20,.78), rgba(16,22,20,.34));
  pointer-events: none;
}

.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 3;
  color: #f8f4ec;
}

.hero-copy {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
  min-height: 88vh;
  padding: 144px 0 84px;
}

.page-hero {
  min-height: 38vh;
}

.page-hero-copy {
  padding: 132px 0 42px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--gold-deep);
}

.hero .eyebrow,
.site-footer .eyebrow,
.location-card--primary .eyebrow,
.hero-service-panel .eyebrow {
  color: #f0d8a8;
}

.display-title {
  font-size: clamp(3.3rem, 7vw, 6.2rem);
  max-width: 12ch;
}

.hero-subtitle {
  margin-top: 18px;
  max-width: 56ch;
  font-size: 1.08rem;
  color: rgba(248,244,236,.92);
}

.hero-actions,
.chip-row,
.service-links,
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.metric {
  border-top: 1px solid rgba(255,255,255,.26);
  padding-top: 16px;
}

.metric strong {
  display: block;
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", serif;
}

/* hero slider */
.hero {
  min-height: 88vh;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease, visibility .8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  filter: saturate(.9) contrast(1.02) brightness(.84);
  transition: transform 6s ease, filter .4s ease;
}

.hero:hover .hero-slide.is-active img {
  transform: scale(1.05);
  filter: saturate(.96) contrast(1.04) brightness(.88);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(199,164,98,.18), transparent 22%),
    linear-gradient(180deg, rgba(12,16,15,.2) 0%, rgba(12,16,15,.42) 48%, rgba(12,16,15,.74) 100%);
}

.hero-slider-controls {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.36);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, width .2s ease;
}

.hero-dot.is-active {
  width: 32px;
  background: var(--gold);
}

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

/* hero service panel */
.hero-service-panel {
  margin-top: 22px;
  width: min(720px, 100%);
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(18,25,23,.46);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(0,0,0,.16);
}

.hero-service-panel h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: .98;
  color: #f8f4ec;
}

.hero-service-panel p:last-child {
  color: rgba(248,244,236,.9);
}

/* city CTA row */
.city-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.city-cta {
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #f8f4ec;
  box-shadow: 0 16px 32px rgba(0,0,0,.12);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.city-cta:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
  border-color: rgba(240,216,168,.3);
}

.city-cta__label {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(248,244,236,.78);
}

.city-cta strong {
  font-size: 1rem;
  color: #fff;
}

/* cards */
.hero-card,
.panel,
.card,
.location-card,
.team-card,
.testimonial-card,
.project-card,
.cta-shell {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  background: rgba(248,244,236,.12);
  border-color: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  padding: 30px;
}

.hero-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.hero-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
}

.hero-list li,
.list-check li {
  position: relative;
  padding-left: 18px;
}

.hero-list li::before,
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.chip-row span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  font-size: .84rem;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,.66), rgba(255,255,255,.3));
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h1,
.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 11ch;
}

.section-head p {
  max-width: 48ch;
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4,
.split,
.hero-service-grid,
.contact-layout,
.cta-grid,
.team-grid,
.project-grid,
.testimonial-grid,
.location-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.grid-2,
.split,
.hero-service-grid,
.contact-layout,
.cta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.location-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.card,
.panel,
.location-card,
.testimonial-card,
.cta-shell {
  padding: 28px;
}

.card h3,
.panel h3,
.location-card h3,
.project-card h3,
.team-card h3,
.testimonial-card h3 {
  font-size: 2rem;
  margin: 10px 0 12px;
}

.card p,
.panel p,
.location-card p,
.testimonial-card p,
.project-card p,
.team-card p {
  color: var(--muted);
}

/* projects */
.project-card {
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(30,24,18,.16);
}

.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .55s ease, filter .35s ease;
}

.project-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.02);
}

.project-copy {
  padding: 24px;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 38vh;
  object-fit: cover;
  filter: saturate(.92) contrast(1.03) brightness(.78);
}

/* locations */
.location-card--primary {
  background: linear-gradient(180deg, rgba(36,49,45,.98), rgba(27,38,34,.98));
  color: #f8f4ec;
}

.location-card a,
.footer-locations a {
  color: var(--gold-deep);
  font-weight: 700;
}

.location-card--primary a {
  color: #f0d8a8;
}

.location-card a {
  display: inline-flex;
  margin-top: 8px;
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(248,244,236,.88);
  font-size: .9rem;
}

.breadcrumbs a {
  color: #fff;
}

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

.faq-item {
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 800;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 26px 22px;
  color: var(--muted);
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.58);
}

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

.contact-card {
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

.contact-card h3 {
  font-size: 1.8rem;
  margin: 10px 0 8px;
}

.contact-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold-deep);
  font-weight: 700;
}

.detail-overview {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
}

.media-stack,
.detail-stack {
  display: grid;
  gap: 22px;
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.72);
}

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

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-tile {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}

.stat-tile strong {
  display: block;
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
}

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

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mini-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* team */
.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(30,24,18,.16);
}

.team-media {
  height: 280px;
  background: linear-gradient(180deg, rgba(36,49,45,.08), rgba(199,164,98,.18));
  overflow: hidden;
}

.team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.team-card:hover .team-media img {
  transform: scale(1.04);
}

.team-body {
  padding: 24px;
}

/* testimonials */
.quote {
  font-size: 1.18rem;
  color: var(--ink) !important;
}

.testimonial-meta {
  margin-top: 14px;
  font-weight: 700;
  color: var(--ink) !important;
}

.testimonial-meta span {
  display: block;
  margin-top: 4px;
  color: var(--gold-deep);
  font-size: .86rem;
}

/* pills */
.service-links a,
.text-link {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  transition: transform .2s ease, background .2s ease;
}

.service-links a:hover,
.text-link:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.92);
}

/* CTA */
.cta-shell {
  background: linear-gradient(135deg, rgba(36,49,45,.98), rgba(27,38,34,.95));
  color: #f8f4ec;
}

.cta-grid {
  align-items: start;
}

.quote-logo {
  display: block;
  width: 230px;
  max-width: 100%;
  height: auto;
  margin: 0 0 18px;
}

.branch-cta-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.branch-cta-list__item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(248,244,236,.92);
  transition: transform .2s ease, background .2s ease;
}

.branch-cta-list__item:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
}

/* forms */
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-size: .92rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255,255,255,.56);
}

.lead-form textarea {
  min-height: 130px;
  resize: vertical;
}

.lead-form-full,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  font-size: .84rem;
  color: rgba(248,244,236,.76);
}

/* footer */
.site-footer {
  padding: 76px 0 52px;
  background: linear-gradient(180deg, rgba(23,31,28,.98), rgba(15,21,19,1));
  color: #f8f4ec;
}

.footer-grid {
  grid-template-columns: 1.3fr .7fr 1fr;
}

.site-footer h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 10px 0 14px;
  max-width: 12ch;
}

.footer-logo {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
  margin: 0 0 20px;
  filter: none;
}

.footer-social,
.footer-links,
.footer-locations {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-social a {
  color: rgba(248,244,236,.88);
}

.footer-social--icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.footer-social--icons .social-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.footer-locations li {
  display: grid;
  gap: 4px;
}

/* floating whatsapp */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whatsapp-float {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(36,49,45,.96);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(0,0,0,.26);
}

.whatsapp-float__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  flex: 0 0 42px;
}

.whatsapp-float__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-float__text {
  display: grid;
  line-height: 1.1;
}

.whatsapp-float__text strong {
  font-size: .95rem;
}

.whatsapp-float__text small {
  font-size: .76rem;
  color: rgba(255,255,255,.76);
}

/* responsive */
@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,250,243,.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 20px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.72);
    padding: 12px 16px;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
  }

  .hero-copy,
  .grid-2,
  .grid-3,
  .grid-4,
  .detail-overview,
  .split,
  .hero-service-grid,
  .contact-layout,
  .cta-grid,
  .team-grid,
  .project-grid,
  .gallery-grid,
  .testimonial-grid,
  .location-grid,
  .footer-grid,
  .hero-metrics,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    min-width: 200px;
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 72px 0;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo--header {
    width: 52px;
    height: 52px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text span {
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 72px;
  }

  .hero-service-panel {
    padding: 18px;
  }

  .hero-service-panel h2 {
    font-size: 2rem;
  }

  .city-cta {
    min-width: 100%;
  }

  .quote-logo {
    width: 190px;
  }

  .footer-logo {
    width: 220px;
  }

  .floating-whatsapp {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .whatsapp-float {
    width: 100%;
    min-width: 0;
  }
}
