:root {
  --ink: #16201f;
  --muted: #64706d;
  --paper: #fffaf0;
  --surface: #ffffff;
  --sand: #eadcc2;
  --sea: #006d6f;
  --sea-dark: #064b50;
  --leaf: #597b43;
  --coral: #df704f;
  --gold: #c99742;
  --line: rgba(22, 32, 31, .12);
  --shadow: 0 18px 48px rgba(20, 36, 34, .14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

body.drawer-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

.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;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 30;
  width: min(1180px, calc(100% - 28px));
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 10px 12px;
  color: #fff;
  background: rgba(9, 22, 22, .58);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 240, .94);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  background: var(--sea);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 17px;
  font-weight: 800;
}

.brand small {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, .16);
}

.site-header.is-scrolled .main-nav a:hover {
  background: rgba(0, 109, 111, .1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}

.language select,
.cart-button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  color: inherit;
  background: rgba(255, 255, 255, .12);
}

.language select {
  width: 64px;
  padding: 0 10px;
  color: inherit;
}

.site-header.is-scrolled .language select,
.site-header.is-scrolled .cart-button {
  border-color: var(--line);
  background: rgba(0, 109, 111, .08);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  font-weight: 800;
}

.cart-button svg,
.primary-action svg,
.secondary-action svg,
.contact-form button svg,
.booking-form button svg,
.icon-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.cart-button b {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  background: var(--coral);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #17302f;
}

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

.hero-media {
  background-image: url("assets/passauna-guest-house.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 22, 22, .84) 0%, rgba(9, 22, 22, .56) 43%, rgba(9, 22, 22, .18) 100%),
    linear-gradient(0deg, rgba(9, 22, 22, .56) 0%, rgba(9, 22, 22, .08) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 74px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c67a;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 8vw, 116px);
  line-height: .9;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

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

.primary-action,
.secondary-action,
.booking-form button,
.contact-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.primary-action:disabled,
.secondary-action:disabled,
.booking-form button:disabled,
.contact-form button:disabled {
  cursor: wait;
  opacity: .66;
  transform: none;
}

.primary-action,
.booking-form button,
.contact-form button {
  color: #fff;
  background: var(--sea);
}

.primary-action:hover,
.booking-form button:hover,
.contact-form button:hover {
  background: var(--sea-dark);
  transform: translateY(-1px);
}

.primary-action.dark {
  background: var(--ink);
}

.primary-action.dark:hover {
  background: var(--sea-dark);
}

.secondary-action {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
}

.secondary-action:hover {
  background: rgba(255, 255, 255, .2);
}

.secondary-action.on-light {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.secondary-action.on-light:hover {
  border-color: rgba(0, 109, 111, .36);
  background: rgba(0, 109, 111, .08);
}

.booking-band {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 36px));
  margin: -28px auto 0;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 10px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-form label,
.contact-form label {
  display: grid;
  gap: 7px;
}

.booking-form label span,
.contact-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: #f7f3ea;
  border: 1px solid transparent;
  border-radius: var(--radius);
  outline: none;
}

.contact-form textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 109, 111, .42);
  background: #fff;
}

.booking-form button {
  align-self: end;
  border: 0;
}

.intro-section,
.catalog-section,
.experience-section,
.location-section,
.contact-section,
.quote-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
  padding: 78px 0 44px;
}

.section-copy h2,
.section-heading h2,
.quote-panel h2,
.location-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

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

.intro-grid article {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.intro-grid svg {
  width: 24px;
  height: 24px;
  color: var(--sea);
}

.intro-grid strong {
  font-size: 20px;
  font-weight: 800;
}

.intro-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.catalog-section,
.experience-section,
.location-section,
.contact-section {
  padding: 58px 0;
}

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

.section-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  text-align: right;
}

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

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

.item-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(22, 32, 31, .08);
}

.item-card .media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8d0bf;
}

.item-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.item-card:hover .media img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(9, 22, 22, .74);
  border-radius: 999px;
}

.item-card .copy {
  display: grid;
  gap: 13px;
  padding: 18px;
}

.item-card h3 {
  min-height: 54px;
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.item-card p {
  min-height: 68px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.meta-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 109, 111, .08);
  border-radius: 999px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-top: 2px;
}

.price-row strong {
  font-size: 19px;
}

