:root {
  --ink: #1f2523;
  --ink-soft: #38413e;
  --muted: #68736f;
  --line: rgba(31, 37, 35, 0.13);
  --paper: #fbfaf6;
  --stone: #f3f0e8;
  --mist: #e6eee9;
  --cypress: #173b36;
  --cypress-2: #24544d;
  --wine: #742337;
  --wine-dark: #42131f;
  --gold: #b98c42;
  --gold-soft: #e4c27b;
  --clay: #c98058;
  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow: 0 22px 58px rgba(31, 37, 35, 0.13);
  --shadow-soft: 0 12px 32px rgba(31, 37, 35, 0.1);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --motion-fast: 180ms;
  --motion-medium: 520ms;
  --motion-slow: 880ms;
  --motion-drift: 18000ms;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-distance: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 10%, rgba(185, 140, 66, 0.08), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(23, 59, 54, 0.08), transparent 28rem);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--motion-slow) var(--ease-soft), transform var(--motion-slow) var(--ease-soft);
}

body.page-ready::before {
  opacity: 1;
  transform: none;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(185, 140, 66, 0.65);
  outline-offset: 3px;
}

.page-root {
  min-height: 70vh;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--gold-soft);
  font-weight: 900;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  max-width: 100%;
  min-width: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  font-size: 6.4rem;
  max-width: 860px;
  overflow-wrap: break-word;
}

h2 {
  font-size: 4.4rem;
  max-width: 820px;
  overflow-wrap: break-word;
}

h3 {
  font-size: 2rem;
  overflow-wrap: break-word;
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--muted);
  overflow-wrap: break-word;
}

.lead {
  max-width: 690px;
  font-size: 1.16rem;
  line-height: 1.78;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.text-stack {
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
}

.text-stack.tight {
  gap: 12px;
}

.actions,
.card-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--ink);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(31, 37, 35, 0.13);
  transition: transform var(--motion-fast) var(--ease-luxury), box-shadow var(--motion-fast) var(--ease-luxury), background var(--motion-fast) ease, color var(--motion-fast) ease, border-color var(--motion-fast) ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -65%;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: left 680ms var(--ease-soft);
  z-index: -1;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(31, 37, 35, 0.2);
}

.btn:hover::before {
  left: 125%;
}

.btn:active {
  transform: translateY(-1px) scale(0.99);
}

.btn-primary {
  color: #24190c;
  background: var(--gold-soft);
  border-color: rgba(185, 140, 66, 0.24);
}

.btn-secondary {
  background: var(--cypress);
}

.btn-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  box-shadow: none;
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.btn-whatsapp {
  color: #062b17;
  background: var(--whatsapp);
}

.btn-small {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 0.86rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transform: translateY(-100%);
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease, transform 760ms var(--ease-soft);
}

.page-ready .site-header {
  transform: translateY(0);
}

.site-header.scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  border-color: var(--line);
  box-shadow: 0 14px 34px rgba(31, 37, 35, 0.11);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(228, 194, 123, 0.8);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-soft);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-title {
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-subtitle {
  color: var(--gold-soft);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header.scrolled .brand-subtitle,
.site-header.menu-active .brand-subtitle {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.25vw, 22px);
}

.nav-link {
  position: relative;
  padding: 27px 0;
  color: currentColor;
  font-size: 0.88rem;
  font-weight: 900;
  opacity: 0.86;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold-soft);
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: var(--gold-soft);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active,
.site-header.menu-active .nav-link:hover,
.site-header.menu-active .nav-link.active {
  color: var(--wine);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(228, 194, 123, 0.54);
  border-radius: var(--radius-sm);
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.site-header.menu-active .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-active .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-active .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(560px, 84svh, 840px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 8%, rgba(228, 194, 123, 0.08) 20%, transparent 34%),
    radial-gradient(circle at 20% 70%, rgba(228, 194, 123, 0.13), transparent 20rem);
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 1100ms var(--ease-soft), transform 1100ms var(--ease-soft);
}

.page-ready .hero::before {
  opacity: 1;
  transform: none;
}

.hero.is-home {
  min-height: 100svh;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.035);
  transform-origin: center;
  will-change: transform;
}

