/* ============================================================
   Kybele Otel – style.css
   Ana stiller | Tüm sayfalar
   ============================================================ */

/* Not: Google Fonts her sayfanın <head> bölümünde <link> ile zaten yükleniyor;
   buradaki @import kaldırıldı çünkü aynı fontu ikinci kez isteyip CSS render'ını
   geciktiriyordu. */

/* ════════════════════════════════════════════
   CSS VARIABLES
   ════════════════════════════════════════════ */
:root {
  /* Renkler */
  --bg-dark:     #0e1a0f;
  --bg-medium:   #12231a;
  --bg-card:     #162b1e;
  --bg-footer:   #0a1208;
  --gold:        #b8975a;
  --gold-light:  #d4b080;
  --gold-dark:   #8a6e3c;
  --cream:       #f5f0e8;
  --cream-muted: rgba(245,240,232,0.60);
  --cream-dim:   rgba(245,240,232,0.12);
  --border:      rgba(184,151,90,0.28);
  --border-soft: rgba(245,240,232,0.10);
  --gold-glow:   rgba(184,151,90,0.15);

  /* Tipografi */
  --ff-serif:  'Playfair Display', Georgia, serif;
  --ff-sans:   'Inter', system-ui, sans-serif;

  /* Boyutlar */
  --container: 1220px;
  --radius:    6px;
  --radius-lg: 12px;

  /* Efektler */
  --shadow:      0 4px 32px rgba(0,0,0,0.45);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.55);
  --transition:  0.32s ease;
}

/* ════════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-sans);
  background-color: var(--bg-dark);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-serif);
  line-height: 1.18;
  color: var(--cream);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul { list-style: none; }

button { cursor: pointer; font-family: var(--ff-sans); }

/* ════════════════════════════════════════════
   LAYOUT UTILITIES
   ════════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header.align-left {
  text-align: left;
}
.section-header.align-left .divider {
  margin-left: 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  color: var(--cream);
  margin-bottom: 14px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--cream-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.divider {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 18px auto;
  border: none;
}

/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,151,90,0.38);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.5);
}
.btn-outline:hover {
  background: var(--cream-dim);
  border-color: var(--cream);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--border);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

/* ════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.38s ease;
  background: transparent;
}

#header.scrolled {
  background: rgba(10,18,8,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--ff-sans);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.logo-sub {
  font-family: var(--ff-sans);
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 4px;
  padding-left: 1px;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--cream-muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  position: relative;
  transition: color 0.25s ease;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 1px;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--cream); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 60%; }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Mobile-extras lives inside the hamburger overlay — hidden on desktop */
.mobile-extras { display: none; }

/* Lang selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: 1px solid rgba(184,151,90,0.2);
  color: rgba(245,240,232,0.6);
  padding: 0.35rem 0.6rem;
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  min-height: 34px;
}

.lang-btn:hover {
  border-color: rgba(184,151,90,0.6);
  color: var(--gold);
  background: rgba(184,151,90,0.08);
}

.lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
}

.flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-code {
  font-size: 0.65rem;
  letter-spacing: 1px;
}

/* Mobilde sadece bayrak göster */
@media (max-width: 480px) {
  .lang-code { display: none; }
  .lang-btn { padding: 0.35rem 0.5rem; }
  .flag { font-size: 1.2rem; }
}

.nav-rezervasyon {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-rezervasyon:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* Nav WhatsApp icon — always visible, desktop + mobile */
.nav-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.15rem;
  box-shadow: 0 3px 14px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.nav-whatsapp:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  z-index: 1001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}

/* Hero slider (crossfading background slides) */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14,26,15,0.82) 0%,
    rgba(14,26,15,0.55) 50%,
    rgba(14,26,15,0.88) 100%
  );
}

