:root {
  /* Quiet Luxury Design System */
  --bg: #1a2421;
  --bg-light: #f5f2ed;
  --bg-cream: #f5f2ed;
  --bg-warm: #f5f2ed;
  --text: #1a2421;
  --text-light: #ffffff;
  --text-muted: #5a6c62;
  --accent: #c5a059;
  --accent-dark: #a8873d;
  --accent-soft: rgba(197, 160, 89, 0.15);
  --gold: #c5a059;
  --muted: rgba(255, 255, 255, 0.7);
  --border: rgba(255, 255, 255, 0.15);
  --border-light: rgba(26, 36, 33, 0.08);
  --container: 1200px;
  --nav-brown: #1a2421;
  --nav-cream: #f5f2ed;

  /* Quiet Luxury Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --letter-spacing-body: 0.05em;
  --letter-spacing-heading: 0.02em;

  /* Forest Green Palette */
  --forest-green: #1a2421;
  --forest-green-light: #2a3b35;
  --warm-beige: #f5f2ed;
  --warm-beige-dark: #e8e3db;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    var(--font-body),
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  background: var(--bg-cream);
  line-height: 1.7;
  letter-spacing: var(--letter-spacing-body);
  opacity: 0;
  animation: pageFade 0.6s ease forwards;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@keyframes pageFade {
  to {
    opacity: 1;
  }
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  z-index: 2000;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
}

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

::selection {
  background: rgba(181, 138, 99, 0.35);
  color: #111;
}

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  color: #fff;
  --header-bg: rgba(109, 103, 97, 0.92);
  --header-border: rgba(255, 255, 255, 0.18);
  --header-text: rgba(255, 255, 255, 0.95);
  transition: all 0.4s ease;
}

.header--scrolled {
  color: #fff;
  --header-bg: rgba(109, 103, 97, 0.98);
}

.header--transparent {
  --header-bg: transparent;
  --header-border: rgba(255, 255, 255, 0.12);
}

.header.is-light {
  --header-bg: rgba(237, 234, 226, 0.96);
  --header-border: rgba(0, 0, 0, 0.08);
  --header-text: rgba(30, 34, 38, 0.9);
}

.header.is-light.header--transparent {
  --header-bg: rgba(237, 234, 226, 0.45);
}

.header__inner {
  width: min(100% - 48px, 1400px);
  margin-inline: auto;
  display: grid;
  align-items: center;
}

.header__top,
.header__menu {
  background: var(--header-bg);
  backdrop-filter: blur(6px);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.header__menu {
  border-top: 1px solid var(--header-border);
  border-bottom: 1px solid var(--header-border);
}

.header--scrolled .header__top,
.header--scrolled .header__menu {
  background: var(--header-bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header--transparent .header__top,
.header--transparent .header__menu {
  background: rgba(109, 103, 97, 0.35);
  box-shadow: none;
}

.header__inner--top {
  grid-template-columns: 36px 1fr auto;
  height: 56px;
}

.header__inner--menu {
  grid-template-columns: 1fr;
  height: 48px;
}

.header__logo {
  justify-self: center;
  position: relative;
  height: auto;
}

.header__logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.header__logo-images {
  position: relative;
  height: 40px;
}

.header__logo-img {
  height: 40px;
  transition: opacity 0.3s ease;
}

.header__logo-img--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.header.is-light .header__logo-img--light {
  opacity: 0;
}

.header.is-light .header__logo-img--dark {
  opacity: 1;
}

.header__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--header-text);
}

.header__nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--header-text);
  line-height: 1;
  font-weight: 500;
}

.header__nav a {
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.header__nav a:hover {
  color: var(--gold);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.header__action {
  color: var(--header-text);
  transition: color 0.3s ease;
}

.header__action:hover {
  color: #fff;
}

.header__action--button {
  border: 1px solid var(--header-text);
  padding: 10px 18px;
  letter-spacing: 0.18em;
  font-weight: 500;
  transition: all 0.3s ease;
}

.header__action--button:hover {
  background: var(--header-text);
  color: #2a2f36;
}

.header.is-light .header__action--button:hover {
  background: #1e2226;
  color: #fff;
}

.header__divider {
  width: 1px;
  height: 10px;
  background: var(--header-text);
  opacity: 0.4;
}

.btn {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--accent);
  transition: all 0.4s ease;
  background: transparent;
  font-weight: 500;
  cursor: pointer;
}

.btn--ghost {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--solid {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn--solid:hover {
  background: #2a2f36;
}

.header__burger {
  width: 34px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
}

.header__burger span {
  display: block;
  height: 2px;
  background: #fff;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.header__burger--open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.header__burger--open span:nth-child(2) {
  opacity: 0;
}

.header__burger--open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .header__menu {
    display: none;
  }

  .header__actions {
    gap: 10px;
    font-size: 9.5px;
    letter-spacing: 0.18em;
  }
}

.menu {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 6, 0.96);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  z-index: 999;
}

.menu--open {
  opacity: 1;
  visibility: visible;
}

.menu--open .menu__inner {
  animation: menuFade 0.6s ease;
}

@keyframes menuFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu__inner {
  display: grid;
  gap: 18px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2em;
}

.menu__inner a {
  padding: 6px 0;
  transition: color 0.3s ease;
}

.menu__inner a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(255, 255, 255, 0.05),
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.25) 0%,
    rgba(10, 22, 40, 0.35) 50%,
    rgba(10, 22, 40, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 0 16px;
}

.hero__kicker {
  letter-spacing: 0.35em;
  font-size: 11px;
  margin-bottom: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero__meta {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.hero__subtitle {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.booking {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  width: min(100% - 32px, 980px);
  z-index: 3;
}

.booking__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.booking__note {
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero__scroll {
  position: absolute;
  bottom: 22px;
  right: 40px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
  transform: rotate(90deg);
}

.hero__scroll::before {
  content: '';
  position: absolute;
  right: -56px;
  top: 50%;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.booking__field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  color: #111;
}

.booking__field input,
.booking__field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 14px;
  background: #fff;
}

.booking__field input:focus,
.booking__field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(181, 138, 99, 0.2);
}

.section {
  padding: 100px 0;
}

.section + .section {
  border-top: none;
}

.section--dark + .section--dark {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section--dark {
  background: var(--text);
  color: var(--text-light);
}

.section__header {
  text-align: center;
  margin-bottom: 70px;
}

.section__header::after {
  display: none;
}

.story {
  background: var(--bg-warm);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story__panel h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 400;
}

.story__panel p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.story__panel--media {
  display: grid;
  gap: 20px;
}

.story__media {
  height: 380px;
  background-size: cover;
  background-position: center;
  background-color: #e7e1d8;
}

.story__quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--text-muted);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  font-style: italic;
}

.details {
  background: #fff;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.detail-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 28px;
  background: #faf7f2;
}

.detail-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.detail-card p {
  color: rgba(0, 0, 0, 0.65);
}

.signature {
  background: #fff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.signature__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 0;
  text-align: center;
}

.signature__label {
  letter-spacing: 0.25em;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
}

.signature__value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-weight: 300;
  margin: 12px 0;
  color: var(--text);
}