.page-ready .hero-media img {
  animation: heroImageDrift var(--motion-drift) ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 20, 19, 0.84), rgba(12, 20, 19, 0.42) 55%, rgba(12, 20, 19, 0.72)),
    linear-gradient(180deg, rgba(12, 20, 19, 0.22), rgba(12, 20, 19, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 clamp(54px, 8vw, 96px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: end;
  gap: clamp(30px, 6vw, 82px);
}

.hero-layout > *,
.split > *,
.lead-panel > *,
.intro-panel > *,
.grid > *,
.footer-main > * {
  min-width: 0;
}

.hero-copy {
  display: grid;
  gap: 22px;
  min-width: 0;
  max-width: 100%;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
}

.page-ready .hero-copy > * {
  animation: heroContentIn 820ms var(--ease-soft) forwards;
}

.page-ready .hero-copy > *:nth-child(1) {
  animation-delay: 90ms;
}

.page-ready .hero-copy > *:nth-child(2) {
  animation-delay: 180ms;
}

.page-ready .hero-copy > *:nth-child(3) {
  animation-delay: 270ms;
}

.page-ready .hero-copy > *:nth-child(4) {
  animation-delay: 360ms;
}

.hero-copy > *,
.text-stack > *,
.card-body > *,
.stat-item > *,
.intro-panel > *,
.lead-panel > * {
  min-width: 0;
  max-width: 100%;
}

.hero-copy h1,
.hero-copy p {
  color: var(--white);
}

.hero-copy .eyebrow {
  color: var(--gold-soft);
}

.hero-summary {
  display: grid;
  gap: 18px;
  max-width: 100%;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.12);
}

.page-ready .hero-summary {
  animation: heroSummaryIn 900ms var(--ease-soft) 420ms forwards;
}

.hero-summary h3,
.hero-summary p {
  color: var(--white);
}

.hero-summary p {
  opacity: 0.82;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.78rem;
  font-weight: 900;
  transition: transform var(--motion-fast) var(--ease-luxury), background var(--motion-fast) ease, border-color var(--motion-fast) ease;
}

.hero-tags .tag {
  opacity: 0;
  transform: translateY(8px);
}

.page-ready .hero-tags .tag {
  animation: heroContentIn 520ms var(--ease-soft) forwards;
}

.page-ready .hero-tags .tag:nth-child(1) {
  animation-delay: 620ms;
}

.page-ready .hero-tags .tag:nth-child(2) {
  animation-delay: 700ms;
}

.page-ready .hero-tags .tag:nth-child(3) {
  animation-delay: 780ms;
}

.page-ready .hero-tags .tag:nth-child(4) {
  animation-delay: 860ms;
}

.tag:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(228, 194, 123, 0.44);
}

.section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 900ms var(--ease-soft), transform 1200ms var(--ease-soft);
}

.section:has(.visible)::before {
  opacity: 0.42;
  transform: translateX(18%);
}

[id] {
  scroll-margin-top: 104px;
}

.section-tight {
  padding: clamp(44px, 6vw, 76px) 0;
}

.section-stone {
  background: var(--stone);
}

.section-mist {
  background: var(--mist);
}

.section-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--cypress), #102623);
}

.section-wine {
  color: var(--white);
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-wine h2,
.section-wine h3,
.section-wine p {
  color: var(--white);
}

.section-dark p,
.section-wine p {
  opacity: 0.82;
}

.section-header {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.section-header.align-left {
  margin-left: 0;
  justify-items: start;
  text-align: left;
}

.intro-band {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.96);
  box-shadow: var(--shadow-soft);
}

.intro-panel h2 {
  font-size: 3rem;
}

.stats-strip {
  position: relative;
  z-index: 6;
  margin-top: -50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.97);
  box-shadow: var(--shadow-soft);
}

