/* ============================================================
   ANAMIKA INTERNATIONAL v3
   LIGHT LUXURY — White dominant, Black text, Gold accent only
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Jost:wght@200;300;400;500;600&family=Great+Vibes&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --white:        #FFFFFF;
  --off-white:    #FAFAF8;
  --warm-white:   #F5F2EC;
  --black:        #0D0D0D;
  --black-soft:   #1A1A1A;
  --text-dark:    #0D0D0D;
  --text-mid:     #3D3D3D;
  --text-light:   #7A7A7A;
  --accent:       #C8A96A;
  --accent-dark:  #A8893A;
  --accent-pale:  #EAD9B4;
  --border:       #E8E5E0;
  --border-dark:  #D0CCC4;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;
  --ff-script:  'Great Vibes', cursive;

  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:      0.35s;
  --tf:     0.2s;

  --shadow-sm: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --r:  8px;
  --rl: 16px;
}

/* ── RESET ───────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; -webkit-font-smoothing:antialiased; }
body { font-family:var(--ff-body); background:var(--white); color:var(--text-dark); overflow-x:hidden; line-height:1.7; }
img  { max-width:100%; height:auto; display:block; }
a    { text-decoration:none; color:inherit; transition:color var(--tf) var(--ease); }
ul   { list-style:none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.t-script {
  font-family: var(--ff-script);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent);
  display: block;
  line-height: 1.2;
  margin-bottom: 6px;
}
.t-display {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--black);
}
.t-hero-size  { font-size: clamp(3.2rem, 8vw, 7.5rem); }
.t-h1-size    { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.t-h2-size    { font-size: clamp(1.8rem, 3.5vw, 3rem); }
.t-body       { font-family: var(--ff-body); font-size: 1rem; font-weight: 350; line-height: 1.9; color: var(--text-mid); }
.t-label      { font-family: var(--ff-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); }
.t-accent-label { color: var(--accent); }
.t-white      { color: var(--white); }

/* ── ACCENT LINE ─────────────────────────────────────────── */
.aline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
}
.aline .bar  { height: 1px; width: 48px; background: var(--accent); opacity: 0.6; }
.aline .dot  { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.aline.center { justify-content: center; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-black {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  font-family: var(--ff-body); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 34px; border-radius: var(--r);
  border: 1.5px solid var(--black);
  transition: all var(--t) var(--ease); cursor: pointer;
}
.btn-black:hover { background: transparent; color: var(--black); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--black);
  font-family: var(--ff-body); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 13px 33px; border-radius: var(--r);
  border: 1.5px solid var(--black);
  transition: all var(--t) var(--ease); cursor: pointer;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--black);
  font-family: var(--ff-body); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 34px; border-radius: var(--r);
  border: 1.5px solid var(--white);
  transition: all var(--t) var(--ease); cursor: pointer;
}
.btn-white:hover { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }

/* ── ANNOUNCEMENT BAR ────────────────────────────────────── */
.ann-bar {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 9px 20px;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative; z-index: 1001;
}
.ann-bar b { color: var(--accent); font-weight: 500; }

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 37px; left: 0; right: 0;
  z-index: 1000;
  padding: 0 64px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all var(--t) var(--ease);
}
.site-nav.scrolled {
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 64px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-svg { width: 40px; height: 40px; flex-shrink: 0; }
.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 1.2rem; font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em; line-height: 1;
  transition: color var(--tf) var(--ease);
  white-space: nowrap;
}
.nav-logo-tag {
  font-family: var(--ff-body);
  font-size: 0.52rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); margin-top: 3px;
  white-space: nowrap;
}
.site-nav.scrolled .nav-logo-name { color: var(--black); }

/* Links */
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative; padding-bottom: 3px;
  transition: color var(--tf) var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--accent);
  transition: right var(--t) var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.site-nav.scrolled .nav-links a { color: var(--text-mid); }
.site-nav.scrolled .nav-links a:hover,
.site-nav.scrolled .nav-links a.active { color: var(--black); }