.signature__copy {
  color: var(--text-muted);
  font-size: 14px;
}

.eyebrow {
  letter-spacing: 0.3em;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  margin-top: 8px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.title em {
  font-style: italic;
}

.section--dark .title {
  color: #fff;
}

.lead {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.7);
}

.zpattern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 80px 0;
}

.zpattern--reverse {
  direction: rtl;
}

.zpattern--reverse .zpattern__content {
  direction: ltr;
}

.zpattern__media {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-color: #e7e1d8;
  position: relative;
  overflow: hidden;
}

.zpattern__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.zpattern:hover .zpattern__media img {
  transform: scale(1.03);
}

.zpattern__content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text);
}

.zpattern__content p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
}

.detail-list {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.detail-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.section--dark .zpattern__content h3 {
  color: #fff;
}

.section--dark .zpattern__content p {
  color: rgba(255, 255, 255, 0.7);
}

.section--dark .detail-list {
  color: rgba(255, 255, 255, 0.7);
}

.link {
  display: inline-block;
  margin-top: 16px;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--accent);
  position: relative;
}

.link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  transform: scaleX(0.7);
  transform-origin: left;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.link:hover::after {
  transform: scaleX(1);
  opacity: 0.9;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.5s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.section--dark .card {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card__image {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-color: #e7e1d8;
  position: relative;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__tag {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 8px 14px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(30, 34, 38, 0.85);
  font-weight: 500;
}

.card__body {
  padding: 28px;
}

.card__body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.card__body p {
  color: var(--text-muted);
  line-height: 1.7;
}

.card__list {
  margin-top: 16px;
  padding-left: 0;
  color: var(--text-muted);
  font-size: 13px;
  list-style: none;
}

.card__list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}

.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.section--dark .card__list {
  color: rgba(255, 255, 255, 0.7);
}

.card__body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

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

.tile {
  padding: 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.12em;
  font-size: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s ease;
}

.tile__title {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.25em;
  margin-bottom: 12px;
  font-weight: 500;
}

.tile__meta {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: none;
}

.tile:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery__item {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery__item:hover::after {
  opacity: 1;
}

.media-bg {
  background-color: #e7e1d8;
}

.media-bg.is-loaded {
  background-color: transparent;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sustainability-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.4s ease;
}

.sustainability-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.sustainability-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 14px;
}

.sustainability-card p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item:hover {
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer {
  background: #1e2226;
  color: #fff;
  padding: 100px 0 60px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
}

.footer__brand {
  padding-right: 40px;
}

.footer__logo {
  height: 48px;
  margin-bottom: 24px;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__column h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
}

.footer__column a {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer__column a:hover {
  color: var(--gold);
}

.footer a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

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

.footer__bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 0;
}

.btn:focus-visible,
.header__burger:focus-visible,
.link:focus-visible,
.menu__inner a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Accommodations Page Styles */
.accommodations-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
}

.accommodations-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.accommodations-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
}

.accommodations-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.accommodations-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  margin-bottom: 16px;
}

.accommodations-hero__subtitle {
  font-size: 16px;
  opacity: 0.85;
  letter-spacing: 0.05em;
}

/* Room Cards Grid */
.accommodations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 80px 0;
}

.room-card {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.5s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.room-card__image {
  height: 320px;
  overflow: hidden;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-card__image img {
  transform: scale(1.05);
}

.room-card__content {
  padding: 32px;
}

.room-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}

.room-card__desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-card__meta {
  display: flex;
  gap: 24px;
  color: var(--text-muted);
  font-size: 13px;
}

.room-card__price {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-card__price-label {
  font-size: 13px;
  color: var(--text-muted);
}

.room-card__price-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: var(--gold);
}

@media (max-width: 1100px) {
  .header__nav {
    display: none;
  }
  .header__inner {
    grid-template-columns: 40px 1fr 140px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .booking__inner {
    grid-template-columns: 1fr 1fr;
  }
  .booking__inner .btn {
    grid-column: span 2;
  }
  .booking__note {
    letter-spacing: 0.12em;
  }
  .signature__inner {
    grid-template-columns: 1fr;
  }
  .zpattern {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .sustainability-grid {
    grid-template-columns: 1fr;
  }
  .story__grid {
    grid-template-columns: 1fr;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .accommodations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .header__inner {
    grid-template-columns: 32px 1fr 120px;
  }
  .hero {
    min-height: 100vh;
  }
  .hero__scroll {
    display: none;
  }
  .booking {
    position: static;
    transform: none;
    margin-top: -40px;
  }
  .booking__inner {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   BUNGALOW CARD STYLES
   ============================================================ */
.bungalow-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.5s ease;
}

.bungalow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.bungalow-card__media {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #e7e1d8;
}

.bungalow-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bungalow-card:hover .bungalow-card__media img {
  transform: scale(1.05);
}

.bungalow-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
}

.bungalow-card__content {
  padding: 32px;
}

.bungalow-card__content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4cfc6 0%, #e7e1d8 100%);
}

/* ============================================================
   ROOM HERO & DETAIL STYLES
   ============================================================ */
.room-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.room-hero__media {
  position: absolute;
  inset: 0;
}

.room-hero__media img,
.room-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    transparent 70%
  );
}

.room-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
  width: 100%;
}

.room-hero__back {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.room-hero__back:hover {
  color: var(--gold);
}

.room-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  margin-bottom: 16px;
}