.stat-item {
  min-height: 120px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 9px;
  padding: 20px 12px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: transform var(--motion-fast) var(--ease-luxury), background var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(185, 140, 66, 0.16);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  stroke-width: 1.8;
}

.stat-number {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 900;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.split.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.92fr);
}

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

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--stone);
  transform: translateZ(0);
  transition: transform var(--motion-medium) var(--ease-soft), box-shadow var(--motion-medium) var(--ease-soft);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.22), transparent 48%);
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity var(--motion-medium) var(--ease-soft), transform 900ms var(--ease-soft);
}

.media-frame.tall {
  min-height: 560px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 560ms ease;
}

.media-frame:hover img,
.card:hover .card-media img,
.gallery-item:hover img {
  transform: scale(1.045);
}

.media-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(31, 37, 35, 0.17);
}

.media-frame:hover::after {
  opacity: 1;
  transform: translateX(80%);
}

.floating-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(18, 31, 29, 0.8);
  backdrop-filter: blur(16px);
  transform: translateY(0);
  transition: transform var(--motion-fast) var(--ease-luxury), background var(--motion-fast) ease;
}

.media-frame:hover .floating-note {
  transform: translateY(-4px);
  background: rgba(18, 31, 29, 0.88);
}

.floating-note h3,
.floating-note p {
  color: var(--white);
}

.floating-note p {
  opacity: 0.82;
}

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

.feature-list li,
.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 700;
}

.section-dark .feature-list li,
.section-wine .feature-list li,
.section-dark .check-list li,
.section-wine .check-list li {
  color: rgba(255, 255, 255, 0.86);
}

.feature-list svg,
.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-top: 3px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card,
.service-card,
.offer-card,
.amenity-card,
.contact-card,
.testimonial-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
  transition: transform var(--motion-medium) var(--ease-soft), box-shadow var(--motion-medium) var(--ease-soft), border-color var(--motion-medium) ease, background var(--motion-medium) ease;
}

.card::before,
.service-card::before,
.offer-card::before,
.amenity-card::before,
.contact-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(228, 194, 123, 0.16), transparent 34%);
  opacity: 0;
  transition: opacity var(--motion-medium) ease;
}

.card:hover,
.service-card:hover,
.offer-card:hover,
.amenity-card:hover,
.contact-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 140, 66, 0.28);
  box-shadow: 0 24px 58px rgba(31, 37, 35, 0.16);
}

.card:hover::before,
.service-card:hover::before,
.offer-card:hover::before,
.amenity-card:hover::before,
.contact-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.card {
  display: grid;
  min-height: 100%;
}

.card-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--stone);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 760ms var(--ease-soft), filter 760ms var(--ease-soft);
}

.card:hover .card-media img {
  filter: saturate(1.06) contrast(1.03);
}

.card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.card-kicker {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.price-line span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.price-line strong {
  color: var(--wine);
  font-size: 1.18rem;
}

.meta-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-icons span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  background: var(--stone);
  font-size: 0.8rem;
  font-weight: 900;
}

.meta-icons svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.amenity-card,
.offer-card,
.service-card,
.contact-card,
.testimonial-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 24px;
}

.amenity-card > svg,
.contact-card > svg,
.service-card > svg,
.offer-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--wine);
  background: var(--stone);
}

.amenity-card > svg,
.contact-card > svg,
.service-card > svg {
  padding: 10px;
  stroke-width: 1.8;
  transition: transform var(--motion-fast) var(--ease-luxury), color var(--motion-fast) ease, background var(--motion-fast) ease;
}

.amenity-card:hover > svg,
.contact-card:hover > svg,
.service-card:hover > svg,
.offer-card:hover .offer-icon {
  transform: translateY(-2px) scale(1.04);
  color: var(--cypress);
  background: rgba(228, 194, 123, 0.24);
}

