/* ════════════════════════════════════════════════════════════════
   UMUT APART OTEL — Modern Minimal
   Açık tema · Sıcak krem zemin · Terracotta aksan
   ════════════════════════════════════════════════════════════════ */

:root {
  /* palette */
  --bg: #f7f4ee;
  --bg-2: #ffffff;
  --bg-3: #efe9df;

  --ink: #1a1816;
  --ink-2: #3a3633;
  --ink-3: #5a5651;
  --muted: #807d76;
  --muted-2: #a7a39c;

  --line: #e0dcd3;
  --line-soft: #ebe7de;

  --accent: #a14e34;
  --accent-2: #b85942;
  --accent-soft: rgba(161, 78, 52, 0.08);
  --accent-line: rgba(161, 78, 52, 0.18);

  /* type */
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* metrics */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 14px;
  --radius-sm: 10px;

  /* easing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; background: var(--bg); }
body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--accent); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── TYPE PRIMITIVES ─────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}
.eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.h-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 18px;
}
.h-title .accent { color: var(--accent); }

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 22px 0 26px;
}
.hero-title .accent { color: var(--accent); }

.lead {
  font-size: clamp(1rem, 1.15vw, 1.13rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 560px;
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
}
.section-alt { background: var(--bg-2); }

.sec-head { padding-bottom: 60px; }
.sec-head-center { text-align: center; max-width: 720px; margin: 0 auto; padding-bottom: 60px; }
.sec-head-center .eyebrow { justify-content: center; }
.sec-head-center .lead { margin: 16px auto 0; }
.sec-head-note {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 360px;
  margin-top: 24px;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 10px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s, transform 0.18s var(--ease), box-shadow 0.25s;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  box-shadow: 0 6px 20px -8px rgba(161, 78, 52, 0.5);
}
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--ink-3);
}
.section-alt .btn-ghost:hover { background: var(--bg); }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.3s var(--ease), background 0.3s, backdrop-filter 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(247, 244, 238, 0.85);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  width: 170px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand-logo {
  transform: scale(1.03);
}
.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--bg-3); color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-tel {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-tel:hover { color: var(--accent); }
.nav-cta { height: 40px; padding: 0 18px; font-size: 13px; }

.burger {
  display: none;
  position: relative;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  height: 1.5px; width: 18px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 980px) {
  .nav-links, .nav-tel { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
}

body.drawer-open .burger span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
body.drawer-open .burger span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ── DRAWER ──────────────────────────────────────── */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 86%);
  background: var(--bg-2);
  z-index: 110;
  display: flex; flex-direction: column;
  padding: 80px 32px 32px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px -30px rgba(0,0,0,0.1);
}
.drawer.open { transform: translateX(0); }
.drawer a {
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.2s, padding 0.2s;
}
.drawer a:hover { color: var(--accent); padding-left: 6px; }
.drawer .drawer-cta {
  margin-top: 20px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 10px;
  text-align: center;
  border: 0;
  padding: 14px;
}
.drawer .drawer-cta:hover { background: var(--accent); color: #fff; padding-left: 14px; }
.drawer-close {
  position: absolute; top: 22px; right: 22px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-3);
  font-size: 22px;
  line-height: 1;
  display: grid; place-items: center;
  transition: background 0.2s;
}
.drawer-close:hover { background: var(--line); }
.overlay {
  position: fixed; inset: 0;
  background: rgba(26, 24, 22, 0.4);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.overlay.active { opacity: 1; visibility: visible; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: -15%;
  width: 55%; height: 60%;
  background: radial-gradient(ellipse at center, var(--accent-soft), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  z-index: 1;
}
@media (max-width: 980px) {
  .hero { padding: 110px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-sub {
  font-size: clamp(1rem, 1.15vw, 1.13rem);
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-2);
}
.hero-bullets svg {
  width: 18px; height: 18px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 50%;
  padding: 3px;
}

.hero-media {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
}
.hero-media img {
  width: 100%; height: 100%;
  transition: transform 1.2s var(--ease);
}
.hero-media:hover img { transform: scale(1.04); }
.hero-tag {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--bg-2);
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px -10px rgba(26,24,22,0.18);
  display: flex; flex-direction: column;
  gap: 2px;
}
.ht-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.ht-price {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ht-price i {
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 2px;
}

/* ── STATS ───────────────────────────────────────── */
.stats {
  padding: 50px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  text-align: center;
  padding: 14px 10px;
  border-right: 1px solid var(--line-soft);
}
.stat:last-child { border-right: 0; }
@media (max-width: 720px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-soft); padding-bottom: 24px; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 24px; }
}
.stat-num {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.stat-num::after {
  content: attr(data-suffix);
  margin-left: 1px;
}
.stat-lbl {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

/* ── ABOUT ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; gap: 50px; } }

.about-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
}
.about-media img {
  width: 100%; height: 100%;
  transition: transform 1.2s var(--ease);
}
.about-media:hover img { transform: scale(1.04); }
.about-card {
  position: absolute;
  right: 18px; bottom: 18px;
  background: var(--bg-2);
  padding: 16px 20px;
  border-radius: 12px;
  display: flex; flex-direction: column;
  gap: 2px;
  box-shadow: 0 14px 36px -16px rgba(26,24,22,0.22);
}
.ac-num {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--accent);
  line-height: 1;
}
.ac-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

.about-content > * + * { margin-top: 18px; }
.about-content .lead { color: var(--ink-2); }
.about-content p:not(.lead) {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.65;
}

.trait-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px !important;
}
@media (max-width: 520px) { .trait-list { grid-template-columns: 1fr; } }
.trait-list li {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.section-alt .trait-list li { background: var(--bg); }
.trait-list li:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}
.trait-list svg {
  flex: none;
  width: 20px; height: 20px;
  color: var(--accent);
  margin-top: 2px;
}
.trait-list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.trait-list span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── ROOMS ───────────────────────────────────────── */
.sec-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.sec-head-center { display: block; }
@media (max-width: 880px) {
  .sec-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .rooms-grid { grid-template-columns: 1fr; } }

.room {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.section-alt .room { background: var(--bg); }
.room:hover {
  transform: translateY(-4px);
  border-color: var(--accent-line);
  box-shadow: 0 18px 40px -20px rgba(26,24,22,0.16);
}
.room-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-3);
}
.room-img img {
  width: 100%; height: 100%;
  transition: transform 1s var(--ease);
}
.room:hover .room-img img { transform: scale(1.06); }
.room-chip {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  background: var(--bg-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  border-radius: 999px;
  text-transform: uppercase;
}
.room-body {
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 14px;
  flex: 1;
}
.room-body h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.room-body p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}
.room-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.room-feats li {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--bg-3);
  padding: 5px 10px;
  border-radius: 999px;
}
.section-alt .room-feats li { background: var(--bg-3); }
.room-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.rf-price {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.rf-note {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.room-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.25s var(--ease);
}
.room-link:hover { gap: 8px; }

/* ── SERVICES ────────────────────────────────────── */
.serv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 980px) { .serv-grid { grid-template-columns: 1fr; gap: 50px; } }

.serv-text > * + * { margin-top: 18px; }

.serv-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px !important;
}
@media (max-width: 520px) { .serv-list { grid-template-columns: 1fr; } }
.serv-list li {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
  transition: background 0.25s;
}
.serv-list li:hover { background: var(--bg-2); }
.section-alt .serv-list li:hover { background: var(--bg); }
.serv-list svg {
  flex: none;
  width: 22px; height: 22px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 6px;
  padding: 2px;
}
.serv-list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.serv-list span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.serv-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
}
.serv-media img {
  width: 100%; height: 100%;
  transition: transform 1.2s var(--ease);
}
.serv-media:hover img { transform: scale(1.04); }

