:root {
  --bg: #f7f2ea;
  --bg-cream: rgb(246, 241, 232);
  --bg-sand: rgb(246, 241, 232);
  --bg-warm: rgb(246, 241, 232);
  --surface: #ffffff;
  --surface-soft: #fbf7f0;
  --text: #1a2f3f;
  --text-soft: #4a5a6a;
  --text-muted: #8a9099;
  --accent: #a87f3a;
  --accent-soft: #c9a865;
  --accent-deep: #8a6730;
  --line: rgba(26, 47, 63, 0.10);
  --line-soft: rgba(26, 47, 63, 0.06);
  --shadow-soft: 0 10px 40px rgba(26, 47, 63, 0.06);
  --shadow-card: 0 20px 60px rgba(26, 47, 63, 0.10);
  --ease-quiet: cubic-bezier(.22, 1, .36, 1);
  --ease-emphasis: cubic-bezier(.16, 1, .3, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--accent-soft); color: #fff; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1600px; margin: 0 auto; padding: 0 2rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 2rem; height: 1px; background: currentColor;
  opacity: 0.5;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ''; display: inline-block;
  width: 2rem; height: 1px; background: currentColor;
  opacity: 0.5;
}

.section { padding: 8rem 0; position: relative; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem;
}
.section-header .eyebrow { justify-content: center; }
.section-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.7;
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2.5rem;
  transition: all 600ms var(--ease-quiet);
  display: flex; align-items: center; justify-content: space-between;
}
.nav.is-scrolled {
  background: #ffffff;
  padding: 0.5rem 2.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.9rem;
  text-decoration: none;
  line-height: 1;
}
.nav-logo {
  background: #ffffff;
  border-radius: 12px;
  padding: 5px 7px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: box-shadow 600ms var(--ease-quiet);
  flex-shrink: 0;
}
.nav.is-scrolled .nav-logo {
  box-shadow: none;
  padding: 0 7px;
}
.nav-logo img { height: 100px; width: auto; transition: height 600ms var(--ease-quiet); }
.nav.is-scrolled .nav-logo img { height: 52px; }
.nav-brand-text {
  display: flex; flex-direction: column;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
  transition: color 600ms var(--ease-quiet);
}
.nav.is-scrolled .nav-brand-text { color: var(--text); }
.nav-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-top: 4px;
  transition: color 600ms var(--ease-quiet);
}
.nav.is-scrolled .nav-brand-sub { color: var(--accent); }
.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color 400ms var(--ease-quiet);
}
.nav.is-scrolled .nav-links a { color: var(--text-soft); }
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 400ms var(--ease-quiet);
}
.nav-links a:hover { color: #ffffff; }
.nav.is-scrolled .nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  transition: all 400ms var(--ease-quiet);
  white-space: nowrap;
}
.nav.is-scrolled .nav-cta {
  border-color: var(--accent);
  color: var(--accent);
}
.nav-cta:hover,
.nav.is-scrolled .nav-cta:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.nav-cta svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none; border: none;
}
.nav-burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: #fff;
  transition: all 300ms var(--ease-quiet);
}
.nav.is-scrolled .nav-burger span { background: var(--text); }

