:root {
  --bg: #f6efe3;
  --bg2: #fbf7f0;
  --bg-deep: #f2e6d3;
  --card: #fffaf2;
  --text: #2d241c;
  --muted: #6a5a4d;
  --line: rgba(45, 36, 28, 0.12);
  --shadow: 0 12px 30px rgba(45, 36, 28, 0.12);

  --accent: #b58a6a;
  --accent-2: #d9bfa7;

  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;

  --scroll-progress: 0;
  --scroll-shift-x: 0px;
  --scroll-shift-y: 0px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fffdf9 0%, var(--bg2) 50%, var(--bg) 100%);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  position: relative;
  isolation: isolate;
}

/* Unified ambient background — one soft palette for the whole page */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(1200px 680px at 50% -8%, rgba(255, 253, 248, 0.95) 0%, transparent 72%),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffdf9 22%,
      var(--bg2) 55%,
      #faf4ea 100%
    );
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: translate, scale;
}

.ambient-orb--sun {
  width: min(82vw, 900px);
  height: min(82vw, 900px);
  top: -22%;
  left: -14%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 250, 242, 0.88) 30%,
    rgba(251, 240, 226, 0.52) 55%,
    rgba(246, 232, 214, 0.2) 78%,
    transparent 100%
  );
  translate: var(--scroll-shift-x) var(--scroll-shift-y);
  animation: ambient-breathe 34s ease-in-out infinite alternate;
}

.ambient-orb--moon {
  width: min(68vw, 740px);
  height: min(68vw, 740px);
  top: 30%;
  right: -18%;
  background: radial-gradient(
    circle at 55% 45%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 252, 247, 0.82) 34%,
    rgba(251, 244, 234, 0.48) 60%,
    rgba(246, 239, 227, 0.18) 82%,
    transparent 100%
  );
  translate: calc(var(--scroll-shift-x) * -0.85) calc(var(--scroll-shift-y) * 1.35);
  animation: ambient-breathe 42s ease-in-out infinite alternate-reverse;
}

.ambient-orb--glow {
  width: min(100vw, 1100px);
  height: min(56vw, 620px);
  left: 10%;
  bottom: -12%;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(255, 250, 242, 0.72) 0%,
    rgba(251, 244, 234, 0.46) 40%,
    rgba(246, 239, 227, 0.24) 62%,
    transparent 86%
  );
  filter: blur(72px);
  translate: calc(var(--scroll-shift-x) * 0.6) calc(var(--scroll-shift-y) * -1.1);
  animation: ambient-breathe 48s ease-in-out infinite alternate;
}

@keyframes ambient-breathe {
  0% {
    scale: 0.97;
    opacity: 0.88;
  }
  100% {
    scale: 1.08;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-orb {
    animation: none;
    filter: blur(56px);
    opacity: 1;
  }
}

a {
  color: inherit;
  text-decoration-color: rgba(181, 138, 106, 0.6);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: rgba(181, 138, 106, 0.95);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: var(--card);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  left: 12px;
  z-index: 9999;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.68) 0%,
    rgba(246, 239, 227, 0.64) 100%
  );
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(246, 239, 227, 0.92) 100%
  );
  backdrop-filter: blur(12px);
}

.mobile-nav {
  display: grid;
  gap: 10px;
  padding: 12px 0 14px;
}

.mobile-nav a:not(.btn) {
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(45, 36, 28, 0.12);
}

.mobile-nav a:not(.btn):hover {
  background: rgba(255, 255, 255, 0.75);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(45, 36, 28, 0.08);
  box-shadow: 0 10px 20px rgba(181, 138, 106, 0.18);
}

.brand-name {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: block;
  line-height: 1.1;
}