.room-hero__description {
  font-size: 18px;
  max-width: 600px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Room Details Section */
.room-details {
  padding: 100px 0;
  background: var(--bg-cream);
}

.room-gallery {
  margin-bottom: 80px;
}

.room-gallery-slider {
  border-radius: 0;
  overflow: hidden;
}

.room-gallery-slider .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.room-gallery-slider .swiper-button-prev,
.room-gallery-slider .swiper-button-next {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  width: 50px;
  height: 50px;
  border-radius: 0;
}

.room-gallery-slider .swiper-button-prev::after,
.room-gallery-slider .swiper-button-next::after {
  font-size: 18px;
}

.room-features h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 32px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.feature-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.feature-item span {
  font-size: 15px;
  color: var(--text);
}

/* Room Highlights */
.room-highlights {
  background: var(--text);
  color: #fff;
}

.highlight-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.highlight-half {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-half__media {
  position: absolute;
  inset: 0;
}

.highlight-half__media video,
.highlight-half__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-half__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.highlight-half__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

.highlight-half__content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}

.highlight-half__content p {
  font-size: 16px;
  opacity: 0.85;
}

/* ============================================================
   BUTTON VARIANTS (Raffles Style)
   ============================================================ */
.btn-raffles {
  display: inline-block;
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
}

.btn-raffles--primary {
  background: var(--gold);
  color: #fff;
}

.btn-raffles--primary:hover {
  background: #b8944f;
}

.btn-raffles--outline {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
}

.btn-raffles--outline:hover {
  background: var(--text);
  color: #fff;
}

.btn-raffles--white {
  background: #fff;
  color: var(--text);
}

.btn-raffles--white:hover {
  background: var(--gold);
  color: #fff;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold);
}
.flex {
  display: flex;
}
.justify-between {
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-6 {
  margin-bottom: 24px;
}
.opacity-70 {
  opacity: 0.7;
}

.heading-3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlight-split {
    grid-template-columns: 1fr;
  }
  .highlight-half {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .highlight-half {
    min-height: 300px;
  }
  .room-gallery-slider .swiper-slide img {
    height: 100%;
  }
}

@media (max-width: 480px) {
  .highlight-half {
    min-height: 250px;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .room-hero {
    height: 70vh;
  }
  .room-gallery-slider .swiper-slide img {
    height: 350px;
  }
}

/* ============================================================
   PAGE HERO (Alt Sayfalar için — Fotoğrafsız Elegant Tasarım)
   ============================================================ */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(
    170deg,
    #1a2a22 0%,
    #14231b 40%,
    #1e3028 70%,
    #14231b 100%
  );
  padding: clamp(150px, 18vw, 220px) 24px clamp(70px, 9vw, 110px);
}

/* Subtle radial glow behind content */
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(197, 160, 89, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Elegant bottom border transition */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(197, 160, 89, 0.5),
    transparent
  );
  z-index: 2;
}

.page-hero__media {
  display: none !important;
}

.page-hero__overlay {
  display: none !important;
}

.page-hero--light .page-hero__overlay {
  display: none !important;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c5a059;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
}

/* Decorative lines beside eyebrow */
.page-hero__eyebrow::before,
.page-hero__eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: rgba(197, 160, 89, 0.35);
}
.page-hero__eyebrow::before {
  right: calc(100% + 14px);
}
.page-hero__eyebrow::after {
  left: calc(100% + 14px);
}

.page-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.18;
  color: #fff;
  letter-spacing: 0.01em;
}

.page-hero__lead {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
  letter-spacing: 0.04em;
}

/* ============================================================
   SECTION HEADER (Raffles Style)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.section-header__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.section-header__lead {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.about-intro {
  padding: 100px 0;
  background: var(--bg-cream);
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro__image {
  height: 500px;
  overflow: hidden;
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__content {
  padding-right: 40px;
}

.about-intro__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.about-intro__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-intro__title em {
  font-style: italic;
}

.about-intro__text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 32px;
}

/* ============================================================
   DINING PAGE SPECIFIC
   ============================================================ */
.dining-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  color: #fff;
}

.dining-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.dining-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
}

.dining-hero__content {
  position: relative;
  z-index: 2;
}

/* ============================================================
   WELLNESS PAGE SPECIFIC
   ============================================================ */
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.wellness-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.wellness-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.wellness-card__image {
  height: 280px;
  overflow: hidden;
  background: #e7e1d8;
}

.wellness-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.wellness-card:hover .wellness-card__image img {
  transform: scale(1.05);
}

.wellness-card__content {
  padding: 32px;
}