.offer-icon svg {
  width: 21px;
  height: 21px;
}

.section-dark .amenity-card,
.section-dark .offer-card,
.section-dark .service-card,
.section-wine .amenity-card,
.section-wine .offer-card,
.section-wine .service-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.section-dark .amenity-card h3,
.section-dark .offer-card h3,
.section-dark .service-card h3,
.section-wine .amenity-card h3,
.section-wine .offer-card h3,
.section-wine .service-card h3 {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
  transition: transform var(--motion-medium) var(--ease-soft), box-shadow var(--motion-medium) var(--ease-soft);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 64px rgba(31, 37, 35, 0.18);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 760ms var(--ease-soft), filter 760ms var(--ease-soft);
}

.gallery-item:hover img {
  filter: saturate(1.06) contrast(1.03);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(13, 23, 22, 0.76));
}

.gallery-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  font-weight: 900;
  transform: translateY(0);
  transition: transform var(--motion-fast) var(--ease-luxury);
}

.gallery-item:hover .gallery-label {
  transform: translateY(-4px);
}

.gallery-label span {
  color: var(--gold-soft);
}

.lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
  margin-top: 18px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--motion-medium) var(--ease-soft), box-shadow var(--motion-medium) var(--ease-soft);
}

.lead-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 76px rgba(31, 37, 35, 0.17);
}

.lead-panel.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--cypress), var(--wine-dark));
  border-color: rgba(255, 255, 255, 0.14);
}

.lead-panel.dark h2,
.lead-panel.dark h3,
.lead-panel.dark p {
  color: var(--white);
}

.lead-panel.dark p {
  opacity: 0.84;
}

.lead-benefits {
  display: grid;
  gap: 10px;
}

.lead-benefit {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.lead-benefit svg {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--gold-soft);
}

.enquiry-form,
.newsletter-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 7px;
}

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

label {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.lead-panel.dark label {
  color: rgba(255, 255, 255, 0.84);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease, transform var(--motion-fast) var(--ease-luxury);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(185, 140, 66, 0.62);
  box-shadow: 0 0 0 4px rgba(185, 140, 66, 0.13);
  transform: translateY(-1px);
  outline: 0;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  min-height: 1.4em;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-line {
  display: grid;
  gap: 6px;
}

.contact-line a {
  color: var(--wine);
  font-weight: 900;
}

.map-panel {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 59, 54, 0.86), rgba(66, 19, 31, 0.86)),
    url("https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&w=1200&q=80") center / cover;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.map-panel h3,
.map-panel p {
  color: var(--white);
}

.testimonial-card .stars {
  color: var(--gold);
  letter-spacing: 0;
  font-weight: 900;
}

.guest {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.guest-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--cypress);
  font-weight: 900;
}

.guest strong {
  display: block;
  color: var(--ink);
}

.guest span:last-child {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #111c1a;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(28px, 5vw, 58px);
  padding: 58px 0 36px;
}

.site-footer h4,
.site-footer .brand-title {
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-soft);
}

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

.social-row a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  color: var(--gold-soft);
}

.social-row svg {
  width: 18px;
  height: 18px;
}

.newsletter-form {
  margin-top: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.whatsapp-tooltip {
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(17, 28, 26, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.whatsapp-panel {
  width: min(330px, calc(100vw - 32px));
  display: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.whatsapp-widget.open .whatsapp-panel {
  display: block;
}

.whatsapp-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: var(--white);
  background: var(--cypress);
}

.whatsapp-panel-head h3 {
  color: var(--white);
  font-size: 1.4rem;
}

.concierge-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
}

.status-dot {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
}

.whatsapp-options {
  display: grid;
  padding: 10px;
}

.whatsapp-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 10px 11px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 900;
}

.whatsapp-option:hover {
  background: var(--stone);
}

.whatsapp-option svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.whatsapp-toggle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #052913;
  background: var(--whatsapp);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
}

