:root {
  --font-logo: "Tangerine", cursive;
  --font-display: "Marcellus", serif;
  --font-ui: "Inter", sans-serif;

  --color-primary: #12373a;
  --color-accent: #aa8540;
  --color-background: #f5f1e8;
  --color-surface: #fffdf8;
  --color-support: #879488;
  --color-muted: #5f6c63;
  --color-mist: #e8eee8;
  --color-line: #d8c7a7;
  --color-night: #05070d;
  --color-night-soft: #0f1724;

  --radius-card: 8px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 56px rgba(18, 55, 58, 0.12);
  --shadow-deep: 0 30px 90px rgba(5, 10, 12, 0.28);
  --page-x: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-primary);
  font-family: var(--font-ui);
  background:
    radial-gradient(circle at 18% 0%, rgba(135, 148, 136, 0.2), transparent 360px),
    linear-gradient(180deg, var(--color-background), #eee6d8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(170, 133, 64, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 55, 58, 0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, black 0 68%, transparent);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  padding: 10px 12px 10px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  color: #fffdf8;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius-card);
  background: rgba(5, 10, 13, 0.36);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.site-header.is-light {
  position: sticky;
  left: auto;
  color: var(--color-primary);
  border-color: rgba(216, 199, 167, 0.72);
  background: rgba(255, 253, 248, 0.82);
  margin: 18px auto 0;
  transform: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  width: max-content;
  text-decoration: none;
}

.brand-wordmark {
  font-family: var(--font-logo);
  font-size: 2.32rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-nav a,
.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
}

.site-nav a {
  color: inherit;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 253, 248, 0.14);
  outline: none;
}

.is-light .site-nav a:hover,
.is-light .site-nav a:focus-visible {
  background: rgba(18, 55, 58, 0.08);
}

.nav-cta {
  justify-self: end;
  color: var(--color-night);
  background: #fffdf8;
}

.is-light .nav-cta {
  color: var(--color-surface);
  background: var(--color-primary);
}

.whatsapp-link {
  gap: 8px;
}

.whatsapp-link svg,
.whatsapp-mark svg,
.social-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: 128px var(--page-x) 52px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fffdf8;
  background: var(--color-night);
}

.hero-image,
.hero-vignette,
.hero-mist {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 54%;
  opacity: 0.86;
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.88), rgba(5, 7, 13, 0.56) 46%, rgba(5, 7, 13, 0.24)),
    linear-gradient(0deg, rgba(5, 7, 13, 0.78), rgba(5, 7, 13, 0.12) 48%, rgba(5, 7, 13, 0.36)),
    radial-gradient(circle at 82% 18%, rgba(214, 191, 131, 0.2), transparent 220px);
}

.hero-mist {
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(232, 238, 232, 0.34), transparent 36%),
    radial-gradient(ellipse at 56% 52%, rgba(255, 253, 248, 0.22), transparent 32%),
    linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.16), transparent);
  filter: blur(20px);
  opacity: 0.54;
  transform: translateY(18vh);
}

.hero-mist-two {
  opacity: 0.28;
  transform: translate(-10vw, 34vh) rotate(-2deg);
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 36px;
  align-items: end;
}

.hero-content {
  width: min(640px, 100%);
  min-width: 0;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.editorial-copy h2,
.section-heading h2,
.contact-strip h2,
.contact-hero h1,
.info-columns h2,
.social-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 640px;
  margin-top: 14px;
  font-size: clamp(3.4rem, 6.2vw, 4.95rem);
  line-height: 0.95;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.15rem;
  line-height: 1.75;
}

.hero-actions,
.contact-actions,
.contact-card-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--color-surface);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--color-primary);
}

.button-secondary {
  color: var(--color-primary);
  border: 1px solid rgba(170, 133, 64, 0.74);
  background: var(--color-surface);
}

.button-on-dark {
  color: #fffdf8;
  border-color: rgba(255, 253, 248, 0.46);
  background: rgba(255, 253, 248, 0.08);
}

.hero-panel {
  width: min(100%, 340px);
  justify-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: var(--radius-card);
  background: rgba(5, 10, 13, 0.36);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-panel p {
  margin: 12px 0 18px;
  color: rgba(255, 253, 248, 0.74);
  line-height: 1.7;
}

.hero-panel a,
.text-link {
  color: inherit;
  font-weight: 800;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 5px;
}

.section-grid,
.editorial-split,
.gallery-section,
.contact-strip,
.site-footer,
.contact-hero,
.contact-board,
.info-columns,
.social-panel {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.intro {
  padding: 88px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 54px;
  align-items: start;
}

.intro h2,
.editorial-copy h2,
.section-heading h2,
.contact-strip h2,
.info-columns h2,
.social-panel h2 {
  margin-top: 12px;
  font-size: 2.6rem;
  line-height: 1.08;
}

.intro-copy p,
.editorial-copy p,
.photo-card figcaption,
.contact-strip,
.contact-hero p,
.check-list,
.contact-card p {
  color: var(--color-muted);
  line-height: 1.78;
}

.intro-copy p {
  margin: 0 0 16px;
  font-size: 1.05rem;
}

.feature-band {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 88px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.feature-band article {
  padding: 28px 28px 30px;
  border-right: 1px solid var(--color-line);
}

.feature-band article:last-child {
  border-right: 0;
}

.feature-band span {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.feature-band h3,
.contact-card h2 {
  margin: 18px 0 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
}

.feature-band p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.editorial-split {
  padding: 0 0 96px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.image-frame,
.photo-card,
.contact-photo {
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.image-frame img,
.photo-card img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame.tall {
  height: 640px;
}

.editorial-copy {
  max-width: 560px;
}

.editorial-copy p {
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
}

.gallery-section {
  padding: 92px 0 104px;
  border-top: 1px solid rgba(216, 199, 167, 0.72);
}

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

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 300px;
  gap: 18px;
}

.photo-card {
  position: relative;
  margin: 0;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 13, 0.54), transparent 45%);
}

.photo-card img {
  transition: transform 600ms ease;
}

.photo-card:hover img {
  transform: scale(1.035);
}

.photo-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fffdf8;
  font-weight: 800;
}

.photo-wide {
  grid-row: span 2;
}

.contact-strip {
  margin-bottom: 86px;
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #fffdf8;
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(18, 55, 58, 0.98), rgba(15, 23, 36, 0.96)),
    radial-gradient(circle at 88% 12%, rgba(170, 133, 64, 0.34), transparent 260px);
  box-shadow: var(--shadow-soft);
}

.contact-strip h2 {
  color: #fffdf8;
}

.contact-strip .section-kicker {
  color: #d6bf83;
}

.site-footer {
  padding: 34px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(216, 199, 167, 0.72);
}

.footer-brand small {
  display: block;
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--color-muted);
  font-weight: 800;
  text-decoration: none;
}

