:root {
  --bg: #eef6f8;
  --fg: #0b1f2a;
  --sea: #0f766e;
  --sea-bright: #14b8a6;
  --deep: #082f49;
  --muted: #3d5668;
  --border: #b7d5e0;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: linear-gradient(180deg, #dff3f8 0%, var(--bg) 22%, #f7fafc 100%);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.font-display { font-family: var(--font-display); }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(238, 246, 248, .72);
  border-bottom: 1px solid rgba(8,47,73,.08);
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--deep);
  letter-spacing: -0.02em;
}
.nav { display: flex; flex-wrap: wrap; gap: .75rem 1.1rem; font-size: .92rem; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--sea); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: .75rem 1.25rem; font-weight: 600;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: .95rem 1.5rem; font-size: 1.02rem; }
.btn-primary {
  background: var(--sea); color: #fff;
  box-shadow: 0 12px 28px rgba(15, 118, 110, .32);
}
.btn-primary:hover { background: #0d5f59; }
.btn-ghost {
  background: rgba(255,255,255,.16); color: #fff;
  border-color: rgba(255,255,255,.5); backdrop-filter: blur(8px);
}
.btn-outline { background: #fff; border-color: var(--border); color: var(--deep); }

/* Hero ? sinematik foto?raf */
.hero {
  position: relative;
  min-height: min(94vh, 900px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.hero-photo .hero-media {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.06);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(8,47,73,.78) 0%, rgba(8,47,73,.42) 42%, rgba(15,118,110,.2) 100%),
    linear-gradient(to top, rgba(8,47,73,.55), transparent 45%);
}
.hero-inner {
  position: relative; z-index: 3;
  padding: 7.5rem 0 4.8rem;
  max-width: 42rem;
}
.hero-kicker {
  margin: 0 0 .9rem;
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #a5f3fc;
  font-weight: 700;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 7.2vw, 5.2rem);
  line-height: .96;
  margin: 0;
  letter-spacing: -0.03em;
  text-shadow: 0 14px 44px rgba(0,0,0,.35);
}
.hero-lead {
  max-width: 34rem;
  margin: 1.2rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(240, 253, 250, .94);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.85rem; }
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 70px; z-index: 3;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath fill='%23eef6f8' d='M0 34c160 28 280-28 420 0s280 28 420 0 280-28 420 0 160 20 180 0v36H0z'/%3E%3C/svg%3E")
    center/100% 100% no-repeat;
}

/* Mart?lar */
.seagulls { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.gull {
  position: absolute;
  width: 28px; height: 14px;
  opacity: .85;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 32' fill='none'%3E%3Cpath d='M2 18 C18 4 28 4 32 14 C36 4 46 4 62 18' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
  animation: gullFly linear infinite;
}
.g1 { top: 18%; animation-duration: 28s; animation-delay: 0s; transform: scale(.9); }
.g2 { top: 28%; animation-duration: 34s; animation-delay: -8s; transform: scale(1.15); opacity: .7; }
.g3 { top: 14%; animation-duration: 40s; animation-delay: -16s; transform: scale(.75); opacity: .6; }
.g4 { top: 36%; animation-duration: 31s; animation-delay: -22s; transform: scale(1); opacity: .75; }

@keyframes gullFly {
  0% { left: -8%; transform: translateY(0) scale(var(--s, 1)); }
  50% { transform: translateY(-18px) scale(var(--s, 1)); }
  100% { left: 108%; transform: translateY(8px) scale(var(--s, 1)); }
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.2%, 1%, 0); }
}

.reveal {
  opacity: 0; transform: translateY(18px);
  animation: rise .95s ease forwards;
}
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .38s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.section { padding: 3.8rem 0; }
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin: 0 0 .4rem;
  color: var(--deep);
  letter-spacing: -0.02em;
}
.section .lead { color: var(--muted); margin: 0 0 1.4rem; max-width: 36rem; }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 1rem; margin-bottom: .85rem;
}
.text-link { color: var(--sea); font-weight: 700; }
.text-link:hover { text-decoration: underline; }
.meta {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--sea); font-weight: 700;
}

.section-mood { padding-top: 2rem; }
.mood-split {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
}
@media (max-width: 860px) {
  .mood-split { grid-template-columns: 1fr; }
}
.mood-photo {
  min-height: 320px;
  border-radius: 1.5rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(8,47,73,.14);
}
.mood-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: .4rem 0 .4rem .4rem;
}

.stay-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 720px) {
  .stay-grid { grid-template-columns: 1fr; }
}
.stay-card {
  display: grid;
  grid-template-rows: 190px auto;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8,47,73,.08);
  box-shadow: 0 10px 30px rgba(8,47,73,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stay-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(8,47,73,.14);
}
.stay-photo {
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.stay-card:hover .stay-photo { transform: scale(1.05); }
.stay-body { padding: 1.15rem 1.2rem 1.3rem; }
.stay-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: .35rem 0 .35rem;
  color: var(--deep);
}
.stay-body p { margin: 0; color: var(--muted); font-size: .95rem; }