.mobile-menu {
  position: fixed; top: 0; right: 0;
  width: 100%; max-width: 380px;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  background: var(--bg);
  z-index: 200;
  padding: 5rem 2.5rem 2.5rem;
  transform: translateX(100%);
  transition: transform 500ms var(--ease-emphasis);
  display: flex; flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 1.1rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--text);
  border-bottom: 1px solid var(--line-soft);
  transition: color 300ms, padding-left 300ms;
}
.mobile-menu a:hover { color: var(--accent); padding-left: 0.5rem; }
.mobile-menu a.mobile-menu-phone {
  margin-top: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.08em;
}
.mobile-menu a.mobile-menu-phone:hover { padding-left: 1.5rem; background: var(--accent-deep); }
.mobile-menu-phone svg { width: 16px; height: 16px; }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  background: none; border: none;
  cursor: pointer;
  color: var(--text);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(26, 47, 63, 0.4);
  z-index: 150;
  opacity: 0; visibility: hidden;
  transition: opacity 400ms, visibility 400ms;
}
.mobile-menu-overlay.is-open { opacity: 1; visibility: visible; }

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  opacity: 0;
  filter: blur(12px);
  transition: transform 2.5s var(--ease-emphasis),
              opacity 2.5s var(--ease-emphasis),
              filter 2.5s var(--ease-emphasis);
}
.hero.is-loaded .hero-bg {
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(15, 28, 40, 0.55) 0%, rgba(15, 28, 40, 0.25) 60%, rgba(15, 28, 40, 0.15) 100%),
    linear-gradient(to bottom,
      rgba(26, 47, 63, 0.55) 0%,
      rgba(26, 47, 63, 0.45) 35%,
      rgba(26, 47, 63, 0.65) 75%,
      rgba(26, 47, 63, 0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  max-width: 960px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s var(--ease-quiet) 0.6s, transform 1s var(--ease-quiet) 0.6s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45), 0 0 1px rgba(0,0,0,0.4);
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: ''; display: inline-block;
  width: 2rem; height: 1px;
  background: rgba(255,255,255,0.5);
}
.hero.is-loaded .hero-eyebrow { opacity: 1; transform: none; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 2rem;
  color: #fff;
  opacity: 0; transform: translateY(30px);
  transition: opacity 1.2s var(--ease-quiet) 0.9s, transform 1.2s var(--ease-quiet) 0.9s;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.35),
    0 4px 24px rgba(0,0,0,0.45),
    0 12px 60px rgba(0,0,0,0.35);
  letter-spacing: 0.005em;
}
.hero.is-loaded h1 { opacity: 1; transform: none; }
.hero h1 em {
  font-style: italic;
  color: #f4d9a4;
  font-weight: 400;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.4),
    0 4px 24px rgba(0,0,0,0.5),
    0 0 40px rgba(168, 127, 58, 0.25);
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1.15rem 2.5rem;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s var(--ease-quiet) 1.5s,
              transform 1s var(--ease-quiet) 1.5s,
              background 400ms var(--ease-quiet),
              border-color 400ms var(--ease-quiet);
  box-shadow: 0 8px 28px rgba(168, 127, 58, 0.4), 0 2px 8px rgba(0,0,0,0.2);
}
.hero.is-loaded .hero-cta { opacity: 1; transform: translateY(0); }
.hero-cta:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(168, 127, 58, 0.5), 0 2px 8px rgba(0,0,0,0.25);
}
.hero-cta svg { width: 14px; height: 14px; }
.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.6rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s var(--ease-quiet) 1.7s, transform 1s var(--ease-quiet) 1.7s;
}
.hero.is-loaded .hero-social { opacity: 1; transform: translateY(0); }
.hero-social a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  color: #fff;
  transition: background 300ms var(--ease-quiet), color 300ms var(--ease-quiet),
              border-color 300ms var(--ease-quiet), transform 300ms var(--ease-quiet);
}
.hero-social a:hover {
  background: #fff;
  color: var(--accent-deep);
  border-color: #fff;
  transform: translateY(-3px);
}
.hero-social svg { width: 20px; height: 20px; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  opacity: 0;
  transition: opacity 1s var(--ease-quiet) 1.8s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero.is-loaded .hero-scroll { opacity: 1; }
.hero-scroll-line {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute;
  top: -50%; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #fff);
  animation: scrollDown 2.5s infinite var(--ease-quiet);
}
@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

.services { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card--span2 { grid-column: span 2; }
.feature-card--span3 { grid-column: span 3; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  transition: all 500ms var(--ease-quiet);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 600ms var(--ease-quiet);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--line);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: all 400ms var(--ease-quiet);
}
.feature-card:hover .feature-icon {
  background: var(--accent);
  color: #fff;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.rooms { background: var(--surface); }
.rooms-pair {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.rooms-left {
  position: sticky;
  top: 120px;
}
.rooms-left .eyebrow { margin-bottom: 1.5rem; }
.rooms-left h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.rooms-left p {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  max-width: 420px;
}
.rooms-left-meta {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.rooms-left-meta-item { flex: 1; }
.rooms-left-meta-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.rooms-left-meta-item .label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}
.rooms-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.room-card {
  background: rgb(246, 241, 232);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 500ms var(--ease-quiet);
  position: relative;
  border: 1px solid var(--line-soft);
}
.room-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.room-card-image {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.room-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-quiet);
}
.room-card:hover .room-card-image img { transform: scale(1.05); }
.room-card-tag {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.room-card-body {
  padding: 2.5rem;
}
.room-card-body h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.room-card-body .sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
.room-card-amenities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
}
.room-card-amenities li {
  font-size: 0.9rem;
  color: var(--text-soft);
  display: flex; align-items: center; gap: 0.6rem;
}
.room-card-amenities svg {
  width: 14px; height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.room-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
  gap: 1rem;
}
.room-card-capacity {
  font-size: 0.9rem;
  color: var(--text-soft);
  display: flex; align-items: center; gap: 0.6rem;
}
.room-card-capacity strong {
  color: var(--text);
  font-weight: 500;
}
.room-card-cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0;
  position: relative;
  transition: gap 400ms var(--ease-quiet);
}
.room-card-cta::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 400ms var(--ease-quiet);
}
.room-card-cta:hover { gap: 0.85rem; }
.room-card-cta:hover::after { transform: scaleX(1); }