/* Decorative frame */
.hero-frame {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(184,151,90,0.18);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideDown 0.9s ease 0.3s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeSlideDown 0.9s ease 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline-wrap {
  height: 40px;
  overflow: hidden;
  margin: 20px 0 40px;
  opacity: 0;
  animation: fadeSlideDown 0.9s ease 0.7s forwards;
}
#heroTagline {
  display: block;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--cream-muted);
  letter-spacing: 0.3px;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
#heroTagline.out { opacity: 0; transform: translateY(-16px); }
#heroTagline.in  { opacity: 0; transform: translateY(16px); }

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--cream-muted);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ════════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 52px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(14,26,15,0.60) 0%,
    rgba(14,26,15,0.82) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 14px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--cream-muted);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 0.6rem; color: var(--cream-muted); }

/* ════════════════════════════════════════════
   FEATURES STRIP
   ════════════════════════════════════════════ */
.features-strip {
  background: var(--bg-medium);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.feature-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--border-soft);
  transition: background 0.3s ease;
  cursor: default;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(184,151,90,0.05); }

.feature-item i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.feature-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.feature-item span {
  font-size: 0.72rem;
  color: var(--cream-muted);
  line-height: 1.4;
}

/* ════════════════════════════════════════════
   ABOUT / HAKKINDA (home)
   ════════════════════════════════════════════ */
.about-home {
  padding: 110px 0;
  background: var(--bg-dark);
}

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

.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--bg-medium);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  text-align: center;
}
.badge-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.badge-txt {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 5px;
}

.about-text-wrap .section-header { margin-bottom: 28px; }
.about-text {
  font-size: 0.96rem;
  color: var(--cream-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--cream-muted);
}
.about-list li i {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   ROOMS SECTION (home preview)
   ════════════════════════════════════════════ */
.rooms-section {
  padding: 110px 0;
  background: var(--bg-medium);
}

.room-card-type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.room-price-from { font-size: 0.62rem; color: var(--cream-muted); text-transform: uppercase; }
.room-price-amt {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.room-price-unit { font-size: 0.7rem; color: var(--cream-muted); }

/* Rooms – single scrollable image strip (home preview) */
.rooms-scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.rooms-scroll-track::-webkit-scrollbar { height: 6px; }
.rooms-scroll-track::-webkit-scrollbar-track { background: transparent; }
.rooms-scroll-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}
.rooms-scroll-item {
  position: relative;
  flex: 0 0 auto;
  width: 340px;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--border);
}
.rooms-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.rooms-scroll-item:hover img { transform: scale(1.06); }
.rooms-scroll-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,8,0.85) 0%, rgba(10,18,8,0.1) 45%, transparent 70%);
  pointer-events: none;
}
.rooms-scroll-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: 0.3px;
}

/* ════════════════════════════════════════════
   POOL / FACILITIES SECTION
   ════════════════════════════════════════════ */
.facility-section {
  padding: 110px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.facility-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

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

.facility-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.facility-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}
.spec-item {
  background: var(--bg-medium);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color 0.3s;
}
.spec-item:hover { border-color: var(--gold); }
.spec-icon { font-size: 1.3rem; color: var(--gold); margin-bottom: 8px; }
.spec-label { font-size: 0.68rem; color: var(--cream-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.spec-value { font-size: 1rem; font-weight: 600; color: var(--cream); }

/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
.testimonials {
  padding: 110px 0;
  background: var(--bg-medium);
  position: relative;
  overflow: hidden;
}
.testimonials::after {
  content: '\201C';
  position: absolute;
  bottom: -60px;
  right: 40px;
  font-family: var(--ff-serif);
  font-size: 360px;
  color: rgba(184,151,90,0.04);
  line-height: 1;
  pointer-events: none;
}

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

.t-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: border-color 0.3s ease;
}
.t-card:hover { border-color: var(--gold); }

.t-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 18px; }
.t-text {
  font-size: 0.94rem;
  color: var(--cream-muted);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--bg-dark);
  font-weight: 700;
  flex-shrink: 0;
}
.t-name { font-size: 0.9rem; font-weight: 600; color: var(--cream); }
.t-origin { font-size: 0.75rem; color: var(--cream-muted); margin-top: 2px; }