.price-row small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.text-button,
.select-button {
  min-height: 44px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.text-button {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.text-button:hover {
  background: rgba(22, 32, 31, .05);
}

.select-button {
  color: #fff;
  background: var(--sea);
  border: 1px solid var(--sea);
}

.select-button:hover,
.select-button.is-selected {
  background: var(--leaf);
  border-color: var(--leaf);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.feature-photo {
  position: sticky;
  top: 104px;
  overflow: hidden;
  color: #fff;
  background: var(--sea-dark);
  border-radius: var(--radius);
}

.feature-photo img {
  width: 100%;
  height: min(52vw, 620px);
  min-height: 520px;
  object-fit: cover;
}

.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 22, 22, .78), rgba(9, 22, 22, .06) 62%);
}

.feature-photo div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 7px;
}

.feature-photo strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  line-height: 1.05;
}

.feature-photo span {
  color: rgba(255, 255, 255, .84);
  line-height: 1.45;
}

.quote-section {
  padding: 42px 0;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(0, 109, 111, .94), rgba(6, 75, 80, .96)),
    url("assets/mata-atlantica.jpg") center / cover;
  border-radius: var(--radius);
}

.quote-panel .eyebrow {
  color: #f5d182;
}

.quote-panel p:last-child {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .84);
  line-height: 1.6;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.location-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
}

.check-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--sea);
}

.location-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-photo img {
  width: 100%;
  height: min(48vw, 600px);
  min-height: 420px;
  object-fit: cover;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(22, 32, 31, .08);
}

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

.contact-form button {
  grid-column: 1 / -1;
  justify-self: end;
  border: 0;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  pointer-events: none;
  visibility: hidden;
}

.cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 22, 22, .55);
  opacity: 0;
  transition: opacity .25s ease;
}

.cart-drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: relative;
  justify-self: end;
  width: min(460px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  padding: 22px;
  background: var(--paper);
  box-shadow: -24px 0 58px rgba(9, 22, 22, .24);
  transform: translateX(100%);
  transition: transform .25s ease;
}

.cart-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-panel header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.drawer-panel h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
}

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

.trip-summary {
  display: grid;
  gap: 7px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trip-summary span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
  padding-right: 2px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-line strong,
.cart-line small {
  display: block;
}

.cart-line strong {
  font-size: 14px;
}

.cart-line small {
  margin-top: 4px;
  color: var(--muted);
}

.remove-item {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--coral);
  background: rgba(223, 112, 79, .08);
  border: 1px solid rgba(223, 112, 79, .22);
  border-radius: var(--radius);
}

.remove-item svg {
  width: 16px;
  height: 16px;
}

.cart-empty {
  display: none;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--muted);
  text-align: center;
}

.cart-empty.is-visible {
  display: grid;
}

.cart-empty svg {
  width: 42px;
  height: 42px;
  color: var(--sea);
}

.drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.drawer-actions .primary-action,
.drawer-actions .secondary-action {
  width: 100%;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 42;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #18b76b;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(24, 183, 107, .34);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
}

.details-dialog {
  width: min(920px, calc(100% - 30px));
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(9, 22, 22, .32);
}

.details-dialog::backdrop {
  background: rgba(9, 22, 22, .62);
}