.transport { background: var(--bg-cream); }
.transport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.transport-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 500ms var(--ease-quiet);
  box-shadow: 0 4px 20px rgba(26, 47, 63, 0.03);
}
.transport-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.transport-card-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-soft);
}
.transport-card-header .eyebrow { margin-bottom: 1rem; }
.transport-card-header h3 {
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.transport-card-header .total {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.transport-route {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.transport-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  position: relative;
}
.transport-step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 72px; left: 27px;
  width: 2px;
  height: calc(100% - 56px);
  background: var(--line);
}
.transport-step-icon {
  width: 56px; height: 56px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  position: relative; z-index: 2;
  border: 4px solid var(--surface);
}
.transport-step-icon svg { width: 24px; height: 24px; }
.transport-step-content h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-family: 'Cormorant Garamond', serif;
}
.transport-step-content p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.transport-step-content p strong {
  color: var(--text);
  font-weight: 500;
}
.transport-step-content .duration {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  padding: 0.3rem 0.75rem;
  background: rgba(168, 127, 58, 0.08);
  border-radius: 999px;
}
.transport-destination {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.5rem; padding-top: 1.75rem;
  border-top: 1px dashed var(--line);
}
.transport-destination-pin {
  width: 40px; height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.transport-destination-pin svg { width: 18px; height: 18px; }
.transport-destination-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  color: var(--text);
}
.transport-destination-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.route-cta {
  max-width: 1100px;
  margin: 2rem auto 0;
  background: var(--text);
  border-radius: 1.25rem;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 14px 40px rgba(26, 47, 63, 0.22);
}
.route-cta-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.route-cta-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-soft);
  flex-shrink: 0;
}
.route-cta-icon svg { width: 24px; height: 24px; }
.route-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.25rem;
}
.route-cta p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.route-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--accent-soft);
  color: var(--text);
  padding: 1.05rem 2.2rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 400ms var(--ease-quiet);
}
.route-cta-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}
.route-cta-btn svg { width: 15px; height: 15px; }

