﻿:root {
  --bg: #122b27;
  --bg-soft: #173732;
  --card: #1d433d;
  --text: #f5f1e8;
  --text-soft: #d8d0c2;
  --line: #2f5750;
  --accent: #c4a66d;
  --accent-dark: #8c6f3a;
  --whatsapp: #2ecc71;
  --whatsapp-ink: #08361c;
  --max: 1180px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Lora", Georgia, serif;
  line-height: 1.65;
}

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

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

main {
  min-height: 55vh;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.topbar .container {
  min-height: 2.1rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(18, 43, 39, 0.9);
  border-bottom: 1px solid rgba(47, 87, 80, 0.65);
}

.header-row {
  min-height: 5.3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.logo img {
  height: 54px;
  width: auto;
}

.site-header .logo {
  display: inline-flex;
  align-items: center;
}

.nav {
  display: flex;
  gap: 1.35rem;
  align-items: center;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav a {
  font-size: 0.69rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
}

.nav a:hover,
.nav a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 3px auto;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.mobile-panel nav {
  display: grid;
  gap: 0;
}

.mobile-panel a {
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(47, 87, 80, 0.65);
  font-size: 1.1rem;
}

.site-cta-strip {
  border-top: 1px solid rgba(47, 87, 80, 0.6);
}

.site-cta-strip .container {
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.tiny-link {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--text-soft);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
  margin: 0;
  font-weight: 500;
}

.hero {
  background: var(--bg-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: min(86vh, 760px);
}

.hero-copy {
  padding: 3.4rem 0;
  display: flex;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
  margin: 1rem 0;
}

.hero-copy p {
  max-width: 42ch;
  color: var(--text-soft);
  margin-bottom: 1.8rem;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.btn-outline {
  border: 1px solid var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--whatsapp-ink);
  border: 1px solid #1ead5f;
}

.btn-whatsapp:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.section {
  padding: 4.8rem 0;
}

.section.alt {
  background: var(--bg-soft);
}

.section.center {
  text-align: center;
}

.section p {
  color: var(--text-soft);
}

.lead {
  max-width: 70ch;
}

.business-notice {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0f2421;
}

.business-notice .container {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.notice-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.6rem;
  align-items: start;
}

.notice-grid h2 {
  margin: 0.55rem 0 0.8rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.identity-list {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.identity-list div {
  border-bottom: 1px dashed rgba(47, 87, 80, 0.8);
  padding-bottom: 0.65rem;
}

.identity-list dt {
  color: var(--accent);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.identity-list dd {
  margin: 0.2rem 0 0;
  color: var(--text-soft);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.14);
  padding: 1rem;
}

.contact-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.cards {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.cards.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.14);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.stat .num {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.two {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

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

.figure-stack {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, 1fr);
}

.figure-stack img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.figure-stack .wide {
  grid-column: span 2;
}

.list-clean {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(47, 87, 80, 0.65);
}

.step-list {
  display: grid;
  gap: 1.8rem;
  margin-top: 2rem;
}

.step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.step .n {
  color: var(--accent);
  font-size: 2.2rem;
  line-height: 0.9;
  font-family: "Playfair Display", Georgia, serif;
}

.faq {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid rgba(47, 87, 80, 0.65);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.faq p {
  margin: 0.9rem 0 0;
}

.cta {
  background: #0f2421;
  text-align: center;
}

.cta .container {
  padding-top: 4.6rem;
  padding-bottom: 4.6rem;
}

.cta h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0.7rem 0 1rem;
}

.site-footer {
  margin-top: 4rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.2rem;
  padding: 3rem 0;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.footer-grid li {
  padding: 0.2rem 0;
}

.footer-grid small,
.footer-grid address,
.footer-grid p,
.footer-grid li a {
  color: var(--text-soft);
}

.footer-grid address {
  font-style: normal;
}

.footer-legal {
  border-top: 1px solid rgba(47, 87, 80, 0.8);
  font-size: 0.78rem;
  color: var(--text-soft);
}

.footer-legal .container {
  padding: 0.9rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.legal-content h2 {
  margin-top: 1.7rem;
  margin-bottom: 0.6rem;
  font-size: 1.55rem;
}

.legal-content ul {
  margin: 0.6rem 0;
}

.gallery-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-grid figcaption {
  margin-top: 0.4rem;
  font-size: 0.7rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .header-row {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }

  body.is-open .mobile-panel {
    max-height: 75vh;
  }

  .site-cta-strip {
    display: none;
  }

  .hero-grid,
  .grid.two,
  .notice-grid,
  .contact-methods,
  .footer-grid,
  .cards.cols-3,
  .grid.three,
  .stat-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 48vh;
  }

  .hero-copy {
    padding: 2.6rem 0;
  }

  .topbar .container {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
  }

  .topbar .container span:nth-child(2) {
    display: none;
  }

  .footer-legal .container {
    flex-direction: column;
  }
}