.close-dialog {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.dialog-media {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: #d8d0bf;
}

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

.dialog-copy {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.dialog-copy h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.dialog-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.dialog-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dialog-copy li {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  color: var(--sea-dark);
  font-size: 14px;
  font-weight: 800;
  background: rgba(0, 109, 111, .08);
  border-radius: var(--radius);
}

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

  .main-nav {
    grid-column: 1 / -1;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .booking-form,
  .intro-section,
  .experience-layout,
  .location-section {
    grid-template-columns: 1fr;
  }

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

  .booking-form button {
    grid-column: 1 / -1;
  }

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

  .feature-photo {
    position: relative;
    top: auto;
  }

  .feature-photo img {
    height: 420px;
    min-height: 420px;
  }

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

@media (max-width: 680px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

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

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 10px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
  }

  .language select {
    width: 72px;
    padding: 0 6px;
  }

  .cart-button {
    flex: 1;
    justify-content: center;
  }

  .main-nav {
    gap: 4px;
  }

  .main-nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(9, 22, 22, .82) 0%, rgba(9, 22, 22, .34) 100%),
      linear-gradient(90deg, rgba(9, 22, 22, .68), rgba(9, 22, 22, .18));
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 210px 0 60px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
    line-height: .96;
  }

  .hero-lead {
    font-size: 17px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .booking-band,
  .intro-section,
  .catalog-section,
  .experience-section,
  .location-section,
  .contact-section,
  .quote-section {
    width: calc(100% - 24px);
  }

  .booking-form,
  .intro-grid,
  .card-grid,
  .card-grid.compact,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
    gap: 12px;
  }

  .section-heading > p {
    max-width: none;
    text-align: left;
  }

  .intro-section {
    padding-top: 58px;
  }

  .item-card h3,
  .item-card p {
    min-height: 0;
  }

  .card-actions,
  .drawer-actions {
    grid-template-columns: 1fr;
  }

  .feature-photo img,
  .location-photo img {
    height: 360px;
    min-height: 360px;
  }

  .feature-photo strong {
    font-size: 27px;
  }

  .drawer-panel {
    width: 100%;
    padding: 18px;
  }

  .dialog-copy ul {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

.choice-page {
  min-height: 100svh;
  background: #071515;
  font-family: Karla, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.choice-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 42px 18px;
  color: #fff;
}

.choice-bg,
.choice-overlay {
  position: absolute;
  inset: 0;
}

.choice-bg {
  background: url("assets/real/home-hero.jpg") center / cover;
  transform: scale(1.04);
}

.choice-overlay {
  background:
    radial-gradient(circle at 50% 14%, rgba(201, 151, 66, .2), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(0, 109, 111, .28), transparent 34%),
    linear-gradient(180deg, rgba(6, 18, 23, .36), rgba(7, 21, 21, .9)),
    linear-gradient(90deg, rgba(6, 18, 23, .88), rgba(7, 21, 21, .24), rgba(54, 35, 22, .78));
}

.choice-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}

.choice-logo {
  width: min(390px, 78vw);
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, .42));
}

.choice-panel {
  position: relative;
  width: min(760px, 100%);
  display: grid;
  gap: 22px;
  justify-items: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .07)),
    rgba(7, 21, 21, .24);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  box-shadow: 0 28px 86px rgba(0, 0, 0, .3);
  backdrop-filter: blur(18px);
}

.choice-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
}

.choice-copy h1 {
  margin: 0;
  font-family: "Playfair Display SC", "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5.4vw, 66px);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 16px 32px rgba(0, 0, 0, .28);
}

.choice-title-line {
  display: block;
}

.choice-copy p:last-child {
  max-width: 590px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.55;
}

.choice-actions {
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-option {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
  touch-action: manipulation;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.choice-option small,
.choice-option strong {
  display: block;
}

.choice-option small {
  color: #f6cf86;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.choice-option strong {
  margin-top: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1;
}

.choice-option svg {
  width: 26px;
  height: 26px;
  color: #f6cf86;
}

.choice-option:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .42);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .24);
  transform: translateY(-2px);
}

.choice-option:focus-visible {
  outline: 3px solid rgba(246, 207, 134, .85);
  outline-offset: 4px;
}

.choice-proof {
  width: min(620px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.choice-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(7, 21, 21, .34);
  border: 1px solid rgba(246, 207, 134, .22);
  border-radius: 999px;
}

.logo-brand {
  width: 164px;
  height: 48px;
}

.logo-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, .32));
}

.property-page .site-header.is-scrolled {
  color: #fff;
  background: rgba(9, 22, 22, .86);
}

.property-page {
  font-family: Karla, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.property-page .site-header {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05)),
    rgba(7, 21, 21, .58);
  box-shadow: 0 18px 56px rgba(0, 0, 0, .18);
}

.property-page .hero {
  min-height: 92svh;
  align-items: center;
  padding: 126px 0 82px;
}

.property-page .hero-media {
  filter: saturate(1.04) contrast(1.04);
}

.property-page .hero-overlay {
  background:
    radial-gradient(circle at 50% 14%, rgba(201, 151, 66, .18), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(0, 109, 111, .26), transparent 34%),
    linear-gradient(180deg, rgba(6, 18, 23, .32), rgba(7, 21, 21, .88)),
    linear-gradient(90deg, rgba(6, 18, 23, .88), rgba(7, 21, 21, .24), rgba(54, 35, 22, .72));
}

.property-page .hero-content {
  width: min(780px, calc(100% - 36px));
  display: grid;
  gap: 18px;
  justify-items: center;
  margin: 0 auto;
  padding: clamp(26px, 4.5vw, 42px);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .07)),
    rgba(7, 21, 21, .24);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  box-shadow: 0 28px 86px rgba(0, 0, 0, .3);
  backdrop-filter: blur(18px);
}