.gallery { background: var(--surface); }
.gallery-tabs {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.gallery-tab {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  background: transparent;
  color: var(--text-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all 400ms var(--ease-quiet);
}
.gallery-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.gallery-tab.is-active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
  transition: opacity 300ms;
}
.gallery-grid.is-switching { opacity: 0; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  background: var(--bg-cream);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-quiet);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,47,63,0.4), transparent 50%);
  opacity: 0;
  transition: opacity 400ms var(--ease-quiet);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-zoom {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: all 400ms var(--ease-quiet);
  z-index: 2;
}
.gallery-item:hover .gallery-item-zoom {
  opacity: 1;
  transform: scale(1);
}
.gallery-item-zoom svg { width: 16px; height: 16px; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 30, 40, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 400ms var(--ease-quiet), visibility 400ms;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 0.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 400ms var(--ease-quiet), opacity 200ms ease;
  object-fit: contain;
}
.lightbox.is-open .lightbox-image { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 300ms;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 300ms;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-counter {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
}

.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.contact-info > p {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 3rem;
  max-width: 420px;
}
.contact-list {
  list-style: none;
}
.contact-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
}
.contact-list li:first-child { padding-top: 0; }
.contact-list-icon {
  width: 56px; height: 56px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact-list-icon svg { width: 20px; height: 20px; }
.contact-list-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.contact-list-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.contact-list-value a { transition: color 300ms; }
.contact-list-value a:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--surface);
  border-radius: 1.25rem;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-soft);
}
.contact-form-wrap h3 {
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
  position: relative;
}
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1rem 1.2rem;
  transition: all 300ms var(--ease-quiet);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(168, 127, 58, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-submit {
  width: 100%;
  padding: 1.2rem 2rem;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer;
  transition: all 400ms var(--ease-quiet);
  margin-top: 1rem;
  border: 1px solid var(--text);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.form-submit:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success.is-visible { display: block; }
.form-success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.form-success-icon svg { width: 32px; height: 32px; }
.form-success h4 {
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--text-soft);
  font-size: 0.95rem;
  max-width: 320px;
  margin: 0 auto;
}

.map {
  background: var(--bg-cream);
  padding: 0;
}
.map-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 5rem 2rem 0;
}
.map-header h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.map-header p {
  color: var(--text-soft);
}
.map-embed {
  width: 100%;
  height: 480px;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.map-embed iframe {
  display: block;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.2) sepia(0.08);
}

.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 6rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.footer-logo {
  background: #ffffff;
  border-radius: 14px;
  padding: 8px 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo img { height: 56px; width: auto; }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1;
  display: block;
}
.footer-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--accent-soft);
  display: block;
  margin-top: 6px;
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.6);
}
.footer-social {
  display: flex; gap: 0.75rem;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 400ms var(--ease-quiet);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.85rem; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 300ms;
}
.footer-col a:hover { color: var(--accent-soft); }
.footer-contact-item {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--accent-soft);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-disclaimer {
  margin-top: 1.2rem;
  padding-bottom: 1.5rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease-quiet), transform 1.2s var(--ease-quiet);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--span3 { grid-column: span 2; }
  .rooms-pair { grid-template-columns: 1fr; gap: 3rem; }
  .rooms-left { position: static; }
  .transport-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
