* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  background: #f6f1e8;
  color: #111315;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #e2c88c;
  outline-offset: 3px;
}

::selection {
  background: #c7a35a;
  color: #111315;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7em;
  color: inherit;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.9rem);
}

h2 {
  font-size: clamp(2.1rem, 4.7vw, 4rem);
}

h3 {
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1.15rem;
}

ul,
ol {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 0.55rem;
  background: #c7a35a;
  color: #111315;
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 2rem), 1180px);
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 820px);
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
}

.section-compact {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-dark {
  background: #111315;
  color: #f6f1e8;
}

.section-green {
  background: #18372f;
  color: #f6f1e8;
}

.section-burgundy {
  background: #541e2b;
  color: #f6f1e8;
}

.section-white {
  background: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: #541e2b;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.3rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow,
.section-green .eyebrow,
.section-burgundy .eyebrow,
.hero .eyebrow,
.internal-hero .eyebrow {
  color: #e2c88c;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading p {
  max-width: 720px;
  color: #6f716f;
  font-size: 1.06rem;
}

.section-dark .section-heading p,
.section-green .section-heading p,
.section-burgundy .section-heading p {
  color: rgba(246, 241, 232, 0.78);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #541e2b;
  font-weight: 800;
  text-underline-offset: 0.28em;
}

.text-link:hover {
  color: #18372f;
}

.btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.83rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #c7a35a;
  color: #111315;
  box-shadow: 0 12px 28px rgba(199, 163, 90, 0.23);
}

.btn-primary:hover {
  background: #e2c88c;
}

.btn-dark {
  background: #111315;
  color: #f6f1e8;
}

.btn-dark:hover {
  background: #18372f;
}

.btn-outline {
  border-color: rgba(246, 241, 232, 0.55);
  background: rgba(17, 19, 21, 0.18);
  color: #f6f1e8;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: #e2c88c;
  background: rgba(246, 241, 232, 0.1);
}

.btn-ghost {
  border-color: rgba(17, 19, 21, 0.23);
  background: transparent;
  color: #111315;
}

.btn-ghost:hover {
  border-color: #541e2b;
  color: #541e2b;
}

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

.badge-18 {
  display: inline-grid;
  width: 3.3rem;
  height: 3.3rem;
  place-items: center;
  border: 2px solid #c7a35a;
  border-radius: 50%;
  color: #e2c88c;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.age-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.1rem;
  color: rgba(246, 241, 232, 0.82);
  font-size: 0.86rem;
}

.age-note .badge-18 {
  width: 2.2rem;
  height: 2.2rem;
  font-size: 0.82rem;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 5rem;
  border-bottom: 1px solid rgba(246, 241, 232, 0.14);
  color: #f6f1e8;
  transition: height 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.is-solid {
  height: 4.35rem;
  border-bottom-color: rgba(17, 19, 21, 0.08);
  background: rgba(246, 241, 232, 0.96);
  color: #111315;
  box-shadow: 0 8px 28px rgba(17, 19, 21, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  position: relative;
  z-index: 1002;
  max-width: 12.5rem;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1rem, 2vw, 1.33rem);
  font-weight: 800;
  line-height: 1.03;
}

.site-logo span {
  display: block;
  color: #e2c88c;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header.scrolled .site-logo span,
.site-header.is-solid .site-logo span {
  color: #541e2b;
}

.primary-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.82rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 760;
}

.nav-link:hover,
.dropdown-toggle:hover,
.nav-link[aria-current="page"],
.dropdown-toggle.is-active {
  background: rgba(199, 163, 90, 0.18);
  color: #e2c88c;
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .dropdown-toggle:hover,
.site-header.scrolled .nav-link[aria-current="page"],
.site-header.scrolled .dropdown-toggle.is-active,
.site-header.is-solid .nav-link:hover,
.site-header.is-solid .dropdown-toggle:hover,
.site-header.is-solid .nav-link[aria-current="page"],
.site-header.is-solid .dropdown-toggle.is-active {
  color: #541e2b;
}

.nav-cta {
  margin-left: 0.45rem;
}

.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  min-width: 17rem;
  margin: 0;
  padding: 0.65rem;
  transform: translate(-50%, 0.5rem);
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 1rem;
  background: #f6f1e8;
  box-shadow: 0 28px 70px rgba(17, 19, 21, 0.16);
  color: #111315;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item-dropdown.open .dropdown-menu {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 0.78rem 0.85rem;
  border-radius: 0.55rem;
  color: #111315;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 730;
}

.dropdown-menu a:hover,
.dropdown-menu a[aria-current="page"] {
  background: #ece3d6;
  color: #541e2b;
}

.mobile-toggle {
  position: relative;
  z-index: 1002;
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  position: absolute;
  left: 50%;
  width: 1.2rem;
  height: 2px;
  transform: translateX(-50%);
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.mobile-toggle::before {
  top: 1rem;
}

.mobile-toggle span {
  top: 1.43rem;
}

.mobile-toggle::after {
  top: 1.86rem;
}

.mobile-toggle[aria-expanded="true"]::before {
  top: 1.43rem;
  transform: translateX(-50%) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"]::after {
  top: 1.43rem;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-legal {
  display: none;
}

.hero-home {
  background-image: linear-gradient(90deg, rgba(12, 15, 17, 0.86) 0%, rgba(12, 15, 17, 0.57) 55%, rgba(12, 15, 17, 0.34) 100%), url("../images/home/home-hero-argentina-night.webp");
}

.hero-about {
  background-image: linear-gradient(90deg, rgba(12, 15, 17, 0.85), rgba(12, 15, 17, 0.42)), url("../images/about/about-hero-buenos-aires-night.webp");
}

.hero-alvear {
  background-image: linear-gradient(90deg, rgba(12, 15, 17, 0.88), rgba(12, 15, 17, 0.36)), url("../images/home/alvear-palace-exterior.webp");
}

.hero-gran-melia {
  background-image: linear-gradient(90deg, rgba(12, 15, 17, 0.86), rgba(12, 15, 17, 0.34)), url("../images/home/gran-melia-iguazu-exterior.webp");
}

.hero-llao-llao {
  background-image: linear-gradient(90deg, rgba(12, 15, 17, 0.86), rgba(12, 15, 17, 0.32)), url("../images/home/llao-llao-resort-exterior.webp");
}

.hero,
.internal-hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  align-items: end;
  padding: calc(5rem + 5rem) 0 clamp(4.5rem, 9vw, 8rem);
  background-position: center;
  background-size: cover;
  color: #f6f1e8;
}

.hero::after,
.internal-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(17, 19, 21, 0.68), transparent);
  content: "";
  pointer-events: none;
}

.hero-content,
.internal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content p,
.internal-hero-content p {
  max-width: 690px;
  color: rgba(246, 241, 232, 0.85);
  font-size: clamp(1.02rem, 2.2vw, 1.28rem);
}

.hero-home h1 {
  max-width: 980px;
}

.internal-hero {
  min-height: 72svh;
}

.internal-hero.small {
  min-height: 54svh;
  background: radial-gradient(circle at 80% 10%, rgba(199, 163, 90, 0.25), transparent 35%), linear-gradient(120deg, #111315, #18372f);
}

.internal-hero.small::before {
  position: absolute;
  top: 18%;
  right: 8%;
  width: min(34vw, 26rem);
  aspect-ratio: 1;
  border: 1px solid rgba(199, 163, 90, 0.32);
  border-radius: 50%;
  content: "";
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 1.4rem;
  padding: 0;
  color: rgba(246, 241, 232, 0.76);
  font-size: 0.82rem;
  list-style: none;
}

.breadcrumbs a {
  color: inherit;
  text-underline-offset: 0.25em;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: #e2c88c;
  content: "/";
}

.split-layout {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.split-layout.reverse .media-frame {
  order: -1;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  box-shadow: 0 28px 70px rgba(17, 19, 21, 0.16);
}

.media-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.media-frame img {
  min-height: 26rem;
  object-fit: cover;
}

.media-caption {
  margin-top: 0.75rem;
  color: #6f716f;
  font-size: 0.78rem;
}

.value-grid,
.card-grid,
.standard-grid,
.profile-grid,
.package-grid,
.feature-grid {
  display: grid;
  gap: 1.2rem;
}

.value-grid {
  margin-top: 2.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-item {
  padding-top: 1.2rem;
  border-top: 1px solid #c7a35a;
}

.value-item i {
  margin-bottom: 0.7rem;
  color: #541e2b;
}

.value-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.08rem;
}

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

.hotel-card,
.package-card,
.standard-card,
.profile-card,
.info-card {
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 1.6rem;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(17, 19, 21, 0.08);
}

.hotel-card {
  display: flex;
  flex-direction: column;
}

.hotel-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.hotel-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.hotel-card:hover .hotel-card-image img {
  transform: scale(1.04);
}

.image-label {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.35rem 0.58rem;
  border-radius: 999px;
  background: rgba(17, 19, 21, 0.76);
  color: #f6f1e8;
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.hotel-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.location-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
  color: #541e2b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.icon-row {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-feature {
  display: grid;
  min-height: 4.5rem;
  place-items: center;
  padding: 0.55rem 0.25rem;
  border-radius: 0.65rem;
  background: #f6f1e8;
  color: #18372f;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 760;
  line-height: 1.25;
}

.icon-feature i {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.hotel-card .button-row {
  margin-top: auto;
}

.hotel-card .btn {
  flex: 1;
  padding-inline: 0.8rem;
}

.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 1.5rem 0 2.2rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid #c7a35a;
  border-radius: 0 0.55rem 0.55rem 0;
  background: rgba(199, 163, 90, 0.12);
  color: inherit;
  font-size: 0.9rem;
}

.notice-box i {
  margin-top: 0.2rem;
  color: #c7a35a;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.7rem;
}

.package-card::before {
  position: absolute;
  top: 0;
  right: 1.7rem;
  left: 1.7rem;
  height: 3px;
  background: #c7a35a;
  content: "";
}

.package-card ul {
  padding-left: 1.2rem;
}

.package-card li {
  margin-bottom: 0.48rem;
}

.package-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.route-layout {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: 0.9fr 1.1fr;
}

.route-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-timeline::before {
  position: absolute;
  top: 1.25rem;
  right: 12%;
  left: 12%;
  height: 1px;
  background: #c7a35a;
  content: "";
}

.route-stop {
  position: relative;
  padding: 3.2rem 1rem 0;
  text-align: center;
}

.route-stop::before {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateX(-50%);
  border: 3px solid #f6f1e8;
  border-radius: 50%;
  background: #c7a35a;
  box-shadow: 0 0 0 2px #c7a35a;
  content: "";
}

.route-stop span {
  display: block;
  margin-bottom: 0.4rem;
  color: #541e2b;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-list,
.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

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

.experience-list li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.experience-list i,
.check-list i {
  margin-top: 0.25rem;
  color: #c7a35a;
}

.cta-panel {
  display: grid;
  align-items: center;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.cta-panel .button-row {
  justify-content: flex-end;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline::before {
  position: absolute;
  top: 2rem;
  right: 8%;
  left: 8%;
  height: 1px;
  background: rgba(199, 163, 90, 0.6);
  content: "";
}

.timeline-item {
  position: relative;
  padding: 4.5rem 1.4rem 1.6rem;
  border: 1px solid rgba(17, 19, 21, 0.09);
  border-radius: 1rem;
  background: #ffffff;
}

.timeline-number {
  position: absolute;
  z-index: 2;
  top: 0.85rem;
  left: 1.4rem;
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 50%;
  background: #541e2b;
  color: #f6f1e8;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 800;
}

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

.standard-card,
.profile-card,
.info-card {
  padding: 1.45rem;
}

.standard-card i,
.info-card i {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(199, 163, 90, 0.16);
  color: #541e2b;
}

.profile-card blockquote {
  margin: 0 0 1.2rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.16rem;
  line-height: 1.5;
}

.profile-card cite {
  color: #6f716f;
  font-style: normal;
  font-size: 0.84rem;
  font-weight: 780;
}

.hotel-section {
  padding: clamp(4.3rem, 8vw, 7.6rem) 0;
}

.hotel-section:nth-of-type(even) {
  background: #ffffff;
}

.hotel-copy {
  max-width: 720px;
}

.hotel-fact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.fact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(17, 19, 21, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.79rem;
  font-weight: 760;
}

.contact-map-block {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #111315;
  color: #f6f1e8;
}

.contact-map-grid {
  display: grid;
  gap: 2.3rem;
  grid-template-columns: 0.78fr 1.22fr;
}

.contact-details {
  padding: 1.7rem;
  border: 1px solid rgba(246, 241, 232, 0.12);
  border-radius: 1.6rem;
  background: rgba(246, 241, 232, 0.05);
}

.contact-details address {
  margin-bottom: 1.3rem;
  font-style: normal;
}

.contact-details a:not(.btn) {
  color: #e2c88c;
  text-underline-offset: 0.25em;
}

.map-shell {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border-radius: 1.6rem;
  background: #24282b;
}

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

.map-placeholder {
  display: grid;
  min-height: 28rem;
  place-items: center;
  padding: 2rem;
  background: radial-gradient(circle at 80% 15%, rgba(199, 163, 90, 0.21), transparent 35%), linear-gradient(135deg, #202427, #14231f);
  text-align: center;
}

.map-placeholder-inner {
  max-width: 440px;
}

.map-placeholder i {
  margin-bottom: 1rem;
  color: #c7a35a;
  font-size: 2.6rem;
}

.policy-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 250px minmax(0, 1fr);
}

.policy-nav {
  position: sticky;
  top: 6rem;
  align-self: start;
  padding: 1.2rem;
  border: 1px solid rgba(17, 19, 21, 0.09);
  border-radius: 1rem;
  background: #ffffff;
}

.policy-nav strong {
  display: block;
  margin-bottom: 0.7rem;
}

.policy-nav a {
  display: block;
  padding: 0.35rem 0;
  color: #6f716f;
  text-decoration: none;
  font-size: 0.88rem;
}

.policy-nav a:hover {
  color: #541e2b;
}

.policy-content {
  min-width: 0;
}

.policy-content>section {
  scroll-margin-top: 6rem;
  margin-bottom: 3.2rem;
}

.policy-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.policy-content h3 {
  font-size: 1.3rem;
}

.policy-content a {
  color: #541e2b;
  overflow-wrap: anywhere;
}

.policy-highlight {
  margin: 2rem 0;
  padding: 1.35rem;
  border: 1px solid rgba(84, 30, 43, 0.16);
  border-radius: 1rem;
  background: rgba(84, 30, 43, 0.06);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.3rem;
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 0.75fr 1.25fr;
}

.contact-info-stack {
  display: grid;
  gap: 1rem;
  align-self: start;
}

.contact-info-stack .info-card a {
  color: #541e2b;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: clamp(1.2rem, 4vw, 2.4rem);
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 1.6rem;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(17, 19, 21, 0.08);
}

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

.form-field {
  min-width: 0;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.field-label {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.required {
  color: #541e2b;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid #b9b7b1;
  border-radius: 0.55rem;
  background: #ffffff;
  color: #111315;
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #9b2c2c;
  box-shadow: 0 0 0 2px rgba(155, 44, 44, 0.13);
}

.field-error {
  min-height: 1.25rem;
  margin-top: 0.28rem;
  color: #9b2c2c;
  font-size: 0.78rem;
  font-weight: 720;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.checkbox-field input {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  margin-top: 0.25rem;
}

.form-status {
  display: none;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.55rem;
  background: rgba(31, 107, 79, 0.1);
  color: #1f6b4f;
  font-weight: 760;
}

.form-status.show {
  display: block;
}

.site-footer {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  background: #0c0e0f;
  color: #f6f1e8;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.25fr 0.75fr 1fr 1fr;
}

.footer-brand p {
  max-width: 380px;
  color: rgba(246, 241, 232, 0.7);
}

.footer-title {
  margin-bottom: 0.8rem;
  color: #e2c88c;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(246, 241, 232, 0.76);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #e2c88c;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.footer-contact address {
  color: rgba(246, 241, 232, 0.76);
  font-style: normal;
}

.footer-responsible {
  display: grid;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3rem;
  padding: 1.4rem;
  border: 1px solid rgba(199, 163, 90, 0.24);
  border-radius: 1rem;
  background: rgba(199, 163, 90, 0.06);
  grid-template-columns: auto 1fr auto;
}

.footer-responsible p {
  margin: 0;
  color: rgba(246, 241, 232, 0.78);
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(246, 241, 232, 0.09);
  color: rgba(246, 241, 232, 0.58);
  font-size: 0.76rem;
}

.footer-disclaimer {
  max-width: 790px;
}

.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #e2c88c;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.back-to-top {
  position: fixed;
  z-index: 800;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  transform: translateY(1rem);
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #541e2b;
  box-shadow: 0 10px 30px rgba(17, 19, 21, 0.08);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.back-to-top.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner {
  position: fixed;
  z-index: 1500;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: none;
  max-width: 760px;
  margin-inline: auto;
  padding: 1.1rem;
  border: 1px solid rgba(199, 163, 90, 0.38);
  border-radius: 1rem;
  background: rgba(17, 19, 21, 0.98);
  box-shadow: 0 28px 70px rgba(17, 19, 21, 0.16);
  color: #f6f1e8;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-content {
  display: grid;
  align-items: center;
  gap: 1rem;
  grid-template-columns: 1fr auto;
}

.cookie-banner p {
  margin: 0;
  color: rgba(246, 241, 232, 0.76);
  font-size: 0.85rem;
}

.cookie-banner a {
  color: #e2c88c;
}

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

.cookie-actions .btn {
  min-height: 2.55rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.78rem;
}

.modal-backdrop {
  position: fixed;
  z-index: 1600;
  inset: 0;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(7, 9, 10, 0.78);
  backdrop-filter: blur(8px);
}

.modal-backdrop.open {
  display: grid;
}

.cookie-modal {
  width: min(100%, 710px);
  max-height: min(88svh, 780px);
  overflow-y: auto;
  border-radius: 1.6rem;
  background: #f6f1e8;
  box-shadow: 0 28px 70px rgba(17, 19, 21, 0.16);
}

.modal-header,
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
}

.modal-header {
  position: sticky;
  z-index: 2;
  top: 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.09);
  background: #f6f1e8;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.7rem;
}

.modal-close {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid rgba(17, 19, 21, 0.2);
  border-radius: 50%;
  background: transparent;
  color: #111315;
}

.modal-body {
  padding: 1.3rem;
}

.consent-category {
  display: grid;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.09);
  grid-template-columns: 1fr auto;
}

.consent-category:last-child {
  border-bottom: 0;
}

.consent-category h3 {
  margin-bottom: 0.25rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.consent-category p {
  margin: 0;
  color: #6f716f;
  font-size: 0.82rem;
}

.switch {
  position: relative;
  display: inline-flex;
  width: 3.2rem;
  height: 1.8rem;
  flex: 0 0 auto;
}

.switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.switch-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #aaa9a5;
  transition: background 180ms ease;
}

.switch-track::after {
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(17, 19, 21, 0.25);
  content: "";
  transition: transform 180ms ease;
}

.switch input:checked+.switch-track {
  background: #18372f;
}

.switch input:checked+.switch-track::after {
  transform: translateX(1.4rem);
}

.switch input:disabled+.switch-track {
  background: #541e2b;
  opacity: 0.75;
}

.switch input:focus-visible+.switch-track {
  outline: 3px solid #c7a35a;
  outline-offset: 3px;
}

.modal-footer {
  position: sticky;
  z-index: 2;
  bottom: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(17, 19, 21, 0.09);
  background: #f6f1e8;
}

.reveal {
  transform: translateY(1.2rem);
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}

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

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

@media (max-width: 1050px) {
  .mobile-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: block;
    overflow-y: auto;
    padding: calc(5rem + 2rem) 1rem 2rem;
    transform: translateX(100%);
    background: #111315;
    color: #f6f1e8;
    transition: transform 260ms ease;
  }

  .primary-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    width: min(100%, 34rem);
    margin-inline: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    min-height: 3.4rem;
    justify-content: space-between;
    border-radius: 0;
    border-bottom: 1px solid rgba(246, 241, 232, 0.12);
    color: #f6f1e8;
    font-size: 1rem;
  }

  .nav-cta {
    width: 100%;
    margin: 1rem 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    transform: none;
    border: 0;
    border-radius: 0;
    background: rgba(246, 241, 232, 0.05);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-item-dropdown.open .dropdown-menu {
    display: block;
    transform: none;
  }

  .dropdown-menu a {
    padding-left: 1.4rem;
    color: rgba(246, 241, 232, 0.78);
  }

  .dropdown-menu a:hover,
  .dropdown-menu a[aria-current="page"] {
    background: rgba(199, 163, 90, 0.12);
    color: #e2c88c;
  }

  .site-header.scrolled .nav-link,
  .site-header.scrolled .dropdown-toggle,
  .site-header.is-solid .nav-link,
  .site-header.is-solid .dropdown-toggle {
    color: #f6f1e8;
  }

  .mobile-legal {
    display: block;
    width: min(100%, 34rem);
    margin: 1.8rem auto 0;
    color: rgba(246, 241, 232, 0.62);
    font-size: 0.8rem;
  }

  .mobile-legal a {
    display: inline-block;
    margin: 0.25rem 0.6rem 0.25rem 0;
    color: #e2c88c;
  }

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

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

@media (max-width: 820px) {

  .split-layout,
  .route-layout,
  .cta-panel,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .media-frame {
    order: 0;
  }

  .card-grid,
  .package-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .hotel-card {
    max-width: 620px;
    margin-inline: auto;
  }

  .route-timeline,
  .timeline {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .route-timeline::before,
  .timeline::before {
    top: 1rem;
    bottom: 1rem;
    left: 1.25rem;
    width: 1px;
    height: auto;
  }

  .route-stop {
    padding: 0 0 2rem 3.4rem;
    text-align: left;
  }

  .route-stop::before {
    top: 0.25rem;
    left: 1.25rem;
  }

  .timeline-item {
    margin-bottom: 1rem;
    padding: 1.4rem 1.4rem 1.4rem 4.6rem;
  }

  .timeline-number {
    top: 1.25rem;
    left: 0.15rem;
  }

  .policy-nav {
    position: static;
  }

  .policy-nav a {
    display: inline-block;
    margin-right: 0.7rem;
  }

  .footer-responsible {
    grid-template-columns: auto 1fr;
  }

  .footer-responsible .btn {
    grid-column: 1 / -1;
  }

  .cookie-banner-content {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 4.5rem;
  }

  .hero,
  .internal-hero {
    padding-top: 9.5rem;
  }

  .primary-nav {
    padding-top: 6.5rem;
  }

  .container,
  .narrow {
    width: min(calc(100% - 1.2rem), 1180px);
  }

  .hero,
  .internal-hero {
    min-height: 86svh;
    padding-bottom: 3rem;
  }

  .internal-hero {
    min-height: 66svh;
  }

  .internal-hero.small {
    min-height: 54svh;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .btn {
    width: 100%;
  }

  .value-grid,
  .standard-grid,
  .footer-grid,
  .form-grid,
  .experience-list {
    grid-template-columns: 1fr;
  }

  .media-frame img {
    min-height: 20rem;
  }

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

  .cta-panel .button-row {
    justify-content: flex-start;
  }

  .footer-responsible {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

  .cookie-banner {
    right: 0.45rem;
    bottom: 0.45rem;
    left: 0.45rem;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .modal-footer .btn {
    width: 100%;
  }

  .consent-category {
    grid-template-columns: 1fr;
  }
}

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

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

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


/* Refined internal-page heroes and legal layouts */
.internal-hero.small {
  isolation: isolate;
  min-height: 58svh;
  background-image: linear-gradient(90deg, rgba(12, 15, 17, 0.9) 0%, rgba(12, 15, 17, 0.62) 55%, rgba(12, 15, 17, 0.42) 100%), url("../images/about/about-hero-buenos-aires-night.webp");
  background-position: center;
  background-size: cover;
}

.internal-hero.small::before {
  z-index: 0;
  border-color: rgba(226, 200, 140, 0.34);
}

.hero-contact {
  background-image: linear-gradient(90deg, rgba(12, 15, 17, 0.9), rgba(12, 15, 17, 0.48)), url("../images/about/about-hero-buenos-aires-night.webp");
  background-position: center 58%;
}

.hero-privacy {
  background-image: linear-gradient(90deg, rgba(12, 15, 17, 0.92), rgba(24, 55, 47, 0.58)), url("../images/about/editorial-hotel-curation.webp");
  background-position: center 46%;
}

.hero-cookie {
  background-image: linear-gradient(90deg, rgba(12, 15, 17, 0.91), rgba(84, 30, 43, 0.52)), url("../images/home/spa-gastronomy-experience.webp");
  background-position: center 55%;
}

.hero-travel-planning {
  background-image: linear-gradient(90deg, rgba(12, 15, 17, 0.9), rgba(24, 55, 47, 0.5)), url("../images/home/argentina-hotel-route.webp");
  background-position: center 50%;
}

.legal-updated {
  display: inline-flex;
  margin-top: 0.6rem;
  padding: 0.48rem 0.75rem;
  border: 1px solid rgba(226, 200, 140, 0.42);
  border-radius: 999px;
  background: rgba(17, 19, 21, 0.28);
  color: rgba(246, 241, 232, 0.82);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.legal-layout {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
}

.legal-nav {
  position: sticky;
  top: 6rem;
  overflow: hidden;
  padding: 1.3rem;
  border: 1px solid rgba(17, 19, 21, 0.1);
  border-top: 4px solid #c7a35a;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(17, 19, 21, 0.08);
}

.legal-nav strong {
  display: block;
  margin-bottom: 0.75rem;
  color: #111315;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.15rem;
}

.legal-nav a {
  display: block;
  padding: 0.48rem 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.07);
  color: #6f716f;
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 1.35;
  transition: color 180ms ease, padding-left 180ms ease;
}

.legal-nav a:last-child {
  border-bottom: 0;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  padding-left: 0.25rem;
  color: #541e2b;
}

.legal-content {
  min-width: 0;
  max-width: 880px;
}

.legal-content>.policy-highlight {
  margin: 0 0 2.7rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(84, 30, 43, 0.17);
  border-left: 4px solid #541e2b;
  border-radius: 1rem;
  background: rgba(84, 30, 43, 0.055);
  color: #373536;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.legal-content>section {
  scroll-margin-top: 6.5rem;
  padding-bottom: 2.6rem;
}

.legal-content>section+section {
  padding-top: 2.6rem;
  border-top: 1px solid rgba(17, 19, 21, 0.11);
}

.legal-content h2 {
  margin-bottom: 1rem;
  color: #18372f;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
}

.legal-content h3 {
  margin: 1.6rem 0 0.55rem;
  color: #541e2b;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
}

.legal-content p,
.legal-content li {
  color: #535653;
}

.legal-content p {
  max-width: 78ch;
}

.legal-content ul,
.legal-content ol {
  max-width: 76ch;
  padding-left: 1.25rem;
}

.legal-content a {
  color: #541e2b;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-underline-offset: 0.24em;
}

.legal-content code {
  padding: 0.16rem 0.38rem;
  border: 1px solid rgba(17, 19, 21, 0.09);
  border-radius: 0.3rem;
  background: #ece3d6;
  color: #111315;
  font-size: 0.88em;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0.85rem;
  }

  .legal-nav strong {
    width: 100%;
  }

  .legal-nav a {
    display: inline-block;
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .internal-hero.small {
    min-height: 58svh;
  }

  .legal-content>.policy-highlight {
    padding: 1.1rem;
  }
}
/* Lightweight client-rendered age check and cookie notice. */
body.pre-gate-open {
  overflow: hidden;
}

.pre-age-layer {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(8, 11, 10, 0.92);
  backdrop-filter: blur(10px);
}

.pre-age-card {
  width: min(100%, 34rem);
  padding: 2rem;
  border: 1px solid rgba(199, 163, 90, 0.48);
  border-radius: 1rem;
  background: #15221f;
  color: #f6f1e8;
  box-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, 0.38);
  text-align: center;
}

.pre-age-badge {
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  margin: 0 auto 1rem;
  place-items: center;
  border: 2px solid #c7a35a;
  border-radius: 50%;
  color: #e2c88c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.pre-age-kicker {
  margin: 0 0 0.45rem;
  color: #e2c88c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pre-age-card h2 {
  margin: 0 0 0.85rem;
  color: #fffaf1;
  font-size: clamp(1.7rem, 5vw, 2.35rem);
}

.pre-age-card > p:not(.pre-age-kicker):not(.pre-age-legal) {
  max-width: 29rem;
  margin: 0 auto;
  color: rgba(246, 241, 232, 0.82);
  line-height: 1.65;
}

.pre-age-actions,
.pre-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.pre-age-actions {
  margin-top: 1.4rem;
}

.pre-age-legal {
  margin: 1rem 0 0;
  color: rgba(246, 241, 232, 0.56);
  font-size: 0.76rem;
  line-height: 1.5;
}

.pre-gate-btn {
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.pre-gate-btn:hover {
  transform: translateY(-1px);
}

.pre-gate-btn-primary {
  border-color: #c7a35a;
  background: #c7a35a;
  color: #111513;
}

.pre-gate-btn-secondary {
  border-color: rgba(246, 241, 232, 0.34);
  background: transparent;
  color: #f6f1e8;
}

.pre-consent-bar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2147482000;
  opacity: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.pre-consent-leaving {
  opacity: 0;
  transform: translateY(0.6rem);
}

.pre-consent-inner {
  display: flex;
  width: min(100%, 72rem);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(199, 163, 90, 0.42);
  border-radius: 0.75rem;
  background: #15221f;
  color: #f6f1e8;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}

.pre-consent-copy {
  max-width: 50rem;
}

.pre-consent-copy strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #fffaf1;
}

.pre-consent-copy p {
  margin: 0;
  color: rgba(246, 241, 232, 0.78);
  font-size: 0.86rem;
  line-height: 1.5;
}

.pre-consent-copy a {
  display: inline-block;
  margin-top: 0.35rem;
  color: #e2c88c;
  font-size: 0.82rem;
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.pre-consent-actions {
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .pre-age-card {
    padding: 1.5rem 1.15rem;
  }

  .pre-age-actions .pre-gate-btn,
  .pre-consent-actions .pre-gate-btn {
    width: 100%;
  }

  .pre-consent-inner {
    display: block;
  }

  .pre-consent-actions {
    margin-top: 0.9rem;
  }
}