/* ════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  background: var(--bg-dark);
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.cta-section p {
  font-size: 1.02rem;
  color: var(--cream-muted);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   STATS STRIP
   ════════════════════════════════════════════ */
.stats-strip {
  background: var(--bg-medium);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 10px;
}

/* ════════════════════════════════════════════
   ROOMS PAGE – Full cards
   ════════════════════════════════════════════ */
.rooms-page { padding: 80px 0; background: var(--bg-dark); }

.room-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  transition: border-color 0.3s ease;
}
.room-full:hover { border-color: var(--gold); }
.room-full.flip { direction: rtl; }
.room-full.flip .room-full-info { direction: ltr; }

.room-full-img { position: relative; min-height: 420px; }
.room-full-img img { width: 100%; height: 100%; object-fit: cover; }

.room-full-thumbs {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.room-full-thumbs img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(244,239,230,0.55);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.room-full-thumbs img:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--gold);
}

.room-full-info { padding: 48px 42px; display: flex; flex-direction: column; justify-content: center; }
.room-full-info .room-card-type { margin-bottom: 10px; }
.room-full-info h2 { font-size: 2rem; color: var(--cream); margin-bottom: 14px; }
.room-full-info p { font-size: 0.94rem; color: var(--cream-muted); line-height: 1.8; margin-bottom: 28px; }

.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--cream-muted);
}
.amenity i { color: var(--gold); width: 14px; }

.whatsapp-reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  background: #25d366;
  color: #fff;
  font-family: sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 2px;
  margin-top: 1rem;
  transition: background 0.3s;
}

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

.wa-icon {
  font-size: 1.1rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-medium);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}

/* ════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════ */
.gallery-section { padding: 80px 0; background: var(--bg-dark); }

.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.gal-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream-muted);
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 30px;
  transition: var(--transition);
}
.gal-filter:hover, .gal-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
}

.masonry {
  columns: 3;
  column-gap: 14px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: opacity 0.35s ease;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.55s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(14,26,15,0.6);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px; color: var(--cream);
}
.masonry-overlay i { font-size: 1.6rem; color: var(--gold); }
.masonry-overlay span { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-muted); }
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(5,10,5,0.97);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
#lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: var(--cream-muted); font-size: 2rem;
  cursor: pointer; line-height: 1; transition: color 0.2s;
}
#lightbox-close:hover { color: var(--gold); }
.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(184,151,90,0.12);
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 1.1rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lb-nav:hover { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }
#lb-prev { left: 22px; }
#lb-next { right: 22px; }

/* ════════════════════════════════════════════
   OTELIMIZ PAGE
   ════════════════════════════════════════════ */
.otelimiz-story { padding: 100px 0; background: var(--bg-dark); }
.otelimiz-mission { padding: 100px 0; background: var(--bg-medium); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.value-icon {
  width: 68px; height: 68px;
  background: rgba(184,151,90,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  transition: var(--transition);
}
.value-icon i { font-size: 1.4rem; color: var(--gold); }
.value-card:hover .value-icon { background: var(--gold); }
.value-card:hover .value-icon i { color: var(--bg-dark); }
.value-title { font-size: 1.2rem; color: var(--cream); margin-bottom: 12px; }
.value-desc { font-size: 0.87rem; color: var(--cream-muted); line-height: 1.72; }

/* ════════════════════════════════════════════
   GÖCEK PAGE
   ════════════════════════════════════════════ */
.gocek-intro { padding: 100px 0; background: var(--bg-dark); }
.gocek-activities { padding: 100px 0; background: var(--bg-medium); }

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.activity-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.activity-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.activity-card-img { height: 200px; overflow: hidden; }
.activity-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.activity-card:hover .activity-card-img img { transform: scale(1.06); }
.activity-card-body { padding: 24px; }
.activity-card-body h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: 10px; }
.activity-card-body p { font-size: 0.86rem; color: var(--cream-muted); line-height: 1.65; }

/* ════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════ */
.contact-section { padding: 80px 0; background: var(--bg-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
}

.contact-info h3 { font-size: 1.8rem; color: var(--cream); margin-bottom: 14px; }
.contact-info > p { font-size: 0.94rem; color: var(--cream-muted); line-height: 1.78; margin-bottom: 36px; }

.c-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.c-item { display: flex; gap: 16px; align-items: flex-start; }
.c-item-icon {
  width: 48px; height: 48px;
  background: rgba(184,151,90,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-item-icon i { color: var(--gold); font-size: 0.95rem; }
.c-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream-muted); margin-bottom: 4px; }
.c-value { font-size: 0.92rem; color: var(--cream); line-height: 1.55; }
.c-value a:hover { color: var(--gold); }

.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 44px; height: 44px;
  background: rgba(184,151,90,0.1);
  border: 1px solid var(--border);
  color: var(--cream-muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--bg-dark); transform: translateY(-2px); }

/* ════════════════════════════════════════════
   SOCIAL LINKS (Instagram + WhatsApp)
   ════════════════════════════════════════════ */
.social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-btn.instagram,
.social-btn.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  height: auto;
  padding: 0.55rem 1rem;
  border-radius: 3px;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-btn.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}