/* Tablet/küçük dizüstü: menü taşmadan burger'a geçsin */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .container, .container-wide { padding: 0 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
  .nav.is-scrolled { padding: 0.75rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-brand-text { font-size: 1.3rem; }
  .nav-logo img { height: 68px; }
  .nav.is-scrolled .nav-logo img { height: 44px; }
  .hero { min-height: 600px; }
  .hero-eyebrow { font-size: 10px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-cta { padding: 1rem 2rem; font-size: 11px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--span2, .feature-card--span3 { grid-column: auto; }
  .feature-card { padding: 2rem 1.5rem; }
  .room-card-body { padding: 1.75rem; }
  .room-card-image { height: 260px; }
  .room-card-amenities { grid-template-columns: 1fr; }
  .route-cta { padding: 2rem 1.5rem; }
  .route-cta-btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .gallery-tab { padding: 0.7rem 1.2rem; font-size: 10px; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
  .lightbox-close { top: 1rem; right: 1rem; width: 40px; height: 40px; }
  .map-embed { height: 360px; }
  .transport-card { padding: 2rem 1.5rem; }
  .rooms-left-meta { flex-direction: column; gap: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg { transform: none; opacity: 1; filter: none; }
  .reveal { opacity: 1; transform: none; }
}

/* Footer sosyal ikonlar altındaki giriş linki */
.footer-login { margin-top: 2rem; }
.footer-login a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: inherit;
  opacity: 0.55;
  text-decoration: none;
  transition: opacity .15s;
}
.footer-login a:hover { opacity: 1; }
.footer-login svg { width: 14px; height: 14px; }

/* Footer yasal metin linkleri */
.footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .15s;
}
.footer-legal-links a:hover { color: var(--accent-soft); }
.footer-legal-sep { opacity: 0.4; }

/* ==== Merkezi modal bileşeni ====
   Kullanım: tetikleyiciye data-modal-open="XXX", markup'ta id="modal-XXX".
   Kapatma öğeleri: data-modal-close. Açık durum: .modal.is-open (JS ekler). */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal.is-open { display: flex; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 30, 0.72);
  backdrop-filter: blur(3px);
}
.modal-box {
  position: relative;
  background: var(--surface);
  color: var(--text);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  width: 100%;
  max-width: 760px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalPop .25s ease;
}
@keyframes modalPop {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  color: var(--text-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
  z-index: 2;
}
.modal-close:hover { background: var(--accent); color: #fff; }
.modal-close svg { width: 20px; height: 20px; }
.modal-body {
  overflow-y: auto;
  padding: 2.6rem 2.4rem 2.4rem;
  -webkit-overflow-scrolling: touch;
}

/* ==== Yasal metin tipografisi (modal içeriği) ==== */
.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin: 0 0 0.3rem;
}
.legal-lead {
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1.2rem;
}
.legal-doc h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.6rem 0 0.5rem;
}
.legal-doc p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0 0 0.9rem;
  overflow-wrap: anywhere;
}
.legal-doc ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}
.legal-doc li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
  overflow-wrap: anywhere;
}
@media (max-width: 640px) {
  .modal { padding: 0; }
  .modal-box { max-width: 100%; max-height: 100vh; height: 100vh; border-radius: 0; }
  .modal-body { padding: 3.2rem 1.3rem 2rem; }
  .legal-title { font-size: 1.6rem; }
}

/* ==== Sabit hızlı iletişim butonları (sol alt: ara, sağ alt: WhatsApp) ====
   .roya-fab kapsayıcı tıklamayı geçirir; butonlar viewport köşelerine sabitlenir. */
.roya-fab {
  position: fixed;
  inset: 0;
  z-index: 140;
  pointer-events: none;
}
.roya-fab-btn {
  position: absolute;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  pointer-events: auto;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(26, 47, 63, 0.28);
  transition: transform 300ms var(--ease-quiet), box-shadow 300ms var(--ease-quiet), background 300ms;
}
.roya-fab-btn svg { width: 32px; height: 32px; }
.roya-fab-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 47, 63, 0.34);
}
.roya-fab-btn:active { transform: translateY(0); }
.roya-fab-call {
  left: calc(1.25rem + env(safe-area-inset-left, 0px));
  background: #2fa84f;
}
.roya-fab-call:hover { background: #278c42; }
.roya-fab-wa {
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  background: #25d366;
}
.roya-fab-wa:hover { background: #1eb455; }
.roya-fab-wa svg { width: 36px; height: 36px; }

@media (max-width: 640px) {
  .roya-fab-btn { width: 62px; height: 62px; bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); }
  .roya-fab-call { left: calc(1rem + env(safe-area-inset-left, 0px)); }
  .roya-fab-wa { right: calc(1rem + env(safe-area-inset-right, 0px)); }
  .roya-fab-btn svg { width: 29px; height: 29px; }
  .roya-fab-wa svg { width: 33px; height: 33px; }
}

@media (prefers-reduced-motion: reduce) {
  .roya-fab-btn { transition: none; }
  .roya-fab-btn:hover { transform: none; }
}