.whatsapp-toggle svg {
  width: 26px;
  height: 26px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, var(--motion-distance), 0);
  filter: blur(6px);
  transition:
    opacity var(--motion-medium) var(--ease-soft),
    transform var(--motion-medium) var(--ease-soft),
    filter var(--motion-medium) var(--ease-soft);
  transition-delay: var(--motion-delay, 0ms);
  will-change: transform, opacity, filter;
}

.reveal.motion-fade-left {
  transform: translate3d(28px, 0, 0);
}

.reveal.motion-fade-up {
  transform: translate3d(0, var(--motion-distance), 0);
}

.reveal.motion-fade-right {
  transform: translate3d(-28px, 0, 0);
}

.reveal.motion-scale {
  transform: translate3d(0, 16px, 0) scale(0.975);
}

.reveal.motion-soft {
  transform: translate3d(0, 10px, 0);
  filter: blur(3px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 170ms;
}

.delay-3 {
  transition-delay: 250ms;
}

@keyframes heroImageDrift {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.075) translate3d(-1.8%, 1.2%, 0);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(7px);
  }

  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes heroSummaryIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(7px);
  }

  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes luxuryFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition-delay: 0ms;
  }

  .hero-copy > *,
  .hero-summary,
  .hero-media img,
  .page-ready .hero-copy > *,
  .page-ready .hero-summary,
  .page-ready .hero-media img {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 5.35rem;
  }

  h2 {
    font-size: 3.75rem;
  }

  h3 {
    font-size: 1.85rem;
  }

  .intro-panel h2 {
    font-size: 2.75rem;
  }

  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-menu {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    max-height: calc(100svh - 96px);
    overflow: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.menu-active .nav-menu {
    display: grid;
  }

  .nav-link {
    padding: 12px;
    border-radius: var(--radius-sm);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--wine);
    background: var(--stone);
  }

  .menu-toggle {
    display: grid;
  }

  .nav-cta {
    justify-self: end;
  }

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

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

  .stat-item:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 3.15rem;
  }

  .intro-panel h2 {
    font-size: 2.55rem;
  }

  .hero-layout,
  .split,
  .split.reverse,
  .lead-panel,
  .intro-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    padding-top: 112px;
  }

  .hero-summary {
    max-width: 520px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  html {
    scroll-padding-top: 88px;
  }

  [id] {
    scroll-margin-top: 88px;
  }

  .container,
  .hero-content {
    width: min(362px, calc(100% - 28px));
    margin-left: 14px;
    margin-right: auto;
  }

  .nav-inner {
    width: min(100% - 24px, 1240px);
    min-height: 70px;
    gap: 10px;
  }

  .brand-title {
    font-size: 1.12rem;
  }

  .brand-subtitle {
    font-size: 0.58rem;
  }

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

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 3.12rem;
  }

  h2 {
    font-size: 2.48rem;
  }

  h3 {
    font-size: 1.55rem;
  }

  .lead {
    font-size: 1.02rem;
  }

  .intro-panel h2 {
    font-size: 2.18rem;
  }

  .hero,
  .hero.is-home {
    min-height: 760px;
  }

  .page-ready .hero-media img {
    animation: none;
  }

  .hero-layout {
    gap: 22px;
  }

  .hero-summary {
    padding: 18px;
  }

  .section {
    padding: 56px 0;
  }

  .stats-strip {
    margin-top: 0;
  }

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

  .stat-item {
    min-height: 108px;
  }

  .stat-item,
  .stat-item:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .stat-item:nth-child(2n) {
    border-right: 0;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .media-frame,
  .media-frame.tall {
    min-height: 360px;
  }

  .actions,
  .card-actions,
  .form-actions {
    align-items: stretch;
  }

  .actions .btn,
  .card-actions .btn,
  .form-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}
