:root {
  --ink: #17202a;
  --ink-soft: #2a3745;
  --muted: #66717e;
  --line: #e8e2d6;
  --surface: #f6f7f4;
  --surface-warm: #fbf7ee;
  --white: #ffffff;
  --gold: #c89a48;
  --gold-dark: #a5782f;
  --green: #447566;
  --shadow: 0 18px 45px rgba(23, 32, 42, 0.12);
  --shadow-soft: 0 12px 30px rgba(23, 32, 42, 0.08);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-height);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 226, 214, 0.7);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(23, 32, 42, 0.08);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 13px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: color 160ms ease, background 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  color: var(--ink);
  background: var(--surface-warm);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 680px;
  height: 86vh;
  max-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-media.is-placeholder {
  display: grid;
  place-items: center;
  background: var(--ink);
}

.hero-media.is-placeholder::after,
.image-shell.is-placeholder::after {
  content: attr(data-placeholder);
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  color: var(--ink);
  text-align: center;
  font-weight: 700;
  background: repeating-linear-gradient(135deg, #f8f3e9 0, #f8f3e9 12px, #efe5d2 12px, #efe5d2 24px);
}

.hero-media.is-placeholder::after {
  color: var(--white);
  background: var(--ink-soft);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(23, 32, 42, 0.86), rgba(23, 32, 42, 0.58) 48%, rgba(23, 32, 42, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.6rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.btn-icon,
.btn-icon svg {
  width: 18px;
  height: 18px;
}

.btn svg {
  fill: currentColor;
}

.btn-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(200, 154, 72, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #d6aa5f;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.btn-whatsapp {
  color: var(--white);
  background: var(--green);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #376858;
}

.section {
  padding: 92px 0;
}

.section:nth-of-type(odd):not(.hero) {
  background: var(--white);
}

.section-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.section-copy h2,
.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p {
  color: var(--muted);
}

.section-copy p:last-child,
.section-heading p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.feature-grid,
.service-list,
.contact-grid {
  display: grid;
  gap: 16px;
}

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

.info-card,
.service-card,
.contact-card {
  min-width: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.info-card h3,
.service-card h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.info-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.gallery-section {
  background: var(--surface-warm);
}

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

.gallery-item {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  outline: none;
}

.image-shell {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.03);
}

.gallery-item > span:last-child {
  display: block;
  padding: 14px 16px 16px;
  font-weight: 800;
}

.wifi-section {
  background: var(--white);
}

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

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 18px;
  align-items: start;
}

.service-card h3 {
  margin-top: 0;
}

.service-card p {
  grid-column: 2;
}

.map-shell {
  min-height: 380px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.map-shell iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
}

.map-placeholder {
  min-height: 380px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 28px;
  color: var(--ink-soft);
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
    repeating-linear-gradient(0deg, #f4efe5 0, #f4efe5 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, #f4efe5 0, #f4efe5 1px, transparent 1px, transparent 32px);
}

.map-pin {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border: 8px solid #f4dfb7;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 11px;
  background: var(--ink);
  border-radius: 50%;
}

.contact-section {
  background: var(--ink);
  color: var(--white);
}

.contact-section .section-copy h2,
.contact-section .section-copy p {
  color: var(--white);
}

.contact-section .section-copy p {
  opacity: 0.82;
}

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

.contact-card {
  color: var(--ink);
}

.contact-card a {
  color: var(--ink);
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--gold-dark);
  outline: none;
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-card a,
.contact-card span:not(.contact-label) {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #111820;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-content p {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.footer-content span {
  display: block;
  margin-top: 4px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--gold);
  outline: none;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 17px;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 800;
}

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

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #376858;
  outline: none;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 90;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 32, 0.88);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(86vh, 760px);
  display: grid;
  gap: 12px;
  justify-items: center;
}

.lightbox-panel img {
  width: 100%;
  max-height: calc(86vh - 86px);
  object-fit: contain;
  background: var(--ink);
  border-radius: var(--radius);
}

.lightbox-panel p {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
}

.lightbox-close {
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 44px;
  height: 54px;
  font-size: 2.2rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    transition: transform 200ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .hero {
    min-height: 620px;
    height: auto;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .section-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-overlay {
    background: rgba(23, 32, 42, 0.72);
  }

  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.15;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .contact-section .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 1.78rem;
  }

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

  .service-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card p {
    grid-column: auto;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .back-to-top {
    right: 14px;
    bottom: 78px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-close {
    top: 6px;
    right: 6px;
  }

  .lightbox-nav {
    width: 38px;
    height: 48px;
  }
}
