:root {
  --ink: #171412;
  --muted: #6d625c;
  --paper: #fffaf4;
  --soft: #f3eadf;
  --terracotta: #b85135;
  --terracotta-dark: #8f3824;
  --olive: #66734d;
  --gold: #d9a24f;
  --line: rgba(23, 20, 18, .12);
  --shadow: 0 24px 60px rgba(54, 37, 25, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  background: rgba(255, 250, 244, .86);
  box-shadow: 0 14px 50px rgba(24, 16, 10, .16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  background: var(--terracotta);
  font-family: "Playfair Display", serif;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 26px;
  color: #443a35;
  font-size: 14px;
  font-weight: 700;
}

.header-actions,
.cta-row,
.direct-actions,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-link,
.whatsapp-link,
.btn,
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.ghost-link {
  border: 1px solid var(--line);
  background: #fff;
}

.whatsapp-link,
.btn-primary {
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 12px 28px rgba(184, 81, 53, .26);
}

a[href^="https://wa.me/393488616136"]::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background: url("assets/whatsapp.svg") center / contain no-repeat;
}

.whatsapp-link {
  background: #178f4a;
  box-shadow: 0 12px 28px rgba(23, 143, 74, .24);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(255,255,255,.16);
}

.btn-secondary.dark {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 16, 10, .86), rgba(24, 16, 10, .48) 45%, rgba(24, 16, 10, .18)),
    linear-gradient(0deg, rgba(24, 16, 10, .38), transparent 38%);
}

.hero-content {
  align-self: end;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(58px, 9vw, 128px);
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 70px);
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-meta span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 330px) 1fr;
  gap: 54px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading.compact {
  display: block;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 28px;
  align-items: stretch;
}

.intro-copy {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 18px;
}

.intro-copy p:last-child { margin-bottom: 0; }

.facts {
  display: grid;
  gap: 12px;
}

.facts div,
.nearby-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.facts div:first-child,
.nearby-list div:first-child {
  border-radius: 8px 8px 0 0;
}

.facts div:last-child,
.nearby-list div:last-child {
  border-bottom: 0;
  border-radius: 0 0 8px 8px;
}

.facts span,
.nearby-list span {
  color: var(--muted);
  text-align: right;
}

.gallery {
  width: 100%;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background: #171412;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #2a221d;
  cursor: pointer;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

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

.service-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--terracotta);
  font-weight: 900;
}

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

.location {
  width: 100%;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background: var(--olive);
}

.location-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  color: #fff;
}

.location-panel p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.map-link {
  margin-top: 12px;
  color: var(--ink);
  background: #fff;
}

.nearby-list div {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
}

.nearby-list span {
  color: rgba(255,255,255,.76);
}

.direct-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #251b16, #893a28);
  box-shadow: var(--shadow);
}

.direct-card p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255,255,255,.82);
}

.direct-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 44px max(20px, calc((100% - 1180px) / 2));
  color: #fff;
  background: #171412;
}

.footer h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

.footer p {
  margin-bottom: 4px;
  color: rgba(255,255,255,.68);
}

.footer-actions a {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(15, 11, 9, .86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255,255,255,.12);
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 250, 244, .96);
    box-shadow: 0 18px 50px rgba(24,16,10,.18);
  }

  .nav.is-open { display: flex; }
  .nav a { padding: 14px; }
  .ghost-link { display: none; }
  .menu-toggle { display: block; }

  .hero-content {
    width: min(100% - 32px, 720px);
    padding-bottom: 54px;
  }

  .cta-row,
  .direct-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .whatsapp-link {
    width: 100%;
  }

  .section {
    width: calc(100% - 32px);
    padding: 64px 0;
  }

  .section-heading,
  .intro-grid,
  .location-panel,
  .direct-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .gallery-item.large {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 116px;
    line-height: 1.1;
  }

  .whatsapp-link {
    width: auto;
    padding: 0 12px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-media img {
    min-height: 88vh;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-meta span {
    width: 100%;
  }

  .intro-copy {
    padding: 24px;
    font-size: 16px;
  }

  .facts div,
  .nearby-list div {
    flex-direction: column;
    gap: 6px;
  }

  .facts span,
  .nearby-list span {
    text-align: left;
  }

  .gallery-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 235px;
  }

  .service-grid article {
    min-height: auto;
  }

  .footer-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