.contact-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(170, 133, 64, 0.16), transparent 360px),
    linear-gradient(180deg, var(--color-mist), var(--color-background) 42%, #eee6d8);
}

.contact-hero {
  padding: 82px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 54px;
  align-items: center;
}

.contact-hero h1 {
  margin-top: 14px;
  font-size: 4.25rem;
  line-height: 1;
}

.contact-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1.12rem;
}

.contact-photo {
  height: 430px;
}

.contact-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-card {
  padding: 34px;
  border: 1px solid rgba(216, 199, 167, 0.78);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-soft);
}

.primary-contact {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(232, 238, 232, 0.86)),
    var(--color-surface);
}

.whatsapp-contact-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.whatsapp-mark {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-surface);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 253, 248, 0.2), transparent 34%),
    var(--color-primary);
  box-shadow: 0 20px 44px rgba(18, 55, 58, 0.18);
}

.whatsapp-mark svg {
  width: 42px;
  height: 42px;
}

.contact-card h2 {
  margin-top: 14px;
  font-size: 2.05rem;
}

.contact-card-actions {
  margin-top: 24px;
}

.map-panel {
  width: min(1180px, calc(100% - 48px));
  margin: 72px auto 0;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid rgba(216, 199, 167, 0.78);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow-soft);
}

.map-copy {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.map-copy h2 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.map-copy p:not(.section-kicker) {
  margin: 18px 0 24px;
  color: var(--color-muted);
  line-height: 1.75;
}

.map-frame {
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-mist);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.info-columns,
.social-panel {
  margin-top: 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.check-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  background: rgba(255, 253, 248, 0.62);
}

.social-panel {
  margin-bottom: 88px;
  padding: 38px;
  border-radius: var(--radius-card);
  background: rgba(18, 55, 58, 0.08);
}

.social-actions {
  justify-content: flex-end;
  align-self: center;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .intro,
  .editorial-split,
  .contact-strip,
  .contact-hero,
  .info-columns,
  .map-panel,
  .social-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88svh;
    align-items: end;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    width: 100%;
    justify-self: stretch;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-band article {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .feature-band article:last-child {
    border-bottom: 0;
  }

  .image-frame.tall {
    height: 520px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .photo-wide {
    grid-row: auto;
  }

  .contact-actions,
  .social-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --page-x: 16px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 56px;
    gap: 10px;
    padding: 7px 8px 7px 12px;
  }

  .brand-wordmark {
    font-size: 1.86rem;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 34px;
  }

  .hero h1,
  .contact-hero h1 {
    font-size: 2.82rem;
  }

  .hero-copy,
  .contact-hero p {
    font-size: 1rem;
  }

  .section-grid,
  .editorial-split,
  .gallery-section,
  .contact-strip,
  .site-footer,
  .contact-hero,
  .contact-board,
  .info-columns,
  .map-panel,
  .social-panel,
  .feature-band {
    width: min(100% - 28px, 560px);
  }

  .intro {
    padding-top: 62px;
  }

  .intro h2,
  .editorial-copy h2,
  .section-heading h2,
  .contact-strip h2,
  .info-columns h2,
  .social-panel h2 {
    font-size: 2.05rem;
  }

  .feature-band {
    margin-bottom: 62px;
  }

  .feature-band article,
  .contact-card,
  .contact-strip,
  .map-copy,
  .social-panel {
    padding: 24px;
  }

  .map-panel {
    padding: 12px;
  }

  .map-copy h2 {
    font-size: 2.05rem;
  }

  .map-frame {
    min-height: 320px;
  }

  .editorial-split,
  .gallery-section {
    padding-bottom: 68px;
  }

  .image-frame.tall,
  .contact-photo {
    height: 420px;
  }

  .photo-grid {
    grid-auto-rows: 320px;
  }

  .contact-board {
    grid-template-columns: 1fr;
  }

  .whatsapp-contact-card {
    grid-template-columns: 1fr;
  }

  .whatsapp-mark {
    width: 72px;
    height: 72px;
  }

  .whatsapp-mark svg {
    width: 34px;
    height: 34px;
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
  }

  .site-footer nav {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 390px) {
  .brand-wordmark {
    font-size: 1.62rem;
  }

  .nav-cta {
    gap: 6px;
    padding-inline: 10px;
  }

  .hero h1,
  .contact-hero h1 {
    font-size: 2.48rem;
  }

  .hero-actions,
  .contact-actions,
  .contact-card-actions,
  .social-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