.wellness-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.wellness-card__text {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE - PAGE HERO & SECTIONS
   ============================================================ */
@media (max-width: 900px) {
  .about-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-intro__content {
    padding-right: 0;
  }
  .wellness-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 130px 20px 55px;
  }
  .page-hero__title {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
  }
  .page-hero__eyebrow::before,
  .page-hero__eyebrow::after {
    width: 20px;
  }
  .about-intro__image {
    height: 350px;
  }
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info {
  padding-right: 40px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-item__content h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-item__content p {
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-item__content a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item__content a:hover {
  color: var(--gold);
}

.contact-form-wrapper {
  background: #fff;
  padding: 48px;
  border: 1px solid var(--border-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.map-wrapper {
  width: 100%;
  margin-top: 0;
}

.map-wrapper iframe {
  display: block;
}

/* ============================================================
   OFFERS PAGE STYLES
   ============================================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.offer-card {
  background: #fff;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.offer-card__image {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.offer-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: #fff;
  padding: 8px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.offer-card__body {
  padding: 32px;
}

.offer-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}

.offer-card__text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.offer-card__details {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   GALLERY PAGE STYLES
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: 1/2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__caption {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   GIFT CARD PAGE STYLES
   ============================================================ */
.gift-card-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gift-card__visual {
  position: relative;
}

.gift-card__image {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.gift-card__content {
  padding: 40px 0;
}

.gift-card__content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.2;
}

.gift-card__content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.gift-card__features {
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.gift-card__features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.gift-card__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   SUSTAINABILITY PAGE STYLES
   ============================================================ */
.sustainability-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}

.sustainability-intro p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-muted);
}

.sustainability-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.pillar-card {
  text-align: center;
  padding: 48px 32px;
  background: #fff;
  border: 1px solid var(--border-light);
  transition: transform 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
}

.pillar-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.pillar-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  margin-bottom: 16px;
}

.pillar-card__text {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   ACCOUNT PAGE STYLES
   ============================================================ */
.account-form-wrapper {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  padding: 48px;
  border: 1px solid var(--border-light);
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.account-form .form-group input {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border-light);
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.account-form .form-group input:focus {
  outline: none;
  border-color: var(--gold);
}

.account-links {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.account-links a {
  color: var(--gold);
  text-decoration: none;
}

.account-links a:hover {
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE - CONTACT & OTHER PAGES
   ============================================================ */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-info {
    padding-right: 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .offers-grid {
    grid-template-columns: 1fr;
  }
  .gift-card-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sustainability-pillars {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
  }
}

@media (max-width: 640px) {
  .contact-form-wrapper {
    padding: 32px 24px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gift-card__image {
    height: 350px;
  }
  .gift-card__content h2 {
    font-size: 32px;
  }
}

/* ============================================================
   ROOM GRID & ROOM CARD STYLES
   ============================================================ */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.room-card {
  background: #fff;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.room-card__image {
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.room-card:hover .room-card__image {
  transform: scale(1.05);
}

.room-card--large .room-card__image {
  height: 320px;
}

.room-card__body {
  padding: 28px;
}

.room-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 16px;
}

.room-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
}

.room-card__price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: var(--gold);
  white-space: nowrap;
}

.room-card__price small {
  font-size: 12px;
  color: var(--text-muted);
}

.room-card__desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Detail List for zpattern sections */
.detail-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.detail-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
}

.detail-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================================
   RESPONSIVE - ROOM GRID
   ============================================================ */
@media (max-width: 1024px) {
  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .room-grid,
  .room-grid--2 {
    grid-template-columns: 1fr;
  }
  .room-card__image {
    height: 200px;
  }
  .room-card--large .room-card__image {
    height: 240px;
  }
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================================ */

/* Container Responsive */
@media (max-width: 768px) {
  .container {
    width: calc(100% - 32px);
    padding: 0;
  }

  body {
    font-size: 14px;
  }
}

/* Typography Responsive */
@media (max-width: 768px) {
  h1,
  .heading-1 {
    font-size: 2rem;
  }
  h2,
  .heading-2 {
    font-size: 1.75rem;
  }
  h3,
  .heading-3 {
    font-size: 1.5rem;
  }
  h4,
  .heading-4 {
    font-size: 1.25rem;
  }
}

/* Section Padding Responsive */
@media (max-width: 768px) {
  .section,
  .zpattern-section,
  .cards-section,
  .gallery-showcase,
  .story-section,
  .intro-section,
  .wellness-services,
  .feature-grid-section {
    padding: 60px 0;
  }
}

/* ZPattern Responsive */
@media (max-width: 900px) {
  .zpattern {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zpattern__image {
    order: -1;
  }

  .zpattern--reverse .zpattern__image {
    order: -1;
  }

  .zpattern__content {
    padding: 0;
    text-align: center;
  }
}

/* Cards Responsive */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    margin-bottom: 0;
  }

  .card__image {
    height: 200px;
  }

  .card__body {
    padding: 20px;
  }
}

/* Buttons Responsive */
@media (max-width: 640px) {
  .btn,
  .btn-raffles {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .btn--outline-gold,
  .btn--primary-gold {
    width: 100%;
    text-align: center;
  }
}

/* Touch Targets - Min 44px */
@media (max-width: 768px) {
  button,
  input,
  select,
  textarea {
    min-height: 44px;
  }

  input[type='text'],
  input[type='email'],
  input[type='tel'],
  input[type='date'],
  select,
  textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 14px 16px;
  }
}

/* Hero Responsive — responsive.css overrides with !important */
@media (max-width: 768px) {
  .hero-raffles__country {
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    padding: 0 20px;
  }

  .hero-raffles__headline {
    font-size: 1.6rem;
    padding: 0 20px;
  }

  .hero-raffles__content {
    padding-top: 80px;
    padding-bottom: 200px;
  }
}

@media (max-width: 480px) {
  .hero-raffles__country {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
  }

  .hero-raffles__headline {
    font-size: 1.3rem;
  }
}

/* Page Hero Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 130px 20px 55px;
  }

  .page-hero__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .page-hero__eyebrow::before,
  .page-hero__eyebrow::after {
    width: 22px;
  }
}

/* Footer Responsive - Already in footer but extra safety */
@media (max-width: 768px) {
  .raffles-footer__top-inner,
  .raffles-footer__bottom-inner {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .raffles-footer__brand {
    align-items: center;
  }

  .raffles-footer__social {
    justify-content: center;
  }

  .raffles-footer__newsletter-form {
    flex-direction: column;
  }

  .raffles-footer__newsletter-btn {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
  }

  .raffles-footer__app-inner {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .raffles-footer__app-left {
    flex-direction: column;
  }
}

/* Image Responsive */
@media (max-width: 768px) {
  .zpattern__image img,
  .card__image img,
  .room-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
  }
}

/* Tables Responsive */
@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Forms Responsive */
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .account-form-wrapper {
    padding: 24px;
    margin: 0 16px;
  }
}

/* Spacing Utilities Responsive */
@media (max-width: 768px) {
  .mb-lg {
    margin-bottom: 40px;
  }
  .mb-xl {
    margin-bottom: 60px;
  }
  .pt-lg {
    padding-top: 40px;
  }
  .pt-xl {
    padding-top: 60px;
  }
  .pb-lg {
    padding-bottom: 40px;
  }
  .pb-xl {
    padding-bottom: 60px;
  }
}

/* Hide on Mobile */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Hide on Desktop */
@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Smooth Scroll for Mobile */
@media (max-width: 768px) {
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}

/* Safe Area for Notched Devices */
@supports (padding-top: env(safe-area-inset-top)) {
  body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ============================================================
   2025 LUXURY MOBILE-FIRST RESPONSIVE ENHANCEMENTS
   Modern, Premium, Fully Responsive Design
   ============================================================ */

/* Container Improvements */
@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--container));
  }
}

/* Typography Responsive Scaling */
@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.65;
  }

  h1,
  .h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.15;
  }

  h2,
  .h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.2;
  }

  h3,
  .h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  h1,
  .h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  h2,
  .h2 {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh; /* Use small viewport height for mobile browsers */
  }

  .hero__content {
    padding: 0 20px;
    text-align: center;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: clamp(0.875rem, 3.5vw, 1.125rem);
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
  }

  .hero__subtitle {
    font-size: 0.875rem;
    max-width: 100%;
  }
}