.property-page .hero-content::before {
  content: "";
  width: min(260px, 54vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
}

.property-page .hero h1 {
  max-width: none;
  font-family: "Playfair Display SC", "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .98;
  text-shadow: 0 16px 32px rgba(0, 0, 0, .28);
}

.property-page .hero-lead {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(16px, 2vw, 20px);
}

.property-page .hero-actions {
  justify-content: center;
  margin-top: 8px;
}

.property-page .booking-band {
  margin-top: -42px;
}

.property-page .booking-form {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .76)),
    rgba(255, 255, 255, .82);
  border-color: rgba(255, 255, 255, .62);
  box-shadow: 0 22px 68px rgba(20, 36, 34, .18);
  backdrop-filter: blur(16px);
}

.property-page .section-copy h2,
.property-page .section-heading h2,
.property-page .quote-panel h2,
.property-page .location-copy h2,
.property-page .drawer-panel h2,
.property-page .dialog-copy h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.property-page .intro-section {
  grid-template-columns: minmax(320px, .76fr) minmax(440px, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 48px 0 28px;
}

.property-page .intro-section .section-copy {
  position: relative;
  overflow: hidden;
  min-height: 256px;
  display: grid;
  align-content: end;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 28, 27, .95), rgba(0, 109, 111, .86)),
    url("assets/real/costao.jpg") center / cover;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(20, 36, 34, .14);
}

.property-page .intro-section .section-copy::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -72px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.property-page .intro-section .section-copy .eyebrow {
  color: var(--coral);
}

.property-page .intro-section .section-copy h2 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: #fff;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.02;
}

.property-page .intro-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: stretch;
}

.property-page .intro-grid article {
  min-height: 0;
  grid-template-columns: auto 1fr;
  align-content: center;
  align-items: center;
  column-gap: 16px;
  row-gap: 4px;
  padding: 21px 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .72)),
    var(--surface);
}

.property-page .intro-grid svg {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
}

.property-page .intro-grid strong {
  font-size: 21px;
}

.property-page .intro-grid span {
  max-width: 34rem;
}

.property-page .intro-grid article,
.property-page .item-card,
.property-page .contact-form,
.property-page .location-photo {
  border-color: rgba(22, 32, 31, .1);
  box-shadow: 0 18px 46px rgba(20, 36, 34, .1);
}

.property-page .item-card .media {
  background: #172322;
}

.property-page .item-card .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(7, 21, 21, .18));
  pointer-events: none;
}