.social-btn.instagram:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.social-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.social-btn.whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .social-btn.instagram span,
  .social-btn.whatsapp span { display: none; }
  .social-btn.instagram,
  .social-btn.whatsapp { padding: 0.55rem; }
}

/* ════════════════════════════════════════════
   FORMS (contact + reservation)
   ════════════════════════════════════════════ */
.form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.form-wrap h3 { font-size: 1.7rem; color: var(--cream); margin-bottom: 30px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 17px;
  background: var(--bg-medium);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s ease;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,90,0.1);
}
.form-group input.err,
.form-group select.err,
.form-group textarea.err { border-color: #d9534f; }
.form-group select option { background: var(--bg-medium); }
.form-group textarea { min-height: 130px; resize: vertical; }

.f-err { font-size: 0.72rem; color: #e06c6c; margin-top: 5px; display: none; }
.f-err.show { display: block; }
.f-success {
  display: none;
  background: rgba(74,142,79,0.12);
  border: 1px solid rgba(74,142,79,0.4);
  color: #7bc47f;
  padding: 15px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 22px;
}
.f-success.show { display: block; }

.map-section { padding: 0 0 80px; background: var(--bg-dark); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #b8975a;
  color: #0e1a0f;
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s;
}

.maps-btn:hover {
  background: #a07840;
}

/* ════════════════════════════════════════════
   RESERVATION PAGE
   ════════════════════════════════════════════ */
.rezervasyon-section { padding: 80px 0; background: var(--bg-dark); }
.rez-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}
.rez-info h3 { font-size: 1.7rem; color: var(--cream); margin-bottom: 16px; }
.rez-info p { font-size: 0.92rem; color: var(--cream-muted); line-height: 1.78; margin-bottom: 28px; }
.rez-rules { display: flex; flex-direction: column; gap: 14px; }
.rez-rule {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.85rem; color: var(--cream-muted);
}
.rez-rule i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  color: var(--cream);
}
.footer-top { padding: 72px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
}

.footer-brand .logo-main { font-size: 1.15rem; }
.footer-brand .logo-sub { margin-bottom: 18px; }
.footer-desc {
  font-size: 0.87rem;
  color: var(--cream-muted);
  line-height: 1.82;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }

.f-heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.f-links { display: flex; flex-direction: column; gap: 12px; }
.f-links a {
  font-size: 0.86rem;
  color: var(--cream-muted);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.25s;
}
.f-links a i { font-size: 0.58rem; color: var(--gold); }
.f-links a:hover { color: var(--gold); }

.f-contact { display: flex; flex-direction: column; gap: 16px; }
.f-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.f-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.85rem; }
.f-contact-item span { font-size: 0.83rem; color: var(--cream-muted); line-height: 1.55; }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 22px 24px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(245,240,232,0.28); }
.footer-bottom a { color: var(--gold); }
.footer-cr { font-size: 0.76rem; color: rgba(245,240,232,0.28); }