/* Buttons Responsive */
@media (max-width: 768px) {
  .btn,
  button,
  [type='submit'] {
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 0.15em;
    min-height: 48px; /* Touch-friendly */
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn--lg {
    padding: 16px 32px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .btn,
  button,
  [type='submit'] {
    padding: 12px 24px;
    font-size: 11px;
    width: 100%;
    max-width: 320px;
  }
}

/* Cards Grid Responsive */
@media (max-width: 1024px) {
  .cards,
  .grid,
  .accommodations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .cards,
  .grid,
  .accommodations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .cards,
  .grid,
  .accommodations-grid {
    gap: 16px;
  }
}

/* Bungalow Cards Mobile */
@media (max-width: 768px) {
  .bungalow-card__media {
    height: 220px;
  }

  .bungalow-card__content {
    padding: 20px;
  }

  .bungalow-card__title {
    font-size: 1.125rem;
  }

  .bungalow-card__desc {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .bungalow-card__media {
    height: 180px;
  }

  .bungalow-card__content {
    padding: 16px;
  }
}

/* Section Spacing Mobile */
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .section--lg {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }

  .section--lg {
    padding: 50px 0;
  }
}

/* Gallery Grid Mobile */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery__item {
    aspect-ratio: 4/3;
  }
}

/* Forms Mobile */
@media (max-width: 768px) {
  input,
  textarea,
  select {
    font-size: 16px !important; /* Prevent iOS zoom */
    padding: 14px 16px;
    min-height: 48px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .form-row {
    gap: 12px;
  }
}

/* Booking Widget Mobile */
@media (max-width: 768px) {
  .booking {
    margin: 0 16px;
    margin-top: -30px;
  }

  .booking__inner {
    padding: 20px;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .booking {
    margin: 0 12px;
    margin-top: -20px;
  }

  .booking__inner {
    padding: 16px;
    gap: 12px;
  }

  .booking__field label {
    font-size: 10px;
  }

  .booking__field input {
    font-size: 14px;
  }
}

/* Navigation Mobile Improvements */
@media (max-width: 1100px) {
  .header__burger {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

/* Mobile Menu Enhancements */
@media (max-width: 768px) {
  .menu__inner {
    gap: 24px;
    padding: 20px;
  }

  .menu__link {
    font-size: 1.5rem;
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .menu__link {
    font-size: 1.25rem;
    padding: 10px 0;
  }
}

/* Footer Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__col {
    align-items: center;
  }

  .footer__social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 32px 0 20px;
  }

  .footer__logo img {
    max-height: 40px;
  }

  .footer__links {
    gap: 12px;
  }

  .footer__link {
    font-size: 13px;
  }
}

/* Story Section Mobile */
@media (max-width: 768px) {
  .story__grid {
    gap: 32px;
  }

  .story__content {
    padding: 0;
    text-align: center;
  }

  .story__image {
    max-height: 300px;
    order: -1;
  }
}

/* Experience Cards Mobile */
@media (max-width: 768px) {
  .experience-card {
    flex-direction: column;
  }

  .experience-card__image {
    width: 100%;
    height: 200px;
  }

  .experience-card__content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .experience-card__image {
    height: 160px;
  }

  .experience-card__content {
    padding: 20px;
  }

  .experience-card__title {
    font-size: 1.125rem;
  }
}

/* Room Detail Mobile */
@media (max-width: 768px) {
  .room-hero {
    height: 50vh;
    min-height: 300px;
  }

  .room-info {
    padding: 32px 0;
  }

  .room-gallery {
    gap: 8px;
  }

  .room-gallery__item {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .room-hero {
    height: 40vh;
    min-height: 250px;
  }

  .room-gallery__item {
    height: 150px;
  }
}

/* Amenities Grid Mobile */
@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .amenity-item {
    padding: 16px;
    font-size: 13px;
  }

  .amenity-item svg,
  .amenity-item i {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Contact Section Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-map {
    height: 250px;
  }
}

/* Sustainability Grid Mobile */
@media (max-width: 768px) {
  .sustainability-grid {
    gap: 24px;
  }

  .sustainability-card {
    padding: 24px;
  }
}

/* Offers Grid Mobile */
@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .offer-card__image {
    height: 200px;
  }
}

/* Touch-friendly Interactive Elements */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .bungalow-card:hover {
    transform: none;
  }

  .bungalow-card:hover .bungalow-card__media img {
    transform: none;
  }

  /* Add active states for touch */
  .btn:active {
    transform: scale(0.98);
    opacity: 0.9;
  }

  .bungalow-card:active {
    transform: scale(0.99);
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 60px 0;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 0.875rem;
  }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .cards,
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .booking,
  .menu {
    display: none !important;
  }

  .hero {
    min-height: auto;
    page-break-after: always;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
}

/* Reduced Motion Preference Enhancement */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero video,
  .hero__bg video {
    display: none;
  }
}

/* Dark Mode Support (if user prefers) */
@media (prefers-color-scheme: dark) {
  /* Preserve existing design - no changes needed */
}

/* Focus Visible for Accessibility */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Smooth Scroll with Reduced Motion Respect */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ========================================================================
   MISSING RAFFLES STYLES For Homepage (Base & Booking)
   ======================================================================== */

.hero-raffles {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-raffles__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-raffles__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-raffles__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.3) 0%,
    rgba(10, 22, 40, 0.5) 100%
  );
}

.hero-raffles__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-raffles__country {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.4em;
  opacity: 1;
  transform: translateY(0);
}

.hero-raffles__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.15em;
  opacity: 1;
  transform: translateY(0);
  color: rgba(255, 255, 255, 0.75);
}

/* Booking Widget Styles */
.hero-raffles__booking {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 15;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 30px 0;
}
@media (max-width: 768px) {
  .hero-raffles__booking {
    padding: 20px 0;
  }
}

.booking-widget {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .booking-widget {
    padding: 0 20px;
  }
}
@media (max-width: 968px) {
  .booking-widget {
    flex-direction: column;
    align-items: stretch;
    padding: 0 16px;
  }
}

.booking-widget__item {
  flex: 1;
}

.booking-widget__item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0a1628;
  margin-bottom: 8px;
}
.booking-widget__item label svg {
  stroke: #d4af37;
  flex-shrink: 0;
}

.booking-widget__item input,
.booking-widget__item select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(10, 22, 40, 0.2);
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #0a1628;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.booking-widget__item input:focus,
.booking-widget__item select:focus {
  outline: none;
  border-color: #d4af37;
}

.booking-widget__submit {
  flex-shrink: 0;
  padding: 14px 32px;
  background: #0a1628;
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.booking-widget__submit:hover {
  background: #d4af37;
  color: #0a1628;
}
@media (max-width: 968px) {
  .booking-widget__submit {
    width: 100%;
    padding: 16px;
  }
}

/* Responsive Destinations Stack */
.destinations-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .destinations-stack {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Card Improvements for Mobile */
@media (max-width: 768px) {
  .destination-card {
    height: 320px !important; /* Slightly smaller on mobile */
  }
  .destination-card__title {
    font-size: 1.5rem !important;
  }
}
/* --- Mobile Navigation Fixes --- */
@media (max-width: 768px) {
  /* Improve mobile header spacing */
  .site-header {
    padding: 1rem 1.5rem;
  }

  /* Ensure text readability on mobile hero */
  .hero-raffles__country {
    font-size: 1.1rem !important;
    letter-spacing: 0.25em !important;
  }

  .hero-raffles__headline {
    font-size: 1.6rem !important;
    line-height: 1.2;
  }

  /* Booking widget on mobile */
  .hero-raffles__booking {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 2rem;
    padding: 0 1.5rem !important;
    z-index: 20;
  }

  .booking-widget {
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .booking-widget__item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }

  .booking-widget__submit {
    border-radius: 0;
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
  }

  /* Section Spacing on Mobile */
  .section,
  section {
    padding: 3rem 0;
  }

  /* About Section Grid */
  .about-intro__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .about-intro__image {
    height: 300px;
  }

  /* Footer Stack */
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* --- Luxury Feature Section (Accommodations) --- */
.luxury-feature-section {
  background-color: #1a2421;
  color: white;
  padding: 7rem 0 7rem; /* More generous Desktop padding */
  position: relative;
  overflow: hidden;
}

.luxury-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* Image slightly wider on desktop */
  gap: 6rem;
  align-items: center;
}

.luxury-eyebrow {
  color: #c5a059;
  letter-spacing: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.luxury-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1.05;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #fff, #dcdcdc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.luxury-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.luxury-desc .highlight-gold {
  color: #c5a059;
  font-style: italic;
  font-weight: 400;
}

.luxury-features-list {
  display: flex;
  gap: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-item .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(197, 164, 126, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5a059;
  transition: all 0.3s ease;
}

.feature-item:hover .icon-circle {
  background: rgba(197, 164, 126, 0.1);
  border-color: #c5a059;
  transform: scale(1.05);
}

.feature-item span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* Image Styling */
.luxury-image-wrapper {
  position: relative;
  border-radius: 4px; /* Minimal radius looks more elevated */
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.luxury-image {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.05);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.luxury-feature-section:hover .luxury-image {
  transform: scale(1);
}

/* Visibility Helpers */
.mobile-hidden {
  display: block;
}
.desktop-hidden {
  display: none;
}

/* --- Mobile Luxury (The Award Winning Look) --- */
@media (max-width: 968px) {
  .luxury-feature-section {
    padding: 4rem 0; /* Reduced padding */
  }

  .luxury-feature-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Order change: Image first on mobile? Or Text? 
       Let's keep text first but concise */

  .luxury-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .mobile-hidden {
    display: none;
  }
  .desktop-hidden {
    display: block;
  }

  .luxury-features-list {
    flex-direction: column; /* Stack features vertically on strict mobile */
    gap: 1.2rem;
  }
  .luxury-image-wrapper {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    border-radius: 0; /* Edge to edge feeling */
    box-shadow: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- Location Card Styles (Replaces inline styles) --- */
/* Legacy — kept for backward compat */
.location-card-footer {
  display: none;
}

/* ============================================================
   ARTISAN CARTOGRAPHIC MAP CARD — La Radice Retreat
   Premium hand-illustrated location card
   ============================================================ */
.lr-map-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 400px;
  background: #1a2421;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(197, 160, 89, 0.15);
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s ease;
}

.lr-map-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(197, 160, 89, 0.3);
}

/* Double ornamental border */
.lr-map-card__frame {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 2px;
  pointer-events: none;
  z-index: 5;
}
.lr-map-card__frame-inner {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(197, 160, 89, 0.08);
  border-radius: 1px;
  pointer-events: none;
  z-index: 5;
}

/* Top cartouche — vintage map title banner */
.lr-map-card__cartouche {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lr-map-card__cartouche-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(197, 160, 89, 0.5),
    transparent
  );
}
.lr-map-card__cartouche-content {
  text-align: center;
}
.lr-map-card__cartouche-label {
  display: none;
}
.lr-map-card__cartouche-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: #c5a059;
  letter-spacing: 0.35em;
  font-weight: 500;
  margin: 0;
  line-height: 1;
}
.lr-map-card__cartouche-sub {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  color: rgba(197, 160, 89, 0.45);
  letter-spacing: 0.4em;
  font-weight: 400;
  margin-top: 6px;
}

/* Map canvas */
.lr-map-card__canvas {
  position: absolute;
  inset: 0;
}
.lr-map-svg {
  width: 100%;
  height: 100%;
}

/* Bottom footer ribbon */
.lr-map-card__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: linear-gradient(
    to top,
    rgba(26, 36, 33, 0.98) 0%,
    rgba(26, 36, 33, 0.85) 70%,
    transparent 100%
  );
  padding: 2.5rem 2rem 1.2rem;
}
.lr-map-card__footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lr-map-card__footer-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.lr-map-card__footer-icon {
  color: #c5a059;
  display: flex;
  flex-shrink: 0;
}
.lr-map-card__footer-location {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: #fff;
  letter-spacing: 0.03em;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
}
.lr-map-card__footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: #c5a059;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.lr-map-card__footer-btn:hover {
  background: rgba(197, 160, 89, 0.1);
  border-color: #c5a059;
  color: #fff;
}

/* ---- MAP CARD RESPONSIVE ---- */
@media (max-width: 768px) {
  .lr-map-card {
    height: 320px;
    border-radius: 8px;
  }
  .lr-map-card__cartouche {
    top: 16px;
    gap: 10px;
  }
  .lr-map-card__cartouche-line {
    width: 25px;
  }
  .lr-map-card__cartouche-title {
    font-size: 0.95rem;
    letter-spacing: 0.3em;
  }
  .lr-map-card__frame {
    inset: 6px;
  }
  .lr-map-card__frame-inner {
    inset: 10px;
  }
  .lr-map-card__footer {
    padding: 2rem 1.2rem 1rem;
  }
  .lr-map-card__footer-location {
    font-size: 0.85rem;
  }
  .lr-map-card__footer-btn {
    font-size: 0.6rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .lr-map-card {
    height: 360px;
  }
  .lr-map-card__cartouche-label {
    display: none;
  }
  .lr-map-card__footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
  }
  .lr-map-card__footer-text {
    justify-content: center;
  }
  .lr-map-card__footer-btn {
    width: 100%;
    justify-content: center;
  }
}

.location-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1.1rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 58, 42, 0.96);
  border-top: 1px solid rgba(197, 164, 126, 0.25);
  gap: 1rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0; /* Flexbox safe shrinking */
}