.property-page .quote-panel {
  background:
    radial-gradient(circle at 12% 18%, rgba(246, 207, 134, .2), transparent 28%),
    linear-gradient(135deg, rgba(7, 21, 21, .96), rgba(0, 109, 111, .9)),
    url("assets/real/piscina.jpg") center / cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.page-guaratuba .hero-media {
  background-image: url("assets/real/guaratuba-hero.jpg");
  background-position: center;
}

.page-caioba .hero-media {
  background-image: url("assets/real/caioba-hero.jpg");
  background-position: center;
}

.property-page .booking-form {
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
}

.property-page .contact-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.drawer-customer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.drawer-customer label {
  display: grid;
  gap: 6px;
}

.drawer-customer span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.drawer-customer input {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  color: var(--ink);
  background: #f7f3ea;
  border: 1px solid transparent;
  border-radius: var(--radius);
  outline: none;
}

.drawer-customer input:focus {
  border-color: rgba(0, 109, 111, .42);
  background: #fff;
}

.cart-total {
  display: grid;
  gap: 4px;
  padding: 14px;
  color: var(--ink);
  background: rgba(0, 109, 111, .08);
  border: 1px solid rgba(0, 109, 111, .16);
  border-radius: var(--radius);
}

.cart-total strong {
  font-size: 13px;
  text-transform: uppercase;
}

.cart-total span {
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .property-page .site-header {
    grid-template-columns: auto 1fr;
    gap: 10px;
    min-height: 64px;
    padding: 8px;
  }

  .property-page .logo-brand {
    width: 126px;
    height: 44px;
  }

  .property-page .header-actions {
    width: auto;
    justify-self: end;
    gap: 8px;
  }

  .property-page .cart-button {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 10px;
  }

  .property-page .menu-toggle {
    position: relative;
    width: 46px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius);
    color: #fff;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06)),
      rgba(255, 255, 255, .1);
    overflow: hidden;
  }

  .property-page .menu-toggle::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(246, 207, 134, .18);
    border-radius: calc(var(--radius) - 4px);
    transform: scale(.82);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
  }

  .property-page .menu-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .2s ease, width .2s ease;
  }

  .property-page .menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .property-page .menu-toggle span:nth-child(2) {
    width: 16px;
    transform: translateX(2px);
  }

  .property-page .menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .property-page .site-header.is-menu-open .menu-toggle::before {
    transform: scale(1);
    opacity: 1;
  }

  .property-page .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .property-page .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(12px);
  }

  .property-page .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .property-page .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    align-items: stretch;
    gap: 7px;
    padding: 10px;
    overflow: hidden;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05)),
      rgba(7, 21, 21, .94);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    box-shadow: 0 22px 64px rgba(0, 0, 0, .24);
    backdrop-filter: blur(18px);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    transform-origin: top center;
    transition: opacity .24s ease, transform .32s cubic-bezier(.22, 1, .36, 1);
  }

  .property-page .site-header.is-menu-open .main-nav {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .property-page .main-nav a {
    min-height: 46px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity .24s ease, transform .32s cubic-bezier(.22, 1, .36, 1), background .2s ease;
  }

  .property-page .main-nav a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid rgba(246, 207, 134, .86);
    border-right: 2px solid rgba(246, 207, 134, .86);
    transform: rotate(45deg);
  }

  .property-page .site-header.is-menu-open .main-nav a {
    transform: translateY(0);
    opacity: 1;
  }

  .property-page .site-header.is-menu-open .main-nav a:nth-child(1) {
    transition-delay: .04s;
  }

  .property-page .site-header.is-menu-open .main-nav a:nth-child(2) {
    transition-delay: .08s;
  }

  .property-page .site-header.is-menu-open .main-nav a:nth-child(3) {
    transition-delay: .12s;
  }

  .property-page .site-header.is-menu-open .main-nav a:nth-child(4) {
    transition-delay: .16s;
  }

  .property-page .main-nav a:hover {
    background: rgba(255, 255, 255, .14);
  }

  .property-page .intro-section {
    grid-template-columns: 1fr;
  }

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

  .property-page .booking-form button,
  .property-page .contact-form .full,
  .property-page .contact-form button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .property-page .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .property-page .logo-brand {
    width: 104px;
    height: 40px;
  }

  .property-page .cart-button {
    gap: 6px;
    min-height: 42px;
    padding: 0 8px;
  }

  .property-page .cart-button span {
    font-size: 13px;
  }

  .property-page .cart-button b {
    min-width: 22px;
    height: 22px;
  }

  .property-page .menu-toggle {
    width: 44px;
    height: 42px;
  }

  .property-page .hero {
    min-height: 88svh;
    padding: 142px 0 66px;
  }

  .property-page .hero-content {
    width: min(350px, calc(100% - 24px));
    gap: 14px;
    padding: 22px 16px;
  }

  .property-page .hero h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1;
  }

  .property-page .hero-lead {
    font-size: 15px;
  }

  .property-page .hero-actions {
    width: 100%;
  }

  .property-page .booking-band {
    margin-top: -26px;
  }

  .property-page .intro-section {
    padding-top: 42px;
  }

  .property-page .intro-section .section-copy {
    padding: 22px;
  }

  .property-page .intro-section .section-copy h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .property-page .intro-grid article {
    min-height: 0;
  }

  .choice-hero {
    padding: 28px 12px;
  }

  .choice-content {
    width: min(350px, 100%);
    gap: 16px;
  }

  .choice-logo {
    width: min(236px, 66vw);
    max-height: 184px;
  }

  .choice-panel {
    gap: 17px;
    padding: 20px 14px;
  }

  .choice-copy h1 {
    font-size: clamp(30px, 9.2vw, 38px);
    line-height: 1;
  }

  .choice-copy p:last-child {
    max-width: 310px;
    margin-top: 10px;
    font-size: 14px;
  }

  .choice-actions {
    grid-template-columns: 1fr;
  }

  .choice-option {
    min-height: 84px;
    padding: 16px;
  }

  .choice-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .choice-proof span {
    justify-content: center;
  }

  .logo-brand {
    width: 138px;
    height: 44px;
  }

  .property-page .booking-form,
  .property-page .contact-form,
  .drawer-customer {
    grid-template-columns: 1fr;
  }
}