/* CTA */
.nav-cta {
  font-family: var(--ff-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 11px 26px; border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white) !important;
  background: transparent;
  transition: all var(--t) var(--ease) !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--white); color: var(--black) !important; border-color: var(--white); }
.site-nav.scrolled .nav-cta {
  background: var(--black); color: var(--white) !important;
  border-color: var(--black);
}
.site-nav.scrolled .nav-cta:hover {
  background: transparent; color: var(--black) !important;
}

/* Hamburger */
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.ham span { display: block; width: 24px; height: 1.5px; background: var(--white); border-radius: 2px; transition: all var(--t) var(--ease); }
.site-nav.scrolled .ham span { background: var(--black); }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mob-nav {
  position: fixed; inset: 0; background: var(--white);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t) var(--ease);
}
.mob-nav.open { opacity: 1; pointer-events: all; }
.mob-nav a {
  font-family: var(--ff-display); font-size: clamp(2rem,6vw,3rem);
  font-weight: 300; color: var(--text-mid); padding: 16px 48px;
  border-bottom: 1px solid var(--border); width: 100%; text-align: center;
  transition: color var(--tf) var(--ease);
}
.mob-nav a:last-child { border-bottom: none; }
.mob-nav a:hover { color: var(--black); }

/* ══════════════════════════════════════════════════════
   INNER PAGE HERO
   ══════════════════════════════════════════════════════ */
.page-hero {
  height: 500px; position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--black-soft);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.4;
  animation: kBurns 12s ease-in-out infinite alternate;
}
@keyframes kBurns { from { transform:scale(1.06); } to { transform:scale(1.0); } }
.page-hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 65%);
}
.page-hero-body {
  position: relative; z-index: 2;
  padding: 0 64px 56px; width: 100%;
}
.breadcrumb-nav {
  display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
  font-family: var(--ff-body); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.breadcrumb-nav a { color: rgba(255,255,255,0.4); }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav span { color: var(--accent); font-size: 0.5rem; }

/* ══════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════ */
.s-white  { background: var(--white); }
.s-warm   { background: var(--off-white); }
.s-warmer { background: var(--warm-white); }
.s-black  { background: var(--black); }
.s-dark   { background: var(--black-soft); }
.pad-xl   { padding: 110px 0; }
.pad-lg   { padding: 80px 0; }
.pad-md   { padding: 56px 0; }
.pad-sm   { padding: 36px 0; }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black); border-top: 1px solid #222;
  padding: 80px 0 0;
}
.footer-logo-name {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 400;
  color: var(--white); letter-spacing: 0.04em;
}
.footer-logo-tag {
  font-family: var(--ff-body); font-size: 0.54rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-top: 4px;
}
.footer-desc { font-size: 1rem; color: rgba(255,255,255,0.38); line-height: 1.9; margin-top: 16px; max-width: 260px; }
.footer-col-title {
  font-family: var(--ff-body); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 0.95rem; color: rgba(255,255,255,0.38);
  transition: color var(--tf) var(--ease);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before {
  content: ''; width: 12px; height: 1px; background: var(--accent);
  opacity: 0; flex-shrink: 0; transition: opacity var(--tf) var(--ease);
}
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1rem; color: rgba(255,255,255,0.38); margin-bottom: 13px;
}
.footer-contact-item i { color: var(--accent); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.38); }
.footer-contact-item a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid #2A2A2A; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); font-size: 0.8rem;
  transition: all var(--tf) var(--ease);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  border-top: 1px solid #1A1A1A; margin-top: 60px; padding: 22px 0;
  text-align: center; font-family: var(--ff-body); font-size: 1rem;
  font-weight:500; letter-spacing: 0.1em; color: rgba(255,255,255,0.22);
}
.footer-bottom b { color: var(--accent); font-weight: 400; }