.location-city {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 600;
}

.location-details {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; /* Readable chic size */
  color: #c5a059;
  letter-spacing: 0.5px;
  font-weight: 400; /* Lighter weight for elegance */
  font-style: italic; /* Chic look */
  line-height: 1.2;
}

.location-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem; /* Smaller as requested */
  color: #c5a059;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(197, 164, 126, 0.6);
  border-radius: 3px;
  transition: all 0.3s ease;
  font-weight: 700; /* Bold as requested */
  white-space: nowrap;
  flex-shrink: 0; /* Don't shrink the button */
}

.location-map-btn:hover {
  background: rgba(197, 164, 126, 0.1);
  color: #fff;
  border-color: #fff;
}

/* Mobile Tweaks */
@media (max-width: 480px) {
  .location-card-footer {
    padding: 0.9rem 1.2rem;
    flex-wrap: nowrap; /* Keep them side by side but shrink text if needed */
  }
  .location-city {
    font-size: 1.1rem;
  }
  .location-details {
    font-size: 0.85rem;
  }
  .location-map-btn {
    padding: 0.4rem 0.7rem; /* Even smaller on tiny screens */
  }
}

/* --- Updated Location Card Styles (User Request) --- */
.location-single-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; /* Larger and impactful */
  color: #fff;
  letter-spacing: 1px;
  font-weight: 700; /* Bold */
  line-height: 1;
  margin: 0;
  white-space: nowrap; /* Keep it on one line as requested */
}

@media (max-width: 768px) {
  .location-single-title {
    font-size: 1.2rem;
    white-space: normal;
    line-height: 1.15;
  }
}

@media (max-width: 480px) {
  .location-single-title {
    font-size: 1.1rem;
    white-space: normal;
    line-height: 1.1;
  }
}

/* ============================================================
   WELLNESS & EXPERIENCES REDESIGN — Quiet Luxury Components
   ============================================================ */

