:root {
  --ink: #111111;
  --muted: #62615d;
  --paper: #f4f0e8;
  --panel: #fffdf8;
  --line: rgba(17, 17, 17, 0.14);
  --gold: #c49a4f;
  --deep: #090909;
  --charcoal: #191816;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0 5vw;
  color: var(--white);
  background: rgba(9, 9, 9, 0.94);
  border-bottom: 1px solid rgba(196, 154, 79, 0.26);
}

.brand,
.primary-nav,
.action-row,
.footer-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--gold);
  font-size: 0.9rem;
}

.primary-nav {
  gap: 1.3rem;
  font-size: 0.92rem;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--white);
}

.nav-cta {
  min-height: 44px;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(196, 154, 79, 0.68);
  color: var(--gold) !important;
}

.poster-hero {
  background: var(--deep);
}

.poster-hero img,
.footer-poster {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.intro-panel {
  width: min(1180px, 90vw);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.4rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0;
}

.intro-panel p:not(.eyebrow),
.section-copy p:not(.eyebrow),
.service-list p,
.service-detail p,
.standards-list p,
.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.action-row {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
}

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

.button-dark {
  color: var(--white);
  background: var(--charcoal);
}

.button-whatsapp {
  color: var(--white);
  background: #1f7a45;
}

.proof-band {
  width: min(1180px, 90vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 auto;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-band div {
  padding: 1.35rem;
  background: var(--panel);
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band span {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(2rem, 5vw, 4.8rem);
  align-items: center;
}

.editorial-grid-reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.image-panel {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-copy p:not(.eyebrow) {
  margin-top: 1.15rem;
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--charcoal);
  font-weight: 700;
  text-underline-offset: 5px;
}

.service-editorial > h2 {
  max-width: 920px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--line);
}

.service-list article,
.service-detail article,
.standards-list article {
  padding: clamp(1.5rem, 3vw, 2.3rem);
  background: var(--panel);
}

.service-list article {
  min-height: 280px;
}

.service-list span,
.service-detail span {
  color: var(--gold);
  font-weight: 700;
}

.service-list h3 {
  margin-top: 3.5rem;
}

.service-list p,
.service-detail p,
.standards-list p {
  margin-top: 0.9rem;
}

.cta-section {
  width: min(1180px, 90vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: clamp(1.7rem, 4vw, 3rem);
  color: var(--white);
  background: var(--charcoal);
}

.cta-section h2 {
  max-width: 780px;
}

.cta-section .button {
  margin-top: 1.4rem;
}

.cta-contact {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.cta-contact a {
  color: var(--gold);
  font-weight: 700;
  text-underline-offset: 4px;
}

.cta-qr {
  width: min(220px, 100%);
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.cta-qr .qr-image {
  width: 100%;
  margin-bottom: 0.8rem;
  border-width: 8px;
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 5vw;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 9, 9, 0.96), rgba(35, 31, 25, 0.9)),
    var(--deep);
}

.page-hero h1,
.page-hero p {
  width: min(980px, 90vw);
}

.page-hero p {
  max-width: 690px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
}

.service-detail,
.standards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.standards-list {
  grid-template-columns: repeat(4, 1fr);
}

.service-detail h2,
.standards-list h2 {
  margin-top: 0.9rem;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
}

.site-footer {
  background: var(--deep);
}

.footer-poster {
  display: none;
}

.footer-nav {
  width: min(1180px, 90vw);
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin: 0 auto;
  padding: 1.2rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(196, 154, 79, 0.26);
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--white);
}

.active-footer {
  width: min(1180px, 90vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
  color: var(--white);
}

.active-footer div {
  display: grid;
  gap: 0.75rem;
}

.footer-heading {
  margin-bottom: 0.4rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.active-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.active-footer a:hover {
  color: var(--white);
}

.qr-feature {
  width: min(1180px, 90vw);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: clamp(1.7rem, 4vw, 3rem);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.qr-feature h2 {
  max-width: 760px;
}

.qr-feature p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.qr-tile {
  display: block;
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.qr-tile img {
  width: 100%;
  height: auto;
}

.qr-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(17, 19, 19, 0.96), rgba(38, 53, 47, 0.86)),
    var(--deep);
}

.qr-wrap {
  width: min(560px, 100%);
}

.qr-wrap-wide {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.qr-card {
  padding: clamp(1.5rem, 5vw, 3rem);
  color: var(--ink);
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.qr-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.qr-card .brand-mark {
  border-color: var(--line);
}

.qr-card h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(2rem, 7vw, 3.4rem);
}

.qr-image {
  width: min(360px, 100%);
  margin: 0 auto;
  border: 12px solid var(--white);
  box-shadow: 0 12px 30px rgba(17, 19, 19, 0.12);
}

.qr-card p {
  margin-top: 1.4rem;
  color: var(--muted);
  word-break: break-word;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 5vw;
  }

  .primary-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .intro-panel,
  .proof-band,
  .editorial-grid,
  .editorial-grid-reverse,
  .service-list,
  .service-detail,
  .standards-list {
    grid-template-columns: 1fr;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .qr-tile {
    width: min(260px, 100%);
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 1rem;
  }

  .primary-nav {
    font-size: 0.86rem;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .poster-hero img,
  .footer-poster {
    min-height: 0;
  }
}

@media print {
  .qr-page {
    min-height: auto;
    background: var(--white);
  }

  .qr-card {
    box-shadow: none;
  }
}

.qr-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.qr-feature p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.legal-content {
  width: min(900px, 90vw);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.legal-content a {
  color: var(--charcoal);
  font-weight: 700;
  text-underline-offset: 4px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 30;
  width: min(940px, calc(100vw - 2rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid rgba(196, 154, 79, 0.4);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 0.2rem;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.94rem;
}

.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-actions .button {
  cursor: pointer;
  border: 0;
  font-family: inherit;
}

.booking-section {
  width: min(980px, 90vw);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.booking-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--panel);
  box-shadow: var(--shadow);
}

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

.booking-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .qr-feature {
    grid-template-columns: 1fr;
  }

  .qr-wrap-wide {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-actions,
  .cookie-actions .button,
  .form-grid,
  .active-footer {
    width: 100%;
  }

  .form-grid,
  .active-footer {
    grid-template-columns: 1fr;
  }
}