/* ══════════════════════════════════════════════════════
   FLOATING
   ══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 600;
  width: 50px; height: 50px; background: #25D366; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  transition: transform var(--t) var(--ease);
}
.wa-float:hover { transform: scale(1.1); color: white; }

.scroll-up {
  position: fixed; bottom: 88px; right: 26px; z-index: 600;
  width: 42px; height: 42px; background: var(--white); color: var(--black);
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: all var(--t) var(--ease);
  box-shadow: var(--shadow-sm);
}
.scroll-up.show { opacity: 1; pointer-events: all; }
.scroll-up:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ══════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════ */
.lb {
  position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--t) var(--ease);
}
.lb.open { opacity: 1; pointer-events: all; }
.lb img { max-width: 88vw; max-height: 88vh; object-fit: contain; border-radius: var(--r); }
.lb-close {
  position: absolute; top: 20px; right: 26px; font-size: 1.5rem;
  color: rgba(255,255,255,0.5); cursor: pointer; background: none; border: none;
  transition: color var(--tf) var(--ease); line-height: 1;
}
.lb-close:hover { color: var(--white); }
.lb-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); cursor: pointer;
  background: rgba(255,255,255,0.04);
  transition: all var(--tf) var(--ease);
}
.lb-arr:hover { border-color: var(--accent); color: var(--accent); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ══════════════════════════════════════════════════════
   GALLERY ITEM
   ══════════════════════════════════════════════════════ */
.g-item {
  position: relative; overflow: hidden; cursor: pointer;
  border-radius: var(--r);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.42); opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--t) var(--ease);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay i { font-size: 1.2rem; color: var(--white); }

/* ══════════════════════════════════════════════════════
   FORM FIELDS
   ══════════════════════════════════════════════════════ */
.field label {
  display: block; font-family: var(--ff-body); font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); color: var(--text-dark);
  font-family: var(--ff-body); font-size: 0.88rem; font-weight: 300;
  transition: border-color var(--tf) var(--ease); outline: none; -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: #C0BDB8; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field.on-dark input, .field.on-dark select, .field.on-dark textarea {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: var(--white);
}
.field.on-dark input::placeholder, .field.on-dark textarea::placeholder { color: rgba(255,255,255,0.25); }
.field.on-dark input:focus, .field.on-dark select:focus, .field.on-dark textarea:focus { border-color: var(--accent); }
.field.on-dark select option { background: var(--black-soft); }

/* ══════════════════════════════════════════════════════
   CARDS — Light
   ══════════════════════════════════════════════════════ */
.card-light {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.card-light:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* ══════════════════════════════════════════════════════
   TESTIMONIAL CARD
   ══════════════════════════════════════════════════════ */
.tcard {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--rl); padding: 36px 32px; position: relative;
}
.tcard::before {
  content: '\201C'; font-family: var(--ff-display); font-size: 5rem;
  color: var(--accent); opacity: 0.15; position: absolute;
  top: 12px; left: 24px; line-height: 1;
}
.tcard-text {
  font-size: 1rem; line-height: 1.88; color: var(--text-mid);
  font-style: italic; font-weight: 350; position: relative; z-index: 1;
  margin-bottom: 22px;
}
.tcard-name { font-family: var(--ff-body); font-size: 0.9rem; font-weight: 600; color: var(--black); }
.tcard-loc  { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }
.tcard-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.tcard-stars i { font-size: 0.7rem; color: var(--accent); }

/* ══════════════════════════════════════════════════════
   FLIP CARD
   ══════════════════════════════════════════════════════ */