.brand-tagline {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 12px;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

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

.btn-primary {
  color: #1c120a;
  background: linear-gradient(180deg, #e8cbb2 0%, #d8b298 100%);
  border-color: rgba(45, 36, 28, 0.12);
  box-shadow: 0 12px 30px rgba(181, 138, 106, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #edd3be 0%, #ddb8a1 100%);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(45, 36, 28, 0.12);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.75);
}

.btn-whatsapp {
  background: #25d366;
  border-color: rgba(0, 0, 0, 0.12);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

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

.btn-icon {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

/* Hero */
.hero {
  padding: 68px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

/* Make the first (hero) image 50% smaller */
#top .media-card {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 0 0 10px;
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: 1.06;
}

.lead {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 16.5px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.micro {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.media-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(217, 191, 167, 0.5) 0%, rgba(181, 138, 106, 0.25) 100%);
  display: grid;
  place-items: center;
  color: rgba(45, 36, 28, 0.6);
  font-weight: 600;
  text-align: center;
  padding: 18px;
}

.media-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.media-img {
  width: 100%;
  height: auto;
  display: block;
  background: rgba(255, 255, 255, 0.6);
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.section-head {
  margin-bottom: 22px;
}

h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  margin: 0 0 10px;
  font-size: clamp(26px, 2.2vw, 34px);
  letter-spacing: 0.2px;
}

.subhead {
  margin: 0;
  color: var(--muted);
}

.prose {
  color: var(--text);
}

.prose p {
  margin: 0 0 12px;
  color: var(--muted);
}

.prose strong {
  color: var(--text);
}

.prose ul {
  margin: 0 0 14px 18px;
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 14px;
}

/* Make the image in the "Over" section smaller */
#over .media-card {
  width: 80%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  box-shadow: 0 10px 24px rgba(45, 36, 28, 0.08);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16.5px;
  letter-spacing: 0.1px;
}

.meta {
  margin: 0 0 10px;
  font-weight: 600;
  color: rgba(45, 36, 28, 0.78);
}

.card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.card ul {
  margin: 0 0 6px 18px;
  color: var(--muted);
}

.card-highlight {
  border-color: rgba(181, 138, 106, 0.35);
  background: linear-gradient(180deg, rgba(255, 250, 242, 1) 0%, rgba(251, 244, 234, 1) 100%);
}

.small {
  font-size: 13.5px;
}

.note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px dashed rgba(45, 36, 28, 0.22);
  background: rgba(255, 255, 255, 0.45);
  color: var(--muted);
}

.center {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.quote-card {
  margin: 14px 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(181, 138, 106, 0.25);
  background: rgba(255, 255, 255, 0.55);
}

.quote-card p {
  margin: 0 0 6px;
  color: rgba(45, 36, 28, 0.82);
  font-weight: 600;
}

.quote-card p:last-child {
  margin-bottom: 0;
}

.signature {
  margin-top: 16px;
  color: rgba(45, 36, 28, 0.7);
  font-weight: 600;
}

/* Reviews carousel */
.reviews-carousel {
  margin-top: 18px;
}

.reviews-carousel__viewport {
  overflow: hidden;
  padding: 4px 2px 8px;
}

.reviews-carousel__track {
  display: flex;
  gap: 14px;
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 28px) / 3);
  display: flex;
  flex-direction: column;
}

.review-card p:last-child {
  margin-bottom: 0;
  flex: 1;
}

.reviews-carousel__controls {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.reviews-carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(45, 36, 28, 0.12);
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.reviews-carousel__btn:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(181, 138, 106, 0.35);
}

.reviews-carousel__btn:active {
  transform: scale(0.96);
}

.reviews-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(181, 138, 106, 0.28);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
}

.reviews-carousel__dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel__track {
    transition: none;
  }
}

/* Contact */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.contact-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-embed {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #ffffff 0%, #fbf7f0 55%, #f6efe3 100%);
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.map-actions {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.map-link {
  display: inline-flex;
  justify-content: center;
  font-weight: 600;
  color: rgba(45, 36, 28, 0.85);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(45, 36, 28, 0.12);
  background: rgba(255, 255, 255, 0.55);
}

.map-link:hover {
  background: rgba(255, 255, 255, 0.75);
}

.map-title {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  margin: 0 0 6px;
  font-size: 22px;
}

.map-sub {
  margin: 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
}

.footer-brand {
  margin: 0;
}

.footer-small {
  margin: 0;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 940px) {
  :root {
    --mobile-header-h: 72px;
  }

  .site-header {
    position: fixed;
    left: 0;
    right: 0;
  }

  #main {
    padding-top: var(--mobile-header-h);
  }

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

  .header-booking {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    top: var(--mobile-header-h);
    bottom: 0;
    overflow: auto;
  }

  #top .media-card {
    width: 100%;
    max-width: 420px;
  }

  #over .media-card {
    width: 100%;
    max-width: none;
  }

  .brand {
    min-width: auto;
  }

  .nav {
    display: none;
  }

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

  .review-card {
    flex: 0 0 calc((100% - 14px) / 2);
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 48px;
  }

  .site-header .container {
    padding-left: 26px;
    padding-right: 26px;
  }

  .section {
    padding: 58px 0;
  }

  .map-embed iframe {
    height: 240px;
  }

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

  .review-card {
    flex: 0 0 100%;
  }

  .btn {
    width: 100%;
  }

  .header-actions .btn {
    width: auto;
  }
}