/* ── AMENITIES ───────────────────────────────────── */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .amen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .amen-grid { grid-template-columns: 1fr; } }

.amen {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, transform 0.3s var(--ease), background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section-alt .amen { background: var(--bg); }
.amen:hover {
  border-color: var(--accent-line);
  transform: translateY(-3px);
}
.amen svg {
  width: 28px; height: 28px;
  color: var(--accent);
  padding: 6px;
  background: var(--accent-soft);
  border-radius: 8px;
}
.amen strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.amen span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: -8px;
}

/* ── GALLERY ─────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gal {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-3);
  display: block;
  transition: transform 0.35s var(--ease);
}
.gal img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.gal:hover img { transform: scale(1.06); }
.gal-cap {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(26, 24, 22, 0.78);
  color: var(--bg);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
  backdrop-filter: blur(6px);
}
.gal:hover .gal-cap {
  opacity: 1;
  transform: translateY(0);
}
.gal-wide { grid-column: span 2; grid-row: span 2; }
.gal-tall { grid-row: span 2; }

@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gal-wide { grid-column: span 2; grid-row: span 2; }
  .gal-tall { grid-column: span 1; grid-row: span 2; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gal-wide, .gal-tall { grid-column: span 1; grid-row: span 1; }
}

/* ── TESTIMONIALS ────────────────────────────────── */
.tcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .tcards { grid-template-columns: 1fr; } }