/* ════════════════════════════════════════════
   GOOGLE REVIEWS
   ════════════════════════════════════════════ */
.google-reviews {
  padding: 5rem 2.5rem;
  background: var(--bg-dark);
  text-align: center;
}

.sec-hdr {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.sec-hdr .section-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sec-hdr h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  color: var(--cream);
  margin-bottom: 14px;
  font-weight: 700;
}

.reviews-sub {
  font-family: sans-serif;
  font-size: 0.85rem;
  color: var(--cream-muted);
  max-width: 550px;
  margin: 0.8rem auto 2.5rem;
  line-height: 1.7;
}

.google-rating-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  background: var(--bg-card);
  border: 1px solid rgba(184,151,90,0.2);
  border-radius: 4px;
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
}

.g-logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.g-stars {
  font-size: 2rem;
  color: #FBBC05;
  letter-spacing: 4px;
}

.g-rating-text {
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.google-review-btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: #4285F4;
  color: #fff;
  font-family: sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  margin-top: 0.5rem;
  transition: background 0.3s, transform 0.2s;
}

.google-review-btn:hover {
  background: #3367d6;
  transform: translateY(-2px);
}

.g-sub {
  font-family: sans-serif;
  font-size: 0.68rem;
  color: rgba(245,240,232,0.3);
  margin-top: 0.3rem;
}

.review-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

.review-cta-card {
  background: var(--bg-card);
  border: 1px solid rgba(184,151,90,0.1);
  border-radius: 3px;
  padding: 1.8rem 1.2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.review-cta-card:hover {
  border-color: rgba(184,151,90,0.4);
  transform: translateY(-4px);
}

.rcc-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.rcc-title {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.rcc-text {
  font-family: sans-serif;
  font-size: 0.75rem;
  color: var(--cream-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .review-cta-grid {
    grid-template-columns: 1fr;
  }
  .google-rating-box {
    padding: 1.8rem 1.5rem;
    width: 100%;
  }
}

/* ════════════════════════════════════════════
   FLOATING BUTTONS
   ════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 13px 22px 13px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.38);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-float i { font-size: 1.45rem; }
.wa-label { white-space: nowrap; }

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25d366;
  z-index: -1;
  animation: waPulse 2.8s ease-out infinite;
}

#back-to-top {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 990;
  width: 44px; height: 44px;
  background: var(--bg-medium);
  border: 1px solid var(--border);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  opacity: 0; pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  cursor: pointer;
}
#back-to-top.show { opacity: 1; pointer-events: all; }
#back-to-top:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ════════════════════════════════════════════
   RESERVATION PAGE — EXTENDED
   ════════════════════════════════════════════ */
.rez-info h2 { font-family: var(--ff-serif); color: var(--cream); }
.rez-benefits { display: flex; flex-direction: column; gap: 20px; }
.rez-benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.rez-benefit-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(184,151,90,0.12);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.rez-price-list { display: flex; flex-direction: column; }
.rez-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
}
.rez-form-wrap {
  background: var(--bg-medium);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.rez-form-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.rez-form-header h3 {
  font-family: var(--ff-serif);
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.rez-form-header p { font-size: 0.84rem; color: var(--cream-muted); }
.rez-form-body { padding: 26px 28px 28px; }
.form-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.btn-sm-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--cream);
  font-weight: 600;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-sm-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  background: #25d366;
  color: #fff;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-sm-wa:hover { background: #1fba59; transform: translateY(-2px); }

/* ════════════════════════════════════════════
   CONTACT PAGE — SOCIAL ROW
   ════════════════════════════════════════════ */
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.c-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.c-value {
  font-size: 0.87rem;
  color: var(--cream-muted);
  line-height: 1.65;
}
.c-value a { color: var(--gold); }
.c-value a:hover { text-decoration: underline; }