/* --- Section Warm Background --- */
.section--warm {
  background: var(--bg-warm, #f5f2ed);
}

/* --- Wellness Atmosphere Overlay --- */
.page-hero--wellness .page-hero__overlay--nature {
  background: linear-gradient(
    180deg,
    rgba(26, 36, 33, 0.3) 0%,
    rgba(26, 36, 33, 0.6) 60%,
    rgba(26, 36, 33, 0.85) 100%
  );
}

/* --- Wellness Sensory Cards (Gold-bordered icons) --- */
.wellness-sensory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
}

.wellness-sensory__card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.wellness-sensory__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26, 36, 33, 0.08);
}

.wellness-sensory__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--gold, #c5a059);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #c5a059);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.wellness-sensory__icon svg {
  width: 38px;
  height: 38px;
}

.wellness-sensory__card:hover .wellness-sensory__icon {
  background: var(--gold, #c5a059);
  color: #fff;
}

.wellness-sensory__title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.35rem;
  color: var(--text, #1a2421);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.wellness-sensory__desc {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.95rem;
  color: var(--text-muted, #5a6c62);
  line-height: 1.7;
}

/* --- Wellness CTA Banner --- */
.wellness-cta {
  background: var(--bg, #1a2421);
  padding: 5rem 0;
}

.wellness-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.wellness-cta__title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 2rem;
  color: var(--bg-warm, #f5f2ed);
  margin: 1rem 0;
  letter-spacing: 0.03em;
}

.wellness-cta__desc {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 1rem;
  color: rgba(245, 242, 237, 0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* --- Experience Teleferik Hero --- */
.exp-teleferik {
  padding: 6rem 0;
}

.exp-teleferik__media {
  position: relative;
}

.exp-teleferik__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--gold, #c5a059);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

.exp-teleferik__sub {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 36, 33, 0.1);
}

.exp-teleferik__sub-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.exp-teleferik__sub-item strong {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.05rem;
  color: var(--text, #1a2421);
}

.exp-teleferik__sub-item span {
  font-size: 0.9rem;
  color: var(--text-muted, #5a6c62);
  line-height: 1.6;
}

/* --- Experience Category --- */
.exp-category {
  margin-bottom: 3.5rem;
}

.exp-category:last-child {
  margin-bottom: 0;
}

.exp-category__label {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.15rem;
  color: var(--gold, #c5a059);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

/* --- Experience Grid (Categorized Cards) --- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.exp-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
}

.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(26, 36, 33, 0.1);
}

/* CSS Hover: Zoom-in on image */
.exp-card__image {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.exp-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exp-card:hover .exp-card__image img {
  transform: scale(1.08);
}

/* CSS Hover: Fade-up on content */
.exp-card__content {
  padding: 1.5rem;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.4s ease 0.1s,
    transform 0.4s ease 0.1s;
}

.exp-card:hover .exp-card__content {
  opacity: 1;
  transform: translateY(-4px);
}

.exp-card__tag {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold, #c5a059);
  font-weight: 600;
}

.exp-card__title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.15rem;
  color: var(--text, #1a2421);
  margin: 0.5rem 0;
  letter-spacing: 0.02em;
}

.exp-card__desc {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.88rem;
  color: var(--text-muted, #5a6c62);
  line-height: 1.65;
}

/* --- Panoramic Lake View Banner --- */
.exp-panorama {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.exp-panorama__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.exp-panorama__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 36, 33, 0.5) 0%,
    rgba(26, 36, 33, 0.8) 100%
  );
}

.exp-panorama__inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  z-index: 1;
}

.exp-panorama__title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 2.5rem;
  color: var(--bg-warm, #f5f2ed);
  margin: 1rem 0;
  letter-spacing: 0.03em;
}

.exp-panorama__desc {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 1.05rem;
  color: rgba(245, 242, 237, 0.75);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE — Wellness & Experiences
   ============================================================ */

@media (max-width: 1024px) {
  .wellness-sensory {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .wellness-sensory {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .wellness-sensory__card {
    padding: 2rem 1.5rem;
  }
  .wellness-sensory__icon {
    width: 64px;
    height: 64px;
  }
  .wellness-sensory__icon svg {
    width: 30px;
    height: 30px;
  }
  .wellness-cta__title {
    font-size: 1.5rem;
  }
  .exp-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .exp-panorama {
    padding: 5rem 0;
  }
  .exp-panorama__bg {
    background-attachment: scroll;
  }
  .exp-panorama__title {
    font-size: 1.75rem;
  }
  .exp-teleferik__badge {
    width: 44px;
    height: 44px;
  }
  .exp-teleferik__badge svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .wellness-sensory__title {
    font-size: 1.15rem;
  }
  .wellness-cta {
    padding: 3.5rem 0;
  }
  .wellness-cta__title {
    font-size: 1.35rem;
  }
  .exp-card__content {
    padding: 1.25rem;
  }
  .exp-panorama__title {
    font-size: 1.4rem;
  }
  .exp-panorama__desc {
    font-size: 0.92rem;
  }
}

/* ============================================================
   HIGH-RES DISPLAY — MacBook M4 Retina
   ============================================================ */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .wellness-sensory__icon {
    border-width: 1.5px;
  }
  .exp-category__label {
    border-bottom-width: 0.5px;
  }
}

/* ============================================================
   YOUTUBE SHOWCASE SECTION — Bizi Tanıyın
   Premium cinematic video embed
   ============================================================ */
.yt-showcase {
  padding: 5rem 0;
  background: #0a0f0d;
  position: relative;
  overflow: hidden;
}
.yt-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center top,
    rgba(197, 160, 89, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Header */
.yt-showcase__header {
  text-align: center;
  margin-bottom: 3rem;
}
.yt-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  cursor: default;
}
.yt-showcase__badge:hover {
  background: rgba(255, 0, 0, 0.14);
  border-color: rgba(255, 0, 0, 0.35);
}
.yt-showcase__badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.yt-showcase__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  font-weight: 400;
  margin: 0 0 0.8rem;
  letter-spacing: 0.02em;
}
.yt-showcase__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.03em;
}

/* Video Wrapper */
.yt-showcase__video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 4px;
  border-radius: 16px;
  background: conic-gradient(
    from var(--yt-border-angle, 0deg),
    rgba(197, 160, 89, 0.05) 0%,
    rgba(197, 160, 89, 0.7) 15%,
    rgba(212, 180, 110, 1) 25%,
    rgba(197, 160, 89, 0.7) 35%,
    rgba(197, 160, 89, 0.05) 50%,
    rgba(197, 160, 89, 0.02) 60%,
    rgba(197, 160, 89, 0.05) 75%,
    rgba(197, 160, 89, 0.7) 85%,
    rgba(212, 180, 110, 1) 90%,
    rgba(197, 160, 89, 0.7) 95%,
    rgba(197, 160, 89, 0.05) 100%
  );
  animation: ytBorderSpin 6s linear infinite;
  box-shadow:
    0 0 30px rgba(197, 160, 89, 0.08),
    0 0 60px rgba(197, 160, 89, 0.04);
}
.yt-showcase__video-wrapper:hover {
  box-shadow:
    0 0 40px rgba(197, 160, 89, 0.15),
    0 0 80px rgba(197, 160, 89, 0.08);
}
@property --yt-border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes ytBorderSpin {
  to {
    --yt-border-angle: 360deg;
  }
}
.yt-showcase__video-frame {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(197, 160, 89, 0.08);
  background: #111;
  transition:
    box-shadow 0.4s ease,
    transform 0.4s ease;
}
.yt-showcase__video-frame:hover {
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(197, 160, 89, 0.15);
  transform: translateY(-2px);
}

/* Thumbnail overlay */
.yt-showcase__thumbnail {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-showcase__thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}
.yt-showcase__thumbnail:hover img {
  transform: scale(1.03);
  filter: brightness(0.7);
}

/* Play button */
.yt-showcase__play-btn {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.85;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}
.yt-showcase__thumbnail:hover .yt-showcase__play-btn {
  opacity: 1;
  transform: scale(1.1);
}

/* Pulse animation behind play button */
.yt-showcase__play-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  margin: -45px 0 0 -45px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.15);
  z-index: 1;
  animation: ytPulse 2s ease-in-out infinite;
}
@keyframes ytPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .yt-showcase {
    padding: 3rem 0;
  }
  .yt-showcase__header {
    margin-bottom: 2rem;
  }
  .yt-showcase__video-wrapper {
    margin: 0 1rem;
  }
  .yt-showcase__video-frame {
    border-radius: 8px;
  }
  .yt-showcase__play-btn svg {
    width: 54px;
    height: 38px;
  }
  .yt-showcase__play-pulse {
    width: 70px;
    height: 70px;
    margin: -35px 0 0 -35px;
  }
}

/* ============================================================
   SOCIAL MEDIA SHOWCASE — Sosyal Medya'da Biz
   Phone-mockup cards with platform icons
   ============================================================ */
/* =============================================
   SOSYAL MEDYA SHOWCASE — Gold Theme
   ============================================= */
.sm-showcase {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #1a2421 0%, #243530 50%, #1a2421 100%);
  position: relative;
  overflow: hidden;
}
.sm-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(197, 160, 89, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(197, 160, 89, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.sm-showcase::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(197, 160, 89, 0.5),
    transparent
  );
}

/* Badge */
.sm-showcase__badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #c5a059;
  text-transform: uppercase;
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  background: rgba(197, 160, 89, 0.08);
}

/* Header */
.sm-showcase__header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.sm-showcase__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  font-weight: 400;
  margin: 0 0 0.8rem;
  letter-spacing: 0.02em;
}
.sm-showcase__title em {
  color: #c5a059;
  font-style: italic;
}
.sm-showcase__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.03em;
}