.flip-wrap { perspective: 1000px; }
.flip-inner {
  position: relative; width: 100%; min-height: 200px;
  transform-style: preserve-3d;
  transition: transform 0.65s var(--ease);
}
.flip-wrap:hover .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  backface-visibility: hidden; border-radius: var(--rl);
  padding: 34px 22px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  min-height: 200px;
}
.flip-front {
  background: var(--white); border: 1.5px solid var(--border);
}
.flip-back {
  position: absolute; inset: 0;
  background: var(--black); border: 1.5px solid var(--black);
  transform: rotateY(180deg);
}
.flip-front i { font-size: 1.8rem; color: var(--accent); margin-bottom: 14px; }
.flip-front h5 { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 600; color: var(--black); }
.flip-back h5 { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.flip-back p  { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ══════════════════════════════════════════════════════
   AWARD BADGE
   ══════════════════════════════════════════════════════ */
.award-badge {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--rl); padding: 28px 20px; text-align: center;
  transition: all var(--t) var(--ease);
}
.award-badge:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.award-badge i { font-size: 1.8rem; color: var(--accent); margin-bottom: 12px; }
.award-badge h6 { font-family: var(--ff-body); font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.award-badge small { font-size: 0.85rem; color: var(--text-light); }

/* ══════════════════════════════════════════════════════
   STAT COUNTER
   ══════════════════════════════════════════════════════ */
.stat-num {
  font-family: var(--ff-display); font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1; color: var(--white);
}
.stat-label {
  font-family: var(--ff-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-top: 8px;
}

/* ══════════════════════════════════════════════════════
   ROOM CARD
   ══════════════════════════════════════════════════════ */
.room-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  transition: all var(--t) var(--ease);
}
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.room-card-img { height: 260px; overflow: hidden; position: relative; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--ff-body); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--white); color: var(--black);
  padding: 5px 14px; border-radius: 30px;
}
.room-card-body { padding: 28px; }
.room-card-name { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 400; color: var(--black); margin-bottom: 6px; }
.room-price { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 300; color: var(--accent-dark); }
.room-price small { font-family: var(--ff-body); font-size: 0.75rem; color: var(--text-light); font-weight: 300; }
.room-tags-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 22px; }
.room-tag-item {
  font-family: var(--ff-body); font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 30px;
  display: flex; align-items: center; gap: 5px;
}
.room-tag-item i { color: var(--accent); font-size: 0.6rem; }

/* ══════════════════════════════════════════════════════
   SERVICE CARD
   ══════════════════════════════════════════════════════ */
.svc-card { background: var(--white); border-radius: var(--rl); overflow: hidden; transition: all var(--t) var(--ease); border: 1.5px solid var(--border); }
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.svc-card-img { height: 230px; overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.svc-card:hover .svc-card-img img { transform: scale(1.06); }
.svc-card-body { padding: 26px 24px; }
.svc-cat { font-family: var(--ff-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 6px; }
.svc-name { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600; color: var(--black); margin-bottom: 10px; }
.svc-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 18px; font-weight: 350; }
.svc-link {
  font-family: var(--ff-body); font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--black);
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border-dark); padding-bottom: 2px;
  transition: all var(--t) var(--ease);
}
.svc-card:hover .svc-link { gap: 14px; border-color: var(--accent); color: var(--accent-dark); }

/* ══════════════════════════════════════════════════════
   TESTIMONIAL CAROUSEL
   ══════════════════════════════════════════════════════ */
.test-overflow { overflow: hidden; }
.test-track { display: flex; gap: 24px; transition: transform 0.55s var(--ease); }
.tcard { min-width: calc(33.333% - 16px); flex-shrink: 0; }
.test-arrow {
  width: 44px; height: 44px; border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.8rem; cursor: pointer;
  transition: all var(--tf) var(--ease); background: var(--white);
}
.test-arrow:hover { border-color: var(--black); color: var(--black); }
.test-dot {
  width: 24px; height: 2px; border-radius: 2px;
  background: var(--border); border: none; cursor: pointer;
  transition: all 0.3s ease; padding: 0;
}
.test-dot.active { background: var(--black); width: 36px; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .site-nav { padding: 0 32px; }
  .page-hero-body { padding: 0 32px 48px; }
}
@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-cta-desk { display: none; }
  .ham { display: flex; }
  .tcard { min-width: calc(50% - 12px); }
  .pad-xl { padding: 80px 0; }
  .pad-lg { padding: 60px 0; }
}
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; height: 62px; }
  .site-nav.scrolled { height: 56px; }
  .page-hero { height: 380px; }
  .page-hero-body { padding: 0 20px 36px; }
  .pad-xl { padding: 60px 0; }
  .pad-lg { padding: 44px 0; }
  .pad-md { padding: 36px 0; }
  .tcard { min-width: 100%; }
  .nav-logo-tag { display: none; }
  .nav-logo-name { font-size: 1.05rem; }
  .room-card-img { height: 220px; }
}
@media (max-width: 480px) {
  .page-hero { height: 320px; }
}