.why {
  background:
    radial-gradient(700px 280px at 15% 0%, rgba(20,184,166,.22), transparent 60%),
    var(--deep);
  color: #e0f2fe;
  padding: 4rem 0;
}
.why h2 { color: #fff; font-family: var(--font-display); margin: 0; }
.why-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 1.7rem;
}
.why-item { padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.why-item h3 {
  font-family: var(--font-display);
  color: #99f6e4;
  margin: 0 0 .4rem;
  font-size: 1.3rem;
}
.why-item p { margin: 0; color: rgba(224,242,254,.84); }

.place-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .place-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .place-grid { grid-template-columns: 1fr; }
}
.place-tile {
  position: relative;
  min-height: 220px;
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex; align-items: flex-end;
  box-shadow: 0 12px 28px rgba(8,47,73,.1);
}
.place-tile-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.place-tile:hover .place-tile-photo { transform: scale(1.06); }
.place-tile-body {
  position: relative; z-index: 1; width: 100%;
  padding: 1.1rem;
  background: linear-gradient(to top, rgba(8,47,73,.85), transparent 70%);
  color: #fff;
}
.place-tile-body .meta { color: #99f6e4; }
.place-tile-body h3 {
  font-family: var(--font-display);
  margin: .25rem 0 0;
  font-size: 1.25rem;
}

.go-band {
  position: relative;
  border-radius: 1.7rem;
  overflow: hidden;
  min-height: 280px;
  display: flex; align-items: end;
  background:
    linear-gradient(100deg, rgba(8,47,73,.82), rgba(8,47,73,.35)),
    var(--go-img) center/cover no-repeat;
  color: #fff;
  box-shadow: 0 18px 40px rgba(8,47,73,.16);
}
.go-copy { padding: clamp(1.5rem, 4vw, 2.5rem); max-width: 34rem; }
.go-copy h2 { margin: 0 0 .6rem; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.go-copy p { margin: 0 0 1rem; color: rgba(236,254,255,.9); }
.go-copy .btn { margin-top: .2rem; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0; color: var(--muted); font-size: .92rem;
  background: rgba(255,255,255,.55);
}
.site-footer .inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
}

.software-credit {
  margin: 0;
  padding: .75rem 1.25rem 1.1rem;
  text-align: center;
  font-size: .78rem;
  line-height: 1.45;
  color: #64748b;
}
.software-credit-copy {
  white-space: nowrap;
}
body.landing-resort .software-credit,
body.property-hotel .software-credit {
  background: #0b1e3b;
  color: rgba(255, 255, 255, .52);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: .7rem 1.25rem 1rem;
}

.form {
  background: #fff; border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.5rem;
}
.form label { display: block; font-size: .9rem; margin-bottom: .9rem; }
.form label > span { display: block; margin-bottom: .35rem; color: var(--muted); }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid var(--border); border-radius: .8rem;
  padding: .65rem .8rem; font: inherit; background: #fff;
}
.form input[type="checkbox"],
.form input[type="radio"] {
  width: auto;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--coral, #f2654a);
}
.form-row { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.form .res-kvkk {
  display: flex !important;
  align-items: flex-start;
  gap: .55rem;
  margin: 1rem 0 .5rem;
  font-size: .88rem;
  line-height: 1.45;
  color: var(--text, #0f172a);
}
.form .res-kvkk > span {
  display: block;
  margin: 0;
  color: inherit;
  min-width: 0;
  flex: 1;
}
.flash { padding: .8rem 1rem; border-radius: .8rem; margin-bottom: 1rem; }
.flash-ok { background: #ecfdf5; color: #065f46; }
.flash-error { background: #fef2f2; color: #991b1b; }
.page-hero { padding: 3rem 0 2rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0; color: var(--deep);
}
.weather-box {
  display: inline-flex; gap: 1rem; align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: 1.1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(8,47,73,.06);
}
.weather-box-lg { min-width: min(100%, 280px); }
.card {
  border: 1px solid var(--border); border-radius: 1.1rem; padding: 1.15rem; background: #fff;
}
.grid-2, .grid-3 { display: grid; gap: 1.1rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.campaign-bar {
  background: linear-gradient(90deg, #ecfdf5, #e0f2fe);
  border-block: 1px solid #99f6e4;
  padding: .75rem 0; overflow-x: auto; white-space: nowrap;
  color: #115e59; font-size: .92rem;
}
.campaign-bar span { margin-right: 1.6rem; font-weight: 600; }

@media (max-width: 720px) {
  .nav { display: none; }
  .hero-inner { padding: 5.5rem 0 3.6rem; }
  .section-head { flex-direction: column; align-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo .hero-media, .gull, .reveal { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .gull { display: none; }
}

/* ?? ??letme tema konseptleri (Begonvil Boutique paleti) ?? */
.theme-begonvil {
  --theme-accent: #c45a7a;
  --theme-soft: #f7eef2;
  --theme-deep: #2a1f28;
  --bq-accent: #c45a7a;
  --bq-soft: #f7eef2;
}
.theme-denizyildizi {
  --theme-accent: #d97757;
  --theme-soft: #fff1e8;
  --theme-deep: #2a1a12;
  --bq-accent: #d97757;
  --bq-soft: #fff1e8;
}
.theme-deniz {
  --theme-accent: #3d6b5a;
  --theme-soft: #eef6f2;
  --theme-deep: #1a2a24;
  --bq-accent: #3d6b5a;
  --bq-soft: #eef6f2;
}
.theme-palmiye {
  --theme-accent: #5a7a4a;
  --theme-soft: #f0f5eb;
  --theme-deep: #1f2a18;
  --bq-accent: #5a7a4a;
  --bq-soft: #f0f5eb;
}
.theme-limon {
  --theme-accent: #b89a3e;
  --theme-soft: #faf6e8;
  --theme-deep: #2a2412;
  --bq-accent: #b89a3e;
  --bq-soft: #faf6e8;
}
.theme-iskele {
  --theme-accent: #4a5f7a;
  --theme-soft: #eef1f5;
  --theme-deep: #1a1f28;
  --bq-accent: #4a5f7a;
  --bq-soft: #eef1f5;
}
.theme-kumsal {
  --theme-accent: #9a8b7a;
  --theme-soft: #f7f3ee;
  --theme-deep: #2a2420;
  --bq-accent: #9a8b7a;
  --bq-soft: #f7f3ee;
}
.theme-mercan {
  --theme-accent: #d4789a;
  --theme-soft: #fdf0f5;
  --theme-deep: #2a1a22;
  --bq-accent: #d4789a;
  --bq-soft: #fdf0f5;
}

.property-hero {
  position: relative; min-height: 52vh; color: #fff;
  display: flex; align-items: flex-end; overflow: hidden;
}
.property-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
}
.property-hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,47,73,.78), rgba(8,47,73,.25) 55%, rgba(0,0,0,.15));
}
.property-hero .wrap { position: relative; z-index: 2; padding: 4.5rem 0 2.8rem; }
.property-hero .meta { color: #fde68a; }
.property-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: .35rem 0; text-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.property-hero .lead { color: rgba(255,255,255,.92); max-width: 36rem; }
.theme-chip {
  display: inline-block; margin-top: .6rem;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px; padding: .25rem .75rem; font-size: .8rem;
}

.gallery-grid {
  display: grid; gap: .65rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.gallery-grid a {
  display: block; border-radius: 1rem; overflow: hidden;
  aspect-ratio: 4/3; background: #e2e8f0;
  box-shadow: 0 8px 20px rgba(8,47,73,.08);
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.gallery-grid a:hover img { transform: scale(1.05); }

.stay-photo-img {
  height: 190px; background-size: cover; background-position: center;
}

/* =========================================================
   LANDING ? Editorial Resort
   ========================================================= */
body.landing-editorial {
  --ed-night: #0a0e12;
  --ed-cream: #f2ebe0;
  --ed-gold: #c9a66b;
  --ed-mist: #8a939c;
  background: var(--ed-night);
  color: var(--ed-cream);
  font-family: "DM Sans", system-ui, sans-serif;
}
body.landing-editorial .font-display,
body.landing-editorial .ed-brand,
body.landing-editorial .ed-section-title,
body.landing-editorial .ed-editorial h2,
body.landing-editorial .ed-room-copy h3,
body.landing-editorial .ed-finale h2,
body.landing-editorial .ed-place-body h3,
body.landing-editorial .ed-why h3,
body.landing-editorial .brand {
  font-family: "Cormorant Garamond", Georgia, serif;
}
body.landing-editorial .site-header {
  position: fixed; inset: 0 0 auto; width: 100%;
  background: transparent; border: 0; backdrop-filter: none;
}
body.landing-editorial .site-header .brand {
  color: #fff; letter-spacing: .06em; font-size: 1.2rem; font-weight: 600;
}
body.landing-editorial .nav a { color: rgba(242,235,224,.82); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
body.landing-editorial .nav a:hover { color: var(--ed-gold); }
body.landing-editorial .header-cta,
body.landing-editorial .site-header .btn-primary {
  background: var(--ed-gold); color: #1a1208; box-shadow: none; border-radius: 2px;
  font-size: .82rem; letter-spacing: .04em; padding: .7rem 1.1rem;
}
body.landing-editorial .header-cta:hover { background: #d4b57a; }
body.landing-editorial .site-footer {
  background: #070a0d; border-top: 1px solid rgba(201,166,107,.2);
  color: var(--ed-mist);
}
body.landing-editorial .site-footer a { color: var(--ed-cream); }
body.landing-editorial .site-footer .font-display { color: var(--ed-gold); }

.ed-hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: grid; place-items: center; text-align: center; color: #fff;
  overflow: hidden;
}
.ed-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: heroDrift 24s ease-in-out infinite alternate;
}
.ed-hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(10,14,18,.35) 50%, rgba(10,14,18,.9) 100%),
    linear-gradient(180deg, rgba(10,14,18,.35), rgba(10,14,18,.72));
}
.ed-hero-copy { position: relative; z-index: 2; padding: 6rem 1.5rem 4rem; max-width: 900px; }
.ed-brand {
  font-size: clamp(3.2rem, 9vw, 6.4rem); font-weight: 600;
  line-height: .95; letter-spacing: -.02em; margin: 0 0 1.5rem;
}
.ed-line {
  font-size: 1.05rem; color: #d8cfc0; max-width: 380px;
  margin: 0 auto 2rem; line-height: 1.55;
}
.ed-actions { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ed-gold, #c9a66b); color: #1a1208;
  padding: .9rem 1.6rem; border-radius: 2px;
  font-weight: 600; font-size: .88rem; letter-spacing: .06em;
  transition: opacity .2s;
}
.btn-gold:hover { opacity: .9; }
.btn-gold-sm { padding: .65rem 1.15rem; font-size: .8rem; }
.btn-ghost-ed {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(242,235,224,.45); color: #f2ebe0;
  padding: .9rem 1.6rem; border-radius: 2px;
  font-size: .88rem; letter-spacing: .06em;
}
.btn-ghost-ed:hover { border-color: #fff; color: #fff; }
.ed-scroll-hint {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(242,235,224,.45); z-index: 2;
}

.ed-campaign {
  background: rgba(201,166,107,.12); border-block: 1px solid rgba(201,166,107,.25);
  padding: .75rem 0; color: var(--ed-gold); font-size: .9rem; text-align: center;
}
.ed-campaign span { margin: 0 .8rem; }

.ed-editorial {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 6rem 2rem;
}
.ed-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem; color: var(--ed-gold); line-height: 1; margin-bottom: .4rem;
}
.ed-editorial h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 500; font-style: italic;
  line-height: 1.15; margin: 0 0 1.1rem; color: var(--ed-cream);
}
.ed-editorial p { color: var(--ed-mist); line-height: 1.7; font-size: 1.02rem; max-width: 420px; margin: 0 0 1.4rem; }
.ed-frame {
  aspect-ratio: 4/5; overflow: hidden; border-radius: 2px;
  box-shadow: 0 40px 80px rgba(0,0,0,.45);
}
.ed-frame-photo { width: 100%; height: 100%; background-size: cover; background-position: center; }
.weather-box-dark {
  background: rgba(255,255,255,.06); border: 1px solid rgba(201,166,107,.25);
  color: var(--ed-cream); box-shadow: none;
}

.ed-scroll-label {
  padding: 0 2rem 1.1rem; max-width: 1200px; margin: 0 auto;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ed-gold);
}
.ed-hscroll {
  display: flex; gap: 1rem; overflow-x: auto; padding: 0 2rem 4.5rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.ed-hscroll::-webkit-scrollbar { height: 3px; }
.ed-hscroll::-webkit-scrollbar-thumb { background: var(--ed-gold); }
.ed-shot {
  flex: 0 0 340px; height: 420px; scroll-snap-align: start;
  position: relative; overflow: hidden; border-radius: 2px;
}
.ed-shot:nth-child(2n) { flex-basis: 460px; }
.ed-shot-img {
  width: 100%; height: 100%; background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.ed-shot:hover .ed-shot-img { transform: scale(1.04); }
.ed-cap {
  position: absolute; left: 1rem; bottom: 1rem;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(10,14,18,.65); padding: .5rem .75rem; color: #fff;
}

.ed-rooms { padding: 2rem 0 5rem; }
.ed-section-title {
  font-size: clamp(2.2rem, 4vw, 2.9rem); font-weight: 500; margin: 0 0 2.2rem;
  border-bottom: 1px solid rgba(201,166,107,.35); padding-bottom: 1.1rem; color: var(--ed-cream);
}
.ed-room-row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem;
  padding: 2.2rem 0; border-bottom: 1px solid rgba(242,235,224,.1);
  align-items: center; color: inherit;
}
.ed-room-row--flip { direction: rtl; }
.ed-room-row--flip > * { direction: ltr; }
.ed-room-pic {
  aspect-ratio: 16/10; background-size: cover; background-position: center; border-radius: 2px;
}
.ed-meta {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ed-gold); margin: 0 0 .5rem; font-weight: 600;
}
.ed-room-copy h3 {
  font-size: 1.9rem; font-weight: 500; margin: 0 0 .65rem; color: var(--ed-cream);
}
.ed-room-copy p { color: var(--ed-mist); margin: 0 0 1.2rem; line-height: 1.55; }
.ed-muted { color: var(--ed-mist); }

.ed-why { padding: 3rem 0 5rem; border-top: 1px solid rgba(242,235,224,.08); }
.ed-why-grid {
  display: grid; gap: 2rem; grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ed-why h3 { font-size: 1.45rem; margin: .4rem 0 .5rem; color: var(--ed-cream); font-weight: 500; }
.ed-why p { margin: 0; color: var(--ed-mist); line-height: 1.55; }

.ed-places { padding: 0 0 5rem; }
.ed-places-head {
  display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1.5rem;
}
.ed-places-head .ed-section-title { margin: 0; border: 0; padding: 0; }
.ed-text-link { color: var(--ed-gold); font-weight: 600; font-size: .92rem; }
.ed-place-grid {
  display: grid; gap: 1rem; grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ed-place {
  position: relative; min-height: 240px; overflow: hidden; border-radius: 2px;
  display: flex; align-items: flex-end;
}
.ed-place-photo {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.ed-place:hover .ed-place-photo { transform: scale(1.05); }
.ed-place-body {
  position: relative; z-index: 1; width: 100%; padding: 1.2rem;
  background: linear-gradient(to top, rgba(10,14,18,.88), transparent 70%);
}
.ed-place-body h3 { margin: .3rem 0 0; font-size: 1.35rem; font-weight: 500; }

.ed-finale {
  position: relative; min-height: 420px;
  display: grid; place-items: center; text-align: center; padding: 4rem 1.5rem;
  overflow: hidden;
}
.ed-finale-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.ed-finale-veil { position: absolute; inset: 0; background: rgba(10,14,18,.62); }
.ed-finale-inner { position: relative; z-index: 2; max-width: 640px; }
.ed-finale h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-style: italic; font-weight: 500;
  margin: 0 0 1rem; color: #fff;
}
.ed-finale p { color: #d8cfc0; margin: 0 0 1.5rem; }

@media (max-width: 900px) {
  body.landing-editorial .nav { display: none; }
  .ed-editorial { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.25rem; }
  .ed-room-row, .ed-room-row--flip {
    grid-template-columns: 1fr; direction: ltr; gap: 1.25rem;
  }
  .ed-why-grid, .ed-place-grid { grid-template-columns: 1fr; }
  .ed-shot { flex-basis: 280px; height: 340px; }
  .ed-places-head { flex-direction: column; align-items: start; }
}

/* =========================================================
   PROPERTY ? Begonvil Boutique
   ========================================================= */
body.boutique-shell {
  --bq-ink: #2a1f28;
  --bq-cream: #fff9f6;
  --bq-blush: #f7eef2;
  --bq-sand: #f0e4dc;
  --bq-accent: #c45a7a;
  --bq-soft: #f7eef2;
  background: var(--bq-cream);
  color: var(--bq-ink);
  font-family: "Outfit", system-ui, sans-serif;
}
body.boutique-shell::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(232,180,196,.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 15%, rgba(61,107,90,.1), transparent 50%),
    linear-gradient(180deg, #fff9f6 0%, #f7eef2 45%, #fff9f6 100%);
}
body.boutique-shell .brand,
body.boutique-shell .bq-brand,
body.boutique-shell .bq-section h2,
body.boutique-shell .bq-list-hero h1,
body.boutique-shell .bq-prop-body h3,
body.boutique-shell .bq-room-card h3,
body.boutique-shell .bq-quote blockquote,
body.boutique-shell .font-display {
  font-family: "Fraunces", Georgia, serif;
}
body.boutique-shell .site-header {
  background: rgba(255,249,246,.82);
  border-bottom: 1px solid rgba(42,31,40,.06);
}
body.boutique-shell .brand { color: var(--bq-accent); font-weight: 600; }
body.boutique-shell .nav a { color: #7a6570; }
body.boutique-shell .nav a:hover { color: var(--bq-accent); }
body.boutique-shell .header-cta,
body.boutique-shell .site-header .btn-primary {
  background: var(--bq-accent); color: #fff; box-shadow: 0 10px 28px rgba(196,90,122,.28);
}
body.boutique-shell .site-footer {
  background: rgba(255,255,255,.6); border-top: 1px solid var(--bq-sand); color: #7a6570;
}

.bq-page,
.bq-prop {
  --bq-accent: var(--theme-accent, #c45a7a);
  --bq-soft: var(--theme-soft, #f7eef2);
}
.bq-hero {
  position: relative; margin: 0 1.25rem; border-radius: 1.75rem; overflow: hidden;
  min-height: calc(100vh - 110px); min-height: calc(100dvh - 110px);
  display: grid; align-items: end; color: #fff;
}
.bq-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.04); animation: heroDrift 22s ease-in-out infinite alternate;
}
.bq-hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,31,40,.12) 0%, rgba(42,31,40,.5) 55%, rgba(42,31,40,.78) 100%);
}
.bq-hero-copy { position: relative; z-index: 2; padding: 3rem 2.5rem 3.5rem; max-width: 640px; }
.bq-theme-pill {
  display: inline-block; background: rgba(255,255,255,.92); color: var(--bq-accent);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .75rem; border-radius: 999px; margin-bottom: .9rem;
}
.bq-brand {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 600;
  line-height: 1.05; margin: 0 0 .85rem;
}
.bq-sub { font-size: 1.05rem; opacity: .92; line-height: 1.5; margin: 0 0 1.5rem; max-width: 400px; }
.bq-cta-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.bq-btn-solid {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--bq-ink); padding: .85rem 1.4rem;
  border-radius: 999px; font-weight: 700; font-size: .9rem;
}
.bq-btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.7); color: #fff;
  padding: .85rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: .9rem;
}
.bq-btn-block { width: 100%; margin-top: 1rem; background: var(--bq-accent); color: #fff; }

.bq-book {
  max-width: 960px; margin: -2.2rem auto 0; position: relative; z-index: 5;
  background: #fff; border-radius: 1.25rem; padding: 1.1rem 1.35rem;
  box-shadow: 0 20px 50px rgba(196,90,122,.15);
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 1rem; align-items: end;
}
.bq-book label {
  display: block; font-size: .7rem; color: #8a6f7a; margin-bottom: .3rem;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.bq-book input, .bq-book select {
  width: 100%; border: 1px solid var(--bq-sand); border-radius: .75rem;
  padding: .75rem .9rem; font: inherit; background: var(--bq-blush);
}
.bq-book button {
  background: var(--bq-accent); color: #fff; border: 0; border-radius: 999px;
  padding: .9rem 1.6rem; font-weight: 700; cursor: pointer; white-space: nowrap; font: inherit;
}

.bq-section { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
.bq-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.35rem); font-weight: 600; margin: 0 0 .5rem; color: var(--bq-ink);
}
.bq-lead { color: #7a6570; margin: 0 0 1.8rem; max-width: 480px; line-height: 1.5; }
.bq-mt { margin-top: 2.4rem !important; }
.bq-muted { color: #9a8490; font-size: .92rem; }
.bq-prose { white-space: pre-line; color: #5a4a52; line-height: 1.65; margin: 0; }

.bq-mosaic {
  display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 200px 200px; gap: .9rem;
}
.bq-mosaic-a, .bq-mosaic-b, .bq-mosaic-c {
  border-radius: 1.35rem; background-size: cover; background-position: center;
}
.bq-mosaic-a { grid-row: 1 / 3; }

.bq-about-grid {
  display: grid; gap: 2rem; grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
}
.bq-gallery {
  display: grid; gap: .65rem; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: .8rem;
}
.bq-gallery a {
  display: block; border-radius: 1rem; overflow: hidden; aspect-ratio: 4/3; background: var(--bq-sand);
}
.bq-gallery img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.bq-gallery a:hover img { transform: scale(1.05); }

.bq-rooms { display: grid; gap: 1rem; margin-top: 1rem; }
.bq-room-card {
  background: #fff; border-radius: 1.35rem; padding: 1.25rem 1.4rem;
  box-shadow: 0 12px 36px rgba(42,31,40,.06);
}
.bq-room-card h3 { margin: 0 0 .4rem; font-size: 1.25rem; }
.bq-room-card p { margin: 0 0 1rem; color: #7a6570; font-size: .95rem; }
.bq-room-row { display: flex; justify-content: space-between; align-items: center; gap: .75rem; }
.bq-price { font-weight: 700; color: var(--bq-accent); }
.bq-go {
  background: var(--bq-ink); color: #fff; padding: .55rem 1rem;
  border-radius: 999px; font-size: .82rem; font-weight: 600;
}

.bq-aside { position: sticky; top: 5.5rem; align-self: start; }
.bq-contact {
  background: #fff; border-radius: 1.5rem; padding: 1.4rem 1.5rem;
  box-shadow: 0 12px 40px rgba(42,31,40,.06);
}
.bq-contact h3 { font-family: "Fraunces", Georgia, serif; margin: 0 0 .75rem; }
.bq-contact p { margin: 0 0 .5rem; color: #7a6570; }
.bq-map {
  width: 100%; height: 180px; border: 0; border-radius: 12px; margin-top: 1rem;
}

.bq-quote {
  text-align: center; padding: 2rem 2rem 5rem; max-width: 640px; margin: 0 auto;
}
.bq-quote blockquote {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 500;
  line-height: 1.35; color: var(--bq-accent); margin: 0 0 .9rem;
}
.bq-quote cite { color: #9a8490; font-style: normal; font-size: .9rem; }

.bq-list-hero { padding: 3.5rem 0 1rem; text-align: center; }
.bq-list-hero .bq-kicker {
  letter-spacing: .2em; text-transform: uppercase; font-size: .72rem;
  color: var(--bq-accent); font-weight: 700; margin: 0 0 .6rem;
}
.bq-list-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem); margin: 0 0 .6rem; color: var(--bq-ink);
}
.bq-list-hero .bq-lead { margin-inline: auto; }

.bq-props {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem;
}
.bq-prop {
  background: #fff; border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 12px 40px rgba(42,31,40,.06);
  transition: transform .25s ease;
  display: block; color: inherit;
}
.bq-prop:hover { transform: translateY(-6px); }
.bq-prop-pic {
  aspect-ratio: 16/11; background-size: cover; background-position: center; position: relative;
}
.bq-prop-pic .bq-theme-pill { position: absolute; top: .9rem; left: .9rem; margin: 0; }
.bq-prop-body { padding: 1.3rem 1.4rem 1.5rem; }
.bq-prop-body h3 { margin: 0 0 .4rem; font-size: 1.4rem; }
.bq-prop-body p { margin: 0 0 1rem; color: #7a6570; font-size: .92rem; line-height: 1.45; }

@media (max-width: 860px) {
  body.boutique-shell .nav { display: none; }
  .bq-hero { margin: 0 .75rem; min-height: 70vh; }
  .bq-hero-copy { padding: 2rem 1.5rem 2.5rem; }
  .bq-book { margin: -1.6rem 1rem 0; grid-template-columns: 1fr 1fr; }
  .bq-book button { grid-column: 1 / -1; }
  .bq-mosaic { grid-template-columns: 1fr; grid-template-rows: 220px 140px 140px; }
  .bq-mosaic-a { grid-row: auto; }
  .bq-about-grid { grid-template-columns: 1fr; }
  .bq-aside { position: static; }
  .bq-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bq-props { grid-template-columns: 1fr; }
  .bq-section { padding: 2.5rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ed-hero-bg, .bq-hero-bg { animation: none !important; }
}

/* =========================================================
   LANDING ? Resort Mockup (navy + coral)
   ========================================================= */
body.landing-resort {
  --lr-navy: #0a1c2e;
  --lr-navy-2: #12263a;
  --lr-coral: #f2654a;
  --lr-coral-dark: #d94f36;
  --lr-teal: #3aa8a4;
  --lr-ink: #142033;
  --lr-muted: #5c6b7a;
  --lr-bg: #ffffff;
  --lr-soft: #f4f7f9;
  --lr-line: #e4ebf0;
  background: var(--lr-bg);
  color: var(--lr-ink);
  font-family: "Outfit", "DM Sans", system-ui, sans-serif;
}
body.landing-resort h1,
body.landing-resort h2,
body.landing-resort h3,
body.landing-resort .brand,
body.landing-resort .lr-footer-brand {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
}
body.landing-resort .site-header {
  position: absolute; inset: 0 0 auto; width: 100%;
  background: transparent; border: 0; backdrop-filter: none; z-index: 40;
}
body.landing-resort .site-header .inner { padding: 1.1rem 0; }
body.landing-resort .brand {
  display: inline-flex; align-items: center; gap: .55rem;
  color: #fff; font-size: 1.15rem; font-weight: 600; letter-spacing: -.01em;
}
body.landing-resort .brand-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #f6c85a 0 28%, transparent 29%),
    linear-gradient(180deg, transparent 45%, #3aa8a4 46% 100%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35);
  flex-shrink: 0;
}
body.landing-resort .nav a {
  color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 500;
}
body.landing-resort .nav a:hover { color: #fff; }
body.landing-resort .header-phone {
  color: #fff; font-weight: 600; font-size: .9rem;
  border: 1px solid rgba(255,255,255,.45); border-radius: 999px;
  padding: .55rem 1rem;
}
body.landing-resort .header-phone:hover { background: rgba(255,255,255,.12); }

.lr-hero {
  position: relative; min-height: 92vh; min-height: 92dvh;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; padding: 0 0 7.5rem; overflow: hidden;
}
.lr-hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  opacity: 0; transition: opacity .7s ease;
  transform: scale(1.02);
  pointer-events: none;
}
.lr-hero-slide.is-on {
  opacity: 1; pointer-events: auto;
  animation: heroDrift 24s ease-in-out infinite alternate;
}
.lr-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  transform: scale(1.04);
  animation: heroDrift 24s ease-in-out infinite alternate;
}
.lr-hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,28,46,.45) 0%, rgba(10,28,46,.25) 35%, rgba(10,28,46,.72) 100%);
}
.lr-hero-nav {
  position: absolute; z-index: 5; top: 42%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.18); color: #fff; font-size: 1.35rem;
  line-height: 1; cursor: pointer; backdrop-filter: blur(4px);
}
.lr-hero-prev { left: .85rem; }
.lr-hero-next { right: .85rem; }
.lr-hero-nav:hover { background: rgba(255,255,255,.3); }
.lr-hero-dots {
  position: absolute; z-index: 5; left: 50%; bottom: 6.8rem;
  transform: translateX(-50%); display: flex; gap: .4rem;
}
.lr-hero-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: rgba(255,255,255,.45); cursor: pointer;
}
.lr-hero-dots button.is-on {
  background: #fff; width: 22px; border-radius: 999px;
}
@media (prefers-reduced-motion: reduce) {
  .lr-hero-slide, .lr-hero-slide.is-on { animation: none; transition: none; }
}
.lr-hero-copy {
  position: relative; z-index: 2;
  width: min(1120px, calc(100% - 2rem)); margin: 0 auto 2rem;
  max-width: 40rem; padding-top: 7rem;
}
.lr-hero-copy h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.8rem); font-weight: 700;
  line-height: 1.08; margin: 0 0 1rem; letter-spacing: -.02em;
  text-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.lr-hero-copy p {
  margin: 0 0 1.6rem; font-size: 1.08rem; color: rgba(255,255,255,.9);
  max-width: 28rem; line-height: 1.55;
}
.lr-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.lr-btn-coral {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--lr-coral); color: #fff; font-weight: 700;
  padding: .9rem 1.45rem; border-radius: .55rem; border: 0;
  font-size: .92rem; letter-spacing: .02em; cursor: pointer;
  transition: background .2s, transform .2s;
}
.lr-btn-coral:hover { background: var(--lr-coral-dark); transform: translateY(-1px); color: #fff; }
.lr-btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.75); color: #fff;
  padding: .9rem 1.45rem; border-radius: .55rem; font-weight: 600; font-size: .92rem;
}
.lr-btn-outline:hover { background: rgba(255,255,255,.12); }
.lr-btn-outline-coral {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--lr-coral); color: var(--lr-coral);
  padding: .55rem 1.15rem; border-radius: .5rem; font-weight: 700; font-size: .82rem;
  margin-top: 1rem; align-self: flex-start;
}
.lr-btn-outline-coral:hover { background: var(--lr-coral); color: #fff; }

.lr-book {
  position: relative; z-index: 3;
  width: min(1120px, calc(100% - 2rem)); margin: 0 auto;
  background: rgba(10,28,46,.88); backdrop-filter: blur(12px);
  border-radius: .85rem; padding: 1.15rem 1.25rem .9rem;
  box-shadow: 0 24px 60px rgba(10,28,46,.35);
}
.lr-book-fields {
  display: grid; gap: .85rem;
  grid-template-columns: 1.3fr 1fr 1fr .8fr auto; align-items: end;
}
.lr-book label span {
  display: block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: .35rem; font-weight: 600;
}
.lr-book select, .lr-book input {
  width: 100%; border: 0; border-radius: .45rem;
  padding: .75rem .85rem; font: inherit; background: #fff; color: var(--lr-ink);
}
.lr-book-submit { white-space: nowrap; padding: .85rem 1.5rem; height: 46px; }
.lr-book-note {
  margin: .7rem 0 0; font-size: .78rem; color: rgba(255,255,255,.7);
}

.lr-campaign {
  background: #fff3ef; border-bottom: 1px solid #ffd5cb;
  padding: .7rem 0; text-align: center; color: var(--lr-coral-dark); font-weight: 600; font-size: .9rem;
}
.lr-campaign span { margin: 0 .75rem; }

/* —— Kampanya motoru —— */
.cp-bar {
  text-align: center; padding: .55rem 1rem; font-size: .86rem; font-weight: 600; z-index: 30;
}
.cp-bar a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.cp-bar--top { position: relative; }
.cp-bar--bottom {
  position: sticky; bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.cp-bar--soft { background: #fff3ef; color: #9a3412; border-bottom: 1px solid #ffd5cb; }
.cp-bar--navy { background: #0b1e3b; color: #fff; border-bottom: 0; }
.cp-bar--coral { background: #f2654a; color: #fff; border-bottom: 0; }

.cp-marquee {
  overflow: hidden; white-space: nowrap;
  padding: .55rem 0; background: #fff3ef; color: #9a3412;
  border-bottom: 1px solid #ffd5cb; font-weight: 600; font-size: .86rem;
}
.cp-marquee-track {
  display: inline-block; padding-left: 0;
  animation: cp-marquee 28s linear infinite;
}
.cp-marquee-track a {
  display: inline-block; color: inherit; margin: 0 2.5rem;
  text-decoration: underline; text-underline-offset: 3px;
}
@keyframes cp-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .cp-marquee-track { animation: none; white-space: normal; padding: 0 1rem; }
  .cp-marquee-track a { display: inline; margin: 0 .75rem; }
}

.cp-rotator {
  text-align: center; padding: .65rem 1rem; min-height: 2.6rem;
  background: #fff3ef; color: #9a3412; border-bottom: 1px solid #ffd5cb;
  font-weight: 600; font-size: .9rem; position: relative;
}
.cp-rotator-item {
  display: none; color: inherit; text-decoration: underline; text-underline-offset: 3px;
}
.cp-rotator-item.is-on { display: inline; animation: cp-fade .45s ease; }
@keyframes cp-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cp-offers-grid {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.cp-offer-card {
  background: #fff; border: 1px solid var(--lr-line, #e2e8f0); border-radius: .9rem;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 10px 30px rgba(10,28,46,.06);
}
.cp-offer-img {
  display: block; height: 150px; background: #cbd5e1 center/cover no-repeat;
}
.cp-offer-img--empty { background: linear-gradient(135deg, #0b1e3b, #1e3a5f); }
.cp-offer-body { padding: 1rem 1.05rem 1.15rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.cp-offer-body strong { color: #0b1e3b; font-size: 1rem; }
.cp-offer-body p { margin: 0; color: #64748b; font-size: .88rem; line-height: 1.45; flex: 1; }
.cp-offer-cta {
  align-self: start; margin-top: .25rem; background: #f2654a; color: #fff;
  border-radius: 999px; padding: .45rem .9rem; font-size: .8rem; font-weight: 700;
}
.cp-offer-cta:hover { filter: brightness(1.05); }

.cp-prop-banner {
  margin: 0 0 1rem; padding: .85rem 1rem; border-radius: 12px;
  background: #fff3ef; border: 1px solid #ffd5cb; color: #9a3412;
  font-weight: 600; font-size: .9rem; text-align: center;
}
.cp-prop-banner a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

.cp-popup-layer {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(11,30,59,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.cp-popup-layer[hidden] { display: none !important; }
.cp-popup {
  width: min(420px, 100%); background: #fff; border-radius: 16px; overflow: hidden;
  position: relative; max-height: min(90vh, 640px); overflow-y: auto;
}
.cp-popup-x {
  position: absolute; top: .55rem; right: .55rem; width: 32px; height: 32px;
  border: none; border-radius: 999px; background: rgba(0,0,0,.45); color: #fff;
  font-size: 1.15rem; line-height: 1; cursor: pointer; z-index: 2;
}
.cp-popup-img { height: 160px; background: #0b1e3b center/cover no-repeat; }
.cp-popup-body { padding: 1.1rem 1.2rem 1.25rem; }
.cp-popup-body h2 {
  margin: 0 0 .4rem; font-family: var(--font-display, Georgia, serif);
  font-size: 1.4rem; color: #0b1e3b;
}
.cp-popup-body p { margin: 0 0 1rem; color: #64748b; font-size: .9rem; line-height: 1.45; }
.cp-popup-actions { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.cp-popup-cta {
  display: inline-flex; background: #f2654a; color: #fff; border-radius: 999px;
  padding: .55rem 1rem; font-size: .84rem; font-weight: 700;
}
.cp-popup-dismiss {
  border: 1px solid #e2e8f0; background: #fff; border-radius: 999px;
  padding: .5rem .85rem; font-size: .8rem; font-weight: 600; color: #64748b; cursor: pointer;
}

.lr-section { padding: 4.5rem 0; }
.lr-section-soft { background: var(--lr-soft); }
.lr-head { text-align: center; max-width: 40rem; margin: 0 auto 2.5rem; }
.lr-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 700;
  margin: 0 0 .6rem; color: var(--lr-navy); letter-spacing: -.02em;
}
.lr-head p { margin: 0; color: var(--lr-muted); font-size: 1.02rem; }
.lr-hash { color: var(--lr-coral); }

.lr-prop-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lr-prop-card {
  background: #fff; border-radius: .9rem; overflow: hidden;
  border: 1px solid var(--lr-line);
  box-shadow: 0 10px 30px rgba(10,28,46,.06);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.lr-prop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10,28,46,.12);
}
.lr-prop-photo {
  position: relative; aspect-ratio: 16/10;
  background-size: cover; background-position: center;
}
.lr-badge {
  position: absolute; top: .85rem; right: .85rem;
  background: var(--lr-teal); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: .35rem .7rem; border-radius: 999px;
}
.lr-prop-body {
  padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; flex: 1;
}
.lr-prop-body h3 {
  margin: 0 0 .45rem; font-size: 1.35rem; color: var(--lr-navy); font-weight: 700;
}
.lr-prop-body > p {
  margin: 0; color: var(--lr-muted); font-size: .95rem; line-height: 1.5; flex: 1;
}
.lr-prop-meta {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; margin-top: 1rem;
}
.lr-stars { color: #e8a317; font-size: .92rem; letter-spacing: .05em; }
.lr-stars em { font-style: normal; color: var(--lr-muted); font-size: .82rem; margin-left: .25rem; }
.lr-amenities { display: flex; gap: .55rem; color: var(--lr-teal); }

.lr-why {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.lr-why-item { text-align: center; padding: .5rem; }
.lr-why-icon {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  border-radius: 50%; background: #e8f6f5; color: var(--lr-teal);
  display: grid; place-items: center;
}
.lr-why-item h3 {
  margin: 0 0 .45rem; font-size: 1.1rem; color: var(--lr-navy); font-weight: 700;
}
.lr-why-item p { margin: 0; color: var(--lr-muted); font-size: .92rem; line-height: 1.5; }

.lr-discover {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.lr-discover-card {
  background: #fff; border-radius: .85rem; overflow: hidden;
  border: 1px solid var(--lr-line); color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.lr-discover-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(10,28,46,.1);
}
.lr-discover-photo { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.lr-discover-body { padding: 1rem 1.1rem 1.2rem; }
.lr-discover-body h3 { margin: 0 0 .35rem; font-size: 1.1rem; color: var(--lr-navy); }
.lr-discover-body p { margin: 0 0 .7rem; color: var(--lr-muted); font-size: .88rem; }
.lr-discover-body span { color: var(--lr-coral); font-weight: 700; font-size: .88rem; }
.lr-place-links {
  display: flex; flex-wrap: wrap; gap: .6rem 1.1rem; justify-content: center;
  margin-top: 1.75rem; font-size: .92rem;
}
.lr-place-links a { color: var(--lr-muted); }
.lr-place-links a:hover { color: var(--lr-coral); }
.lr-place-links .lr-more { color: var(--lr-coral); font-weight: 700; }

.lr-reviews {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lr-review {
  margin: 0; background: #fff; border: 1px solid var(--lr-line);
  border-radius: .85rem; padding: 1.35rem 1.4rem;
  box-shadow: 0 8px 24px rgba(10,28,46,.05);
}
.lr-review-top { display: flex; gap: .85rem; align-items: center; margin-bottom: .75rem; }
.lr-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--lr-navy); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.lr-review-date { font-size: .78rem; color: var(--lr-muted); }
.lr-review p { margin: .6rem 0 0; color: var(--lr-muted); line-height: 1.55; font-size: .95rem; }

.lr-ig {
  display: grid; gap: .65rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.lr-ig-cell {
  aspect-ratio: 1; border-radius: .55rem;
  background-size: cover; background-position: center;
  display: block;
  text-decoration: none;
  transition: transform .25s ease, opacity .25s ease;
}
a.lr-ig-cell:hover {
  transform: scale(1.02);
  opacity: .92;
}
.lr-ig-cta { text-align: center; margin-top: 1.5rem; }
.lr-btn-ig {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--lr-soft); color: var(--lr-navy); border: 1px solid var(--lr-line);
  padding: .9rem 1.6rem; border-radius: .55rem; font-weight: 600;
}
.lr-btn-ig:hover { border-color: var(--lr-coral); color: var(--lr-coral); }

.lr-map-section {
  padding: 4rem 0 5rem;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, #e8f0e4 0%, transparent 60%),
    linear-gradient(180deg, #f7f3ea, #eef2f4);
}
.lr-map-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.2fr .9fr; align-items: center;
}
.lr-map-visual {
  min-height: 340px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(10,28,46,.12);
  border: 1px solid var(--lr-line);
  background: #dce6ef;
}
.lr-real-map {
  width: 100%;
  height: 100%;
  min-height: 380px;
  z-index: 0;
}
.lr-map-card {
  background: #fff; border-radius: 1rem; padding: 2rem 1.85rem;
  box-shadow: 0 18px 50px rgba(10,28,46,.1); border: 1px solid var(--lr-line);
}
.lr-map-card h2 {
  margin: 0 0 .7rem; font-size: 1.7rem; color: var(--lr-navy);
}
.lr-map-card > p { margin: 0 0 1rem; color: var(--lr-muted); line-height: 1.55; }
.lr-map-card ul { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.lr-map-card li { padding: .35rem 0; border-bottom: 1px solid var(--lr-line); }
.lr-map-card li a { color: var(--lr-navy); font-weight: 600; }
.lr-map-card li a:hover { color: var(--lr-coral); }
.weather-box-lr {
  margin-top: 1.25rem; width: 100%;
  background: var(--lr-soft); border-color: var(--lr-line);
}
.lr-map-pin {
  background: transparent; border: 0;
}
.lr-map-pin-dot {
  display: block; width: 18px; height: 18px;
  background: var(--lr-coral); border: 2px solid #fff;
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(242,101,74,.45);
}

.lr-footer {
  background: var(--lr-navy); color: rgba(255,255,255,.78); padding: 3.5rem 0 0;
}
.lr-footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr; padding-bottom: 2.5rem;
}
.lr-footer-brand {
  display: block; color: #fff; font-size: 1.35rem; margin-bottom: .7rem;
}
.lr-footer p { margin: 0 0 .8rem; line-height: 1.55; font-size: .92rem; }
.lr-footer h4 {
  margin: 0 0 .9rem; color: #fff; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; font-family: "Outfit", sans-serif;
}
.lr-footer a {
  display: block; color: rgba(255,255,255,.72); font-size: .92rem;
  padding: .2rem 0;
}
.lr-footer a:hover { color: #fff; }
.lr-footer .lr-btn-coral { display: inline-flex; margin-top: .4rem; }
.lr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1rem 0;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.lr-footer-bottom .wrap {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.lr-footer-bottom a { display: inline; color: rgba(255,255,255,.55); }
.lr-empty { color: var(--lr-muted); grid-column: 1 / -1; text-align: center; }

@media (max-width: 980px) {
  body.landing-resort .nav { display: none; }
  .lr-book-fields { grid-template-columns: 1fr 1fr; }
  .lr-book-submit { grid-column: 1 / -1; }
  .lr-prop-grid { grid-template-columns: 1fr; }
  .lr-why { grid-template-columns: 1fr 1fr; }
  .lr-discover { grid-template-columns: 1fr 1fr; }
  .lr-reviews { grid-template-columns: 1fr; }
  .lr-ig { grid-template-columns: repeat(3, 1fr); }
  .lr-map-grid, .lr-footer-grid { grid-template-columns: 1fr; }
  .lr-hero { padding-bottom: 2rem; min-height: auto; }
  .lr-hero-copy { padding-top: 6.5rem; margin-bottom: 1.25rem; }
}
@media (max-width: 560px) {
  .lr-why, .lr-discover { grid-template-columns: 1fr; }
  .lr-book-fields { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .lr-hero-bg { animation: none !important; }
}

/* =========================================================
   PROPERTY DETAIL ? Hotel portal theme (navy + coral)
   ========================================================= */
body.property-hotel {
  --ph-navy: #0b1e3b;
  --ph-coral: #f06a4d;
  --ph-coral-dark: #d9553a;
  --ph-ink: #142033;
  --ph-muted: #5c6b7a;
  --ph-soft: #f8f9fa;
  --ph-line: #e6ebf0;
  background: #fff;
  color: var(--ph-ink);
  font-family: "Outfit", "DM Sans", system-ui, sans-serif;
}
body.property-hotel h1,
body.property-hotel h2,
body.property-hotel h3,
body.property-hotel .brand,
body.property-hotel .ph-footer-brand {
  font-family: "Playfair Display", Georgia, serif;
}

/* Shared navy chrome (property + optional) */
.site-header--navy {
  position: sticky; top: 0; z-index: 50;
  background: var(--ph-navy, #0b1e3b);
  border: 0; backdrop-filter: none;
}
.site-header--navy .brand {
  color: #fff; display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600;
}
.site-header--navy .brand-mark {
  width: 32px; height: 32px; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #f6c85a 0 28%, transparent 29%),
    linear-gradient(180deg, transparent 45%, #3aa8a4 46% 100%);
  flex-shrink: 0;
}
.site-header--navy .nav a { color: rgba(255,255,255,.88); }
.site-header--navy .nav a:hover { color: #fff; }
.header-cta-coral {
  display: inline-flex; align-items: center; justify-content: center;
  background: #f06a4d; color: #fff !important; font-weight: 700;
  padding: .55rem 1.1rem; border-radius: .45rem; font-size: .88rem;
}
.header-cta-coral:hover { background: #d9553a; }

/* Landing keeps transparent hero header */
body.landing-resort .site-header--navy {
  position: absolute; background: transparent;
}
body.landing-resort .header-cta-coral {
  background: transparent; border: 1px solid rgba(255,255,255,.5);
  color: #fff !important;
}
body.landing-resort .header-cta-coral:hover { background: rgba(255,255,255,.12); }

.ph-crumb {
  display: flex; flex-wrap: wrap; gap: .4rem .55rem; align-items: center;
  padding: .85rem 0; font-size: .86rem; color: var(--ph-muted);
}
.ph-crumb a { color: var(--ph-muted); }
.ph-crumb a:hover { color: var(--ph-coral); }
.ph-crumb span:last-child { color: var(--ph-ink); font-weight: 600; }

.ph-gallery {
  display: grid; gap: .55rem;
  grid-template-columns: 1.35fr 1fr;
  min-height: 420px; margin-bottom: 1.5rem;
}
.ph-gallery--single {
  grid-template-columns: 1fr;
  min-height: 0;
}
.ph-gallery--single .ph-gallery-main {
  min-height: 380px;
  max-height: 520px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.ph-gallery-main,
.ph-gallery-cell {
  background-size: cover; background-position: center; border-radius: .65rem;
}
.ph-gallery-main { min-height: 420px; }
.ph-gallery-side {
  display: grid; gap: .55rem; grid-template-rows: 1fr 1fr 1fr;
}
.ph-gallery-cell { position: relative; min-height: 130px; }
.ph-gallery-all {
  position: absolute; right: .75rem; bottom: .75rem;
  background: rgba(11,30,59,.88); color: #fff;
  font-size: .78rem; font-weight: 700; padding: .55rem .85rem;
  border-radius: .4rem;
}
.ph-gallery-all:hover { background: var(--ph-coral); color: #fff; }

.ph-main {
  display: grid; gap: 1.75rem;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, .85fr);
  align-items: start; padding-bottom: 2rem;
}
.ph-titleblock h1 {
  margin: .35rem 0 .75rem; font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--ph-navy); font-weight: 700;
}
.ph-theme-tag {
  display: inline-block; background: #fff0ec; color: var(--ph-coral);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .3rem .65rem; border-radius: 999px;
}
.ph-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .85rem; }
.ph-badges span {
  background: var(--ph-soft); border: 1px solid var(--ph-line);
  font-size: .78rem; padding: .3rem .65rem; border-radius: 999px; color: var(--ph-muted);
}
.ph-rating-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .75rem;
  margin-bottom: .5rem;
}
.ph-score {
  background: var(--ph-navy); color: #fff; border-radius: .4rem;
  padding: .2rem .5rem; font-size: .95rem;
}
.ph-stars { color: var(--ph-coral); letter-spacing: .05em; }
.ph-rating-row a { color: #2b6cb0; font-size: .9rem; }
.ph-address { margin: 0; color: var(--ph-muted); font-size: .92rem; }
.ph-address a { color: #2b6cb0; }

.ph-tabs {
  display: flex; gap: .2rem 1.1rem; flex-wrap: wrap;
  border-bottom: 1px solid var(--ph-line); margin: 1.4rem 0 0; padding-bottom: 0;
  position: sticky; top: 64px; background: #fff; z-index: 20;
}
.ph-tabs a {
  padding: .85rem 0; font-size: .9rem; font-weight: 600; color: var(--ph-muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.ph-tabs a:hover { color: var(--ph-navy); }
.ph-tabs a:focus { color: var(--ph-coral); border-bottom-color: var(--ph-coral); }

.ph-section { padding: 2rem 0 1rem; }
.ph-section h2 {
  margin: 0 0 1.1rem; font-size: 1.55rem; color: var(--ph-navy); font-weight: 700;
}
.ph-section-soft { background: var(--ph-soft); padding: 2.5rem 0; }
.ph-about-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1.4fr 1fr;
}
.ph-prose {
  margin: 0; white-space: pre-line; color: var(--ph-muted); line-height: 1.65;
}
.ph-highlights {
  list-style: none; margin: 0; padding: 1.1rem 1.2rem;
  background: var(--ph-soft); border-radius: .75rem; border: 1px solid var(--ph-line);
}
.ph-highlights-title {
  font-weight: 700; color: var(--ph-navy); margin-bottom: .5rem !important;
}
.ph-highlights li {
  display: flex; gap: .5rem; padding: .35rem 0; color: var(--ph-ink); font-size: .92rem;
}
.ph-highlights li span { color: var(--ph-coral); font-weight: 700; }

.ph-rooms {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.ph-room {
  border: 1px solid var(--ph-line); border-radius: .75rem; overflow: hidden;
  background: #fff; display: flex; flex-direction: column;
  box-shadow: 0 8px 24px rgba(11,30,59,.05);
}
.ph-room-photo { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.ph-room-body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.ph-room-body h3 { margin: 0 0 .35rem; font-size: 1.15rem; color: var(--ph-navy); }
.ph-room-meta { margin: 0; color: var(--ph-muted); font-size: .88rem; flex: 1; }
.ph-room-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: .75rem; margin-top: 1rem;
}
.ph-price strong { color: var(--ph-navy); font-size: 1.1rem; }
.ph-price span { color: var(--ph-muted); font-size: .85rem; }

.ph-amenities {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ph-amenity {
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  text-align: center; color: var(--ph-muted); font-size: .85rem; font-weight: 600;
}
.ph-amenity svg { color: var(--ph-navy); }

.ph-sidebar { position: sticky; top: 5.5rem; }
.ph-book {
  background: #fff; border: 1px solid var(--ph-line); border-radius: .85rem;
  padding: 1.25rem 1.3rem 1.35rem;
  box-shadow: 0 16px 40px rgba(11,30,59,.1);
  border-top: 3px solid var(--ph-navy);
}
.ph-book h3 {
  margin: 0 0 1rem; font-size: 1.2rem; color: var(--ph-navy);
}
.ph-book label { display: block; margin-bottom: .75rem; }
.ph-book label span {
  display: block; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ph-muted); margin-bottom: .3rem; font-weight: 700;
}
.ph-book input, .ph-book select {
  width: 100%; border: 1px solid var(--ph-line); border-radius: .45rem;
  padding: .7rem .8rem; font: inherit; background: var(--ph-soft);
}
.ph-btn-coral {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ph-coral); color: #fff; font-weight: 700;
  padding: .75rem 1.15rem; border-radius: .45rem; border: 0; cursor: pointer;
  font-size: .88rem; font-family: inherit;
}
.ph-btn-coral:hover { background: var(--ph-coral-dark); color: #fff; }
.ph-btn-block { width: 100%; margin-top: .35rem; padding: .95rem 1rem; }
.ph-cta-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: .35rem;
}
.ph-cta-duo a {
  text-align: center;
  text-decoration: none;
  padding: .85rem .6rem;
  border-radius: 10px;
  font-weight: 700;
}
.ph-btn-outline-coral {
  display: inline-block;
  border: 2px solid var(--ph-coral, #f2654a);
  color: var(--ph-coral, #f2654a);
  background: #fff;
}
.ph-btn-ghost {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(11,30,59,.2);
  color: var(--ph-navy, #0b1e3b);
  border-radius: 10px;
  padding: .7rem 1rem;
  font-weight: 600;
  cursor: pointer;
}
.ph-trust {
  list-style: none; margin: .9rem 0 0; padding: 0;
  font-size: .82rem; color: var(--ph-muted);
}
.ph-trust li { padding: .2rem 0; }
.ph-trust a { color: #25d366; font-weight: 700; }

.ph-banner {
  position: relative; min-height: 280px; margin: 1rem 0 0;
  display: grid; align-items: center; color: #fff; overflow: hidden;
}
.ph-banner-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.ph-banner-veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,30,59,.78), rgba(11,30,59,.35));
}
.ph-banner-copy { position: relative; z-index: 2; padding: 3rem 0; max-width: 36rem; }
.ph-banner-copy h2 { margin: 0 0 .5rem; font-size: clamp(1.8rem, 3vw, 2.4rem); color: #fff; }
.ph-banner-copy p { margin: 0 0 1.1rem; color: rgba(255,255,255,.9); }

.ph-loc-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr 1.2fr; align-items: start;
}
.ph-distances { list-style: none; margin: 0 0 1rem; padding: 0; }
.ph-distances li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .85rem 0; border-bottom: 1px solid var(--ph-line);
}
.ph-distances strong { color: var(--ph-navy); }
.ph-distances span { color: var(--ph-muted); }
.ph-map {
  border-radius: .75rem; overflow: hidden; min-height: 260px;
  border: 1px solid var(--ph-line); background: var(--ph-soft);
}
.ph-map iframe { width: 100%; height: 280px; border: 0; display: block; }
.ph-map-placeholder {
  min-height: 260px; display: grid; place-content: center; text-align: center; gap: .35rem;
  color: var(--ph-muted);
}
.ph-map-placeholder strong { color: var(--ph-navy); font-size: 1.2rem; }

.ph-review-summary {
  display: grid; gap: 1.5rem; grid-template-columns: auto 1fr;
  align-items: center; margin-bottom: 1.5rem;
}
.ph-big-score {
  font-size: 3.2rem; font-weight: 700; color: var(--ph-navy);
  line-height: 1; font-family: "Playfair Display", Georgia, serif;
}
.ph-bars { display: grid; gap: .55rem; }
.ph-bar { display: grid; grid-template-columns: 130px 1fr; gap: .75rem; align-items: center; font-size: .85rem; }
.ph-bar-track { height: 8px; background: #e2e8f0; border-radius: 999px; overflow: hidden; }
.ph-bar-track i { display: block; height: 100%; background: var(--ph-coral); border-radius: 999px; }
.ph-reviews {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ph-review {
  margin: 0; background: #fff; border: 1px solid var(--ph-line);
  border-radius: .75rem; padding: 1.15rem 1.2rem;
}
.ph-review-top { display: flex; gap: .75rem; align-items: center; margin-bottom: .55rem; }
.ph-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ph-navy); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.ph-review p { margin: .45rem 0 0; color: var(--ph-muted); line-height: 1.5; font-size: .92rem; }
.ph-muted { color: var(--ph-muted); font-size: .9rem; }

.ph-rules {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ph-rules > div {
  background: var(--ph-soft); border: 1px solid var(--ph-line);
  border-radius: .65rem; padding: 1rem 1.1rem;
}
.ph-rules strong { display: block; color: var(--ph-navy); margin-bottom: .25rem; }
.ph-rules span { color: var(--ph-muted); font-size: .9rem; }

.ph-full-gallery {
  display: grid; gap: .55rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ph-full-gallery a {
  display: block; aspect-ratio: 4/3; border-radius: .55rem; overflow: hidden; background: #e2e8f0;
}
.ph-full-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ph-cta-band {
  background: var(--ph-coral); color: #fff; padding: 2.2rem 0;
}
.ph-cta-band .wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.ph-cta-band h2 { margin: 0 0 .35rem; color: #fff; font-size: 1.6rem; }
.ph-cta-band p { margin: 0; opacity: .92; }
.ph-cta-actions { display: flex; gap: .65rem; flex-wrap: wrap; }
.ph-btn-white {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--ph-coral); font-weight: 700;
  padding: .8rem 1.25rem; border-radius: .45rem;
}
.ph-btn-outline-white {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.85); color: #fff; font-weight: 700;
  padding: .8rem 1.25rem; border-radius: .45rem;
}

.ph-footer {
  background: var(--ph-navy); color: rgba(255,255,255,.75); padding: 3rem 0 0;
}
.ph-footer-grid {
  display: grid; gap: 1.75rem;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr; padding-bottom: 2rem;
}
.ph-footer-brand { display: block; color: #fff; font-size: 1.25rem; margin-bottom: .55rem; }
.ph-footer h4 {
  margin: 0 0 .7rem; color: #fff; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; font-family: "Outfit", sans-serif;
}
.ph-footer a { display: block; color: rgba(255,255,255,.72); padding: .2rem 0; font-size: .9rem; }
.ph-footer a:hover { color: #fff; }
.ph-footer .ph-btn-coral { display: inline-flex; margin-top: .5rem; }
.ph-footer p { margin: 0 0 .5rem; font-size: .9rem; line-height: 1.5; }
.ph-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: .9rem 0; font-size: .8rem;
}
.ph-footer-bottom .wrap {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.ph-footer-bottom a { display: inline; color: rgba(255,255,255,.55); }

@media (max-width: 960px) {
  body.property-hotel .nav { display: none; }
  .ph-gallery { grid-template-columns: 1fr; min-height: 0; }
  .ph-gallery-main { min-height: 260px; }
  .ph-gallery-side { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 110px; }
  .ph-main { grid-template-columns: 1fr; }
  .ph-sidebar { position: static; order: -1; }
  .ph-about-grid, .ph-loc-grid, .ph-review-summary { grid-template-columns: 1fr; }
  .ph-amenities { grid-template-columns: repeat(2, 1fr); }
  .ph-reviews, .ph-rules { grid-template-columns: 1fr; }
  .ph-full-gallery { grid-template-columns: repeat(2, 1fr); }
  .ph-footer-grid { grid-template-columns: 1fr 1fr; }
  .ph-tabs { top: 56px; }
}
@media (max-width: 560px) {
  .ph-gallery-side { grid-template-columns: 1fr; grid-template-rows: repeat(3, 100px); }
  .ph-footer-grid { grid-template-columns: 1fr; }
}

.ph-call-link { color: #16a34a !important; font-weight: 700; }
.ph-call-link:hover { color: #15803d !important; text-decoration: underline; }
.ph-book a.ph-btn-coral { text-align: center; text-decoration: none; }

/* Av?a history strip on landing */
.lr-history { padding-top: 2rem; }
.lr-history-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.1fr .9fr; align-items: center;
}
.lr-kicker {
  letter-spacing: .16em; text-transform: uppercase; font-size: .72rem;
  font-weight: 700; color: var(--lr-coral); margin: 0 0 .75rem;
}
.lr-history h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem); color: var(--lr-navy);
  margin: 0 0 1rem; line-height: 1.15;
}
.lr-history p { color: var(--lr-muted); line-height: 1.65; margin: 0 0 1rem; max-width: 36rem; }
.lr-history-photo {
  min-height: 320px; border-radius: .85rem;
  background-size: cover; background-position: center;
  box-shadow: 0 18px 40px rgba(10,28,46,.12);
}
@media (max-width: 860px) {
  .lr-history-grid { grid-template-columns: 1fr; }
  .lr-history-photo { min-height: 220px; }
}

/* —— Oda detay (mockup sade) —— */
.rd-header { margin-bottom: .5rem; }
.rd-prop-link {
  margin: 0 0 .35rem; font-size: .85rem; font-weight: 600;
}
.rd-prop-link a { color: var(--ph-coral); }
.rd-header h1 {
  margin: 0 0 .65rem; font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  color: var(--ph-navy); font-weight: 700; line-height: 1.15;
}
.rd-lead {
  margin: 0 0 1.1rem; color: var(--ph-muted); line-height: 1.55; max-width: 38rem;
}
.rd-meta {
  list-style: none; margin: 0 0 .5rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: .55rem .9rem;
}
.rd-meta li {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .9rem; color: var(--ph-navy); font-weight: 600;
}
.rd-meta svg { color: var(--ph-coral); flex-shrink: 0; }
.rd-amenities {
  display: grid; gap: .85rem 1rem;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.rd-amenity {
  display: flex; align-items: center; gap: .55rem;
  padding: .75rem .85rem; border-radius: .65rem;
  background: var(--ph-soft); border: 1px solid var(--ph-line);
  font-size: .9rem; font-weight: 600; color: var(--ph-navy);
}
.rd-amenity svg { color: var(--ph-coral); flex-shrink: 0; }
.rd-note {
  margin: 1rem 0 0; color: var(--ph-muted); font-size: .92rem;
}
.rd-thumbs {
  display: grid; gap: .55rem;
  grid-template-columns: repeat(4, 1fr);
}
.rd-thumb {
  aspect-ratio: 1.15; border-radius: .55rem;
  background-size: cover; background-position: center;
}
.rd-price {
  margin: 0 0 .85rem; color: var(--ph-navy);
}
.rd-price strong {
  font-size: 1.55rem; font-weight: 700;
}
.rd-price span {
  font-size: .9rem; color: var(--ph-muted); font-weight: 500;
}
@media (max-width: 700px) {
  .rd-thumbs { grid-template-columns: repeat(2, 1fr); }
}

.pl-cats {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin: 0 0 1.5rem;
}
.pl-cats a {
  font-size: .8rem; font-weight: 600; color: var(--ph-muted, #5c6b7a);
  text-decoration: none; padding: .4rem .75rem;
  border: 1px solid #dbe4ee; border-radius: 999px; background: #fff;
}
.pl-cats a:hover { color: var(--ph-navy, #0b1e3b); border-color: #c5d3e0; }
.pl-cats a.is-on {
  color: #fff; background: var(--ph-coral, #f2654a); border-color: var(--ph-coral, #f2654a);
}