.tcard {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s, transform 0.3s var(--ease);
}
.tcard:hover { transform: translateY(-3px); border-color: var(--accent-line); }
.tc-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}
.tcard blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  flex: 1;
}
.tcard footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.tc-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 15px;
}
.tc-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.tc-info span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

.rating-block {
  margin: 50px auto 0;
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.rb-num {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.rb-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}
.rb-note {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.rb-note strong { color: var(--ink); font-weight: 600; }

/* ── CTA BLOCK ───────────────────────────────────── */
.cta-block { padding: 60px 0; background: var(--bg); }
.cta-card {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(184, 89, 66, 0.4), transparent 60%);
  pointer-events: none;
}
.cta-card .eyebrow { color: var(--accent-2); }
.cta-card .eyebrow-dot { background: var(--accent-2); }
.cta-card .h-title {
  color: var(--bg);
  margin-top: 14px;
}
.cta-card .h-title .accent { color: var(--accent-2); }
.cta-card .lead {
  color: rgba(247, 244, 238, 0.7);
  margin-top: 14px;
  max-width: 540px;
}

.cta-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.cta-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.cp-from {
  font-size: 12px;
  font-weight: 500;
  color: rgba(247, 244, 238, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cp-num {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--bg);
  line-height: 1;
}
.cp-unit {
  font-size: 14px;
  color: rgba(247, 244, 238, 0.6);
}
.cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cta-card .btn-primary {
  background: var(--bg);
  color: var(--ink);
}
.cta-card .btn-primary:hover {
  background: var(--accent-2);
  color: var(--bg);
  box-shadow: 0 6px 20px -8px rgba(184, 89, 66, 0.8);
}
.cta-card .btn-ghost {
  border-color: rgba(247, 244, 238, 0.22);
  color: var(--bg);
}
.cta-card .btn-ghost:hover {
  background: rgba(247, 244, 238, 0.08);
  border-color: rgba(247, 244, 238, 0.4);
}

@media (max-width: 880px) {
  .cta-card { grid-template-columns: 1fr; gap: 28px; }
  .cta-side { align-items: flex-start; }
  .cta-buttons { justify-content: flex-start; }
}

/* ── LOCATION ────────────────────────────────────── */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .loc-grid { grid-template-columns: 1fr; gap: 40px; } }

.loc-grid > div > * + * { margin-top: 18px; }

.loc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 28px !important;
}
.loc-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.loc-list li:last-child { border-bottom: 0; }
.loc-list svg {
  flex: none;
  width: 22px; height: 22px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 6px;
  padding: 2px;
}
.loc-list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.loc-list span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.loc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px !important;
}

.loc-map {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
}
.loc-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.9);
}

/* ── NEARBY PLACES ───────────────────────────────── */
.nearby {
  margin-top: clamp(60px, 8vw, 90px);
  padding-top: clamp(50px, 6vw, 70px);
  border-top: 1px solid var(--line);
}
.nearby-head {
  text-align: center;
  margin-bottom: 36px;
}
.nearby-head .eyebrow { justify-content: center; }
.nearby-title {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-top: 14px;
  color: var(--ink);
}
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .nearby-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .nearby-grid { grid-template-columns: 1fr; } }

.nearby-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, transform 0.3s var(--ease), background 0.25s;
}
.nearby-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-3px);
}
.nb-ico {
  flex: none;
  width: 40px; height: 40px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 10px;
  display: grid; place-items: center;
}
.nb-ico svg { width: 20px; height: 20px; }
.nb-body strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.nb-body span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}
.nb-dist {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ── CONTACT ─────────────────────────────────────── */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) { .ct-grid { grid-template-columns: 1fr; gap: 50px; } }

.ct-grid > div:first-child > * + * { margin-top: 18px; }