/* Swiper slider wrap */
.sm-showcase__slider-wrap {
  position: relative;
  padding-bottom: 2rem;
  z-index: 2;
}
.smShowcaseSwiper {
  overflow: hidden;
  padding: 1rem 0 2rem;
}
.smShowcaseSwiper .swiper-slide {
  width: 260px;
  display: flex;
  justify-content: center;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

/* Card */
.sm-card {
  flex: 0 0 auto;
  width: 260px;
  text-decoration: none;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}
.sm-card:hover {
  transform: translateY(-8px);
}

/* Phone frame */
.sm-card__phone {
  position: relative;
  width: 100%;
  aspect-ratio: 9/17.5;
  border-radius: 28px;
  overflow: hidden;
  background: #0a0a0a;
  border: 3px solid rgba(197, 160, 89, 0.25);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(197, 160, 89, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.sm-card:hover .sm-card__phone {
  border-color: rgba(197, 160, 89, 0.6);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(197, 160, 89, 0.12),
    0 0 0 1px rgba(197, 160, 89, 0.3);
}

/* Screen */
.sm-card__screen {
  position: absolute;
  inset: 0;
}
.sm-card__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sm-card:hover .sm-card__screen img {
  transform: scale(1.05);
}

/* Overlay */
.sm-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.08) 60%,
    rgba(0, 0, 0, 0.25) 100%
  );
  transition: background 0.3s ease;
}
.sm-card:hover .sm-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.12) 60%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

/* Icons on card — hidden */
.sm-card__icons {
  display: none;
}

.sm-card__play-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.sm-card:hover .sm-card__play-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}

/* Label under card */
.sm-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.sm-card:hover .sm-card__label {
  color: #c5a059;
}

/* Swiper Navigation Arrows */
.sm-swiper-prev,
.sm-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.3);
  background: rgba(26, 36, 33, 0.7);
  color: #c5a059;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}
.sm-swiper-prev {
  left: -8px;
}
.sm-swiper-next {
  right: -8px;
}
.sm-swiper-prev:hover,
.sm-swiper-next:hover {
  background: #c5a059;
  border-color: #c5a059;
  color: #1a2421;
  box-shadow: 0 4px 25px rgba(197, 160, 89, 0.3);
}

/* Swiper Pagination Dots */
.sm-swiper-pagination {
  text-align: center;
  margin-top: 1.5rem;
}
.sm-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  margin: 0 5px !important;
  transition: all 0.3s ease;
}
.sm-swiper-pagination .swiper-pagination-bullet-active {
  background: #c5a059;
  width: 28px;
  border-radius: 4px;
}

/* Scroll Hint */
.sm-showcase__scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  opacity: 0.6;
  animation: smScrollHintPulse 2s ease-in-out infinite;
}
.sm-showcase__scroll-hint span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c5a059;
}
@keyframes smScrollHintPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(0);
  }
  50% {
    opacity: 0.8;
    transform: translateX(5px);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .smShowcaseSwiper .swiper-slide {
    width: 220px;
  }
  .sm-card {
    width: 220px;
  }
  .sm-swiper-prev {
    left: 4px;
  }
  .sm-swiper-next {
    right: 4px;
  }
}
@media (max-width: 480px) {
  .sm-showcase {
    padding: 3rem 0 2.5rem;
  }
  .sm-showcase__header {
    margin-bottom: 2rem;
  }
  .smShowcaseSwiper .swiper-slide {
    width: 200px;
  }
  .sm-card {
    width: 200px;
  }
  .sm-card__phone {
    border-radius: 24px;
  }
  .sm-swiper-prev,
  .sm-swiper-next {
    width: 36px;
    height: 36px;
  }
  .sm-swiper-prev {
    left: 2px;
  }
  .sm-swiper-next {
    right: 2px;
  }
  .sm-showcase__badge {
    font-size: 0.58rem;
    padding: 0.3rem 0.9rem;
  }
}