.ct-cards {
  margin-top: 32px !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) { .ct-cards { grid-template-columns: 1fr; } }
.ccard {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, transform 0.3s var(--ease), background 0.3s;
}
.section-alt .ccard { background: var(--bg); }
.ccard:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}
.cc-ico {
  flex: none;
  width: 38px; height: 38px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 8px;
  display: grid; place-items: center;
}
.cc-ico svg { width: 20px; height: 20px; }
.cc-lbl {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.cc-val {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
}

.ct-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 38px);
}
.section-alt .ct-form { background: var(--bg); }
.ct-form h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ct-form > p {
  font-size: 14px;
  color: var(--muted);
  margin: 8px 0 24px;
}

#contactForm { display: flex; flex-direction: column; gap: 18px; }
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .f-row { grid-template-columns: 1fr; } }
.f-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.f-group label .opt {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: none;
}
.section-alt .f-group input,
.section-alt .f-group select,
.section-alt .f-group textarea { background: var(--bg-2); }
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--muted-2); }
.f-group select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23807d76' stroke-width='1.5' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

.form-submit {
  width: 100%;
  height: 50px;
}
.form-status {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  min-height: 14px;
}
.form-status.success { color: #2d7a4a; }
.form-status.error { color: #b04444; }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  padding: 70px 0 28px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .ft-grid { grid-template-columns: 1fr; gap: 32px; } }

.ft-brand .brand { margin-bottom: 14px; }
.ft-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}
.ft-social {
  display: flex;
  gap: 8px;
}
.ft-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.ft-social a:hover {
  color: var(--accent);
  border-color: var(--accent-line);
  background: var(--accent-soft);
}
.ft-social svg { width: 18px; height: 18px; }

.ft-grid h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.ft-grid ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ft-grid li, .ft-grid a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.ft-grid a { transition: color 0.2s; }
.ft-grid a:hover { color: var(--accent); }

.ft-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-bottom p {
  font-size: 13px;
  color: var(--muted);
}

.ft-credit {
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  width: fit-content;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.ft-credit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(161, 78, 52, 0.08) 50%, transparent 75%);
  background-size: 220% 100%;
  background-position: 100% 0;
  transition: background-position 0.7s var(--ease);
  pointer-events: none;
}
.ft-credit:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -18px rgba(161, 78, 52, 0.4);
}
.ft-credit:hover::before { background-position: 0 0; }
.ft-credit-spark {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(161, 78, 52, 0.4);
  animation: creditPulse 2.2s ease-out infinite;
  flex: none;
}
@keyframes creditPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(161, 78, 52, 0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(161, 78, 52, 0); }
}
.ft-credit-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.ft-credit-text em {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  font-style: normal;
}
.ft-credit-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 2px;
  text-transform: lowercase;
  transition: color 0.25s;
}
.ft-credit:hover .ft-credit-text strong { color: var(--accent); }
.ft-credit-arrow {
  font-size: 14px;
  color: var(--accent);
  transition: transform 0.25s var(--ease);
}
.ft-credit:hover .ft-credit-arrow { transform: translate(2px, -2px); }

/* ── FLOATING ────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 80;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px -8px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 32px -10px rgba(37,211,102,0.7); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float::before {
  content: "";
  position: absolute; inset: -4px;
  border: 1px solid #25d366;
  border-radius: 50%;
  opacity: 0;
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

.top-btn {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 80;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid; place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s, border-color 0.2s;
  box-shadow: 0 6px 18px -8px rgba(26,24,22,0.15);
}
.top-btn svg { width: 18px; height: 18px; }
.top-btn.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.top-btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ── SCROLL REVEAL ───────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal="left"]  { transform: translateX(-24px); }
[data-reveal="right"] { transform: translateX(24px); }
[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
[data-stagger].is-visible > * { opacity: 1; transform: translateY(0); }
[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.10s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.15s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.20s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 0.25s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 0.30s; }
[data-stagger].is-visible > *:nth-child(7) { transition-delay: 0.35s; }
[data-stagger].is-visible > *:nth-child(8) { transition-delay: 0.40s; }

/* ── REDUCED MOTION ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── MOBILE FINE-TUNING ──────────────────────────── */
@media (max-width: 600px) {
  .hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .h-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .wa-float, .top-btn { right: 16px; bottom: 16px; width: 48px; height: 48px; }
  .top-btn { left: 16px; right: auto; }
}
