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

/* ==========================================================================
   SOCIAL VILLA JODHPUR — Boutique Villa Stay
   Brand system: Bohemian + Bali
   Warm Beige · Olive Green · Terracotta · Natural Wood · Antique Gold
   Stay • Dine • Relax • Connect
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Core palette */
  --cream:        #FBF7F0;
  --cream-2:      #F5EDE1;
  --beige:        #EFE4D2;
  --sand:         #E2D2B8;
  --olive:        #5E6B43;
  --olive-dark:   #414C2D;
  --olive-soft:   #8A9469;
  --terracotta:   #B4603A;
  --terracotta-d: #94492A;
  --wood:         #7A5334;
  --gold:         #B08D57;
  --gold-light:   #D3B584;
  --ink:          #2B2721;
  --ink-soft:     #4A4339;
  --muted:        #776C5C;
  --line:         rgba(176, 141, 87, .28);
  --white:        #ffffff;

  /* Type */
  --f-display: 'Marcellus', 'Cormorant Garamond', Georgia, serif;
  --f-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-sans:    'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --sec-y: clamp(64px, 8.5vw, 118px);
  --gutter: clamp(18px, 4vw, 32px);
  --maxw: 1240px;

  /* Effects */
  --shadow-sm: 0 4px 18px rgba(43, 39, 33, .07);
  --shadow-md: 0 14px 40px rgba(43, 39, 33, .10);
  --shadow-lg: 0 28px 70px rgba(43, 39, 33, .16);
  --arch: 50% 50% 12px 12px / 34% 34% 4% 4%;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.72;
  letter-spacing: .002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--terracotta); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--terracotta-d); }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: .002em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 6.4vw, 4.3rem); }
h2 { font-size: clamp(1.95rem, 4.1vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: clamp(1.08rem, 1.6vw, 1.28rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--olive); color: var(--cream); }

:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.sv-wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.sv-wrap--wide { max-width: 1440px; }
.sv-wrap--narrow { max-width: 880px; }

.sv-section { padding-block: var(--sec-y); position: relative; }
.sv-section--tight { padding-block: clamp(48px, 6vw, 78px); }
.sv-section--cream2 { background: var(--cream-2); }
.sv-section--beige  { background: var(--beige); }
.sv-section--ink    { background: var(--ink); color: rgba(251, 247, 240, .78); }
.sv-section--ink h2, .sv-section--ink h3, .sv-section--ink h4 { color: var(--cream); }

.sv-grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.sv-grid--2 { grid-template-columns: repeat(2, 1fr); }
.sv-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sv-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------------------------------------
   4. SECTION HEADINGS
   -------------------------------------------------------------------------- */
.sv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.sv-eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.sv-eyebrow--center::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.sv-section--ink .sv-eyebrow { color: var(--gold-light); }

.sv-head { max-width: 720px; }
.sv-head--center { margin-inline: auto; text-align: center; }
.sv-head p { color: var(--muted); font-size: 1.03rem; }
.sv-section--ink .sv-head p { color: rgba(251, 247, 240, .68); }

.sv-lotus-rule {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 26px auto 0; max-width: 260px; color: var(--gold);
}
.sv-lotus-rule::before, .sv-lotus-rule::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.sv-lotus-rule svg { width: 20px; height: 20px; opacity: .8; }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.sv-btn {
  --btn-bg: var(--terracotta);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--f-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.sv-btn:hover { color: var(--btn-fg); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(43, 39, 33, .18); }
.sv-btn i, .sv-btn svg { font-size: .95em; }

.sv-btn--olive { --btn-bg: var(--olive); }
.sv-btn--gold  { --btn-bg: var(--gold); }
.sv-btn--ink   { --btn-bg: var(--ink); }

.sv-btn--wa { --btn-bg: #1FA855; }
.sv-btn--wa:hover { --btn-bg: #17924A; }

.sv-btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.sv-btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.sv-btn--light {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  backdrop-filter: blur(8px);
}
.sv-btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.sv-btn--sm { padding: 12px 22px; font-size: .72rem; }
.sv-btn--block { width: 100%; }

.sv-btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.sv-btn-row--center { justify-content: center; }

.sv-textlink {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .78rem; font-weight: 500; letter-spacing: .17em; text-transform: uppercase;
  color: var(--olive); border-bottom: 1px solid var(--line); padding-bottom: 5px;
}
.sv-textlink:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* --------------------------------------------------------------------------
   6. HEADER
   -------------------------------------------------------------------------- */
.sv-topbar {
  background: var(--olive-dark);
  color: rgba(251, 247, 240, .82);
  font-size: .76rem;
  letter-spacing: .07em;
}
.sv-topbar .sv-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 42px; }
.sv-topbar a { color: inherit; }
.sv-topbar a:hover { color: var(--gold-light); }
.sv-topbar__tag { display: inline-flex; align-items: center; gap: 12px; letter-spacing: .22em; text-transform: uppercase; font-size: .68rem; color: var(--gold-light); }
.sv-topbar__links { display: flex; align-items: center; gap: 22px; }
.sv-topbar__links span { display: inline-flex; align-items: center; gap: 8px; }
.sv-topbar__socials { display: flex; gap: 14px; }

.sv-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(251, 247, 240, .0);
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.sv-header--overlay { position: fixed; left: 0; right: 0; }
.sv-header .sv-wrap { display: flex; align-items: center; gap: 22px; min-height: 84px; }

.sv-header.is-stuck,
.sv-header--solid {
  background: rgba(251, 247, 240, .95);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(43, 39, 33, .06);
}

/* Brand mark */
.sv-brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.sv-brand__mark { width: 40px; height: 40px; color: var(--gold); flex: none; }
.sv-brand__text { display: flex; flex-direction: column; line-height: 1; }
.sv-brand__name {
  font-family: var(--f-display);
  font-size: 1.42rem;
  color: var(--ink);
  letter-spacing: .012em;
  transition: color .4s var(--ease);
}
.sv-brand__sub {
  font-size: .58rem; letter-spacing: .44em; text-transform: uppercase;
  color: var(--gold); margin-top: 6px; font-weight: 500;
}

.sv-nav ul { display: flex; align-items: center; gap: 30px; }
.sv-nav a {
  position: relative;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink);
  padding-block: 6px;
  transition: color .3s var(--ease);
}
.sv-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--terracotta);
  transition: width .35s var(--ease);
}
.sv-nav a:hover, .sv-nav a[aria-current="page"] { color: var(--terracotta); }
.sv-nav a:hover::after, .sv-nav a[aria-current="page"]::after { width: 100%; }

.sv-nav__item { position: relative; }
.sv-nav__item > a > .caret { font-size: .6em; margin-left: 6px; opacity: .7; }
.sv-nav__sub {
  position: absolute; top: calc(100% + 20px); left: -18px;
  min-width: 216px; padding: 12px 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: block;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.sv-nav__item:hover .sv-nav__sub,
.sv-nav__item:focus-within .sv-nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sv-nav__sub li { display: block; }
.sv-nav__sub a { display: block; padding: 9px 22px; letter-spacing: .09em; text-transform: none; font-size: .92rem; }
.sv-nav__sub a::after { display: none; }
.sv-nav__sub a:hover { background: var(--cream-2); }

.sv-header__cta { display: flex; align-items: center; gap: 16px; }
.sv-header__phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .86rem; letter-spacing: .05em; color: var(--ink); white-space: nowrap;
}
.sv-header__phone i { color: var(--terracotta); }
.sv-header__phone:hover { color: var(--terracotta); }

.sv-burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 50%;
  background: transparent; color: var(--ink);
  align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.05rem;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.sv-burger:hover { background: var(--ink); color: var(--cream); }

/* Transparent-over-hero variant */
.sv-header--onhero:not(.is-stuck) .sv-brand__name,
.sv-header--onhero:not(.is-stuck) .sv-nav a,
.sv-header--onhero:not(.is-stuck) .sv-header__phone,
.sv-header--onhero:not(.is-stuck) .sv-burger { color: #fff; }
.sv-header--onhero:not(.is-stuck) .sv-burger { border-color: rgba(255,255,255,.4); }
.sv-header--onhero:not(.is-stuck) .sv-brand__mark { color: var(--gold-light); }

/* Mobile drawer */
.sv-drawer {
  position: fixed; inset: 0; z-index: 1200;
  visibility: hidden; pointer-events: none;
}
.sv-drawer.is-open { visibility: visible; pointer-events: auto; }
.sv-drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(30, 27, 22, .55);
  backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .4s var(--ease);
}
.sv-drawer.is-open .sv-drawer__scrim { opacity: 1; }
.sv-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--cream);
  padding: 28px 30px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  display: flex; flex-direction: column; gap: 26px;
}
.sv-drawer.is-open .sv-drawer__panel { transform: translateX(0); }
.sv-drawer__top { display: flex; align-items: center; justify-content: space-between; }
.sv-drawer__close {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  cursor: pointer; font-size: 1rem;
}
.sv-drawer nav ul { display: flex; flex-direction: column; }
.sv-drawer nav > ul > li { border-bottom: 1px solid var(--line); }
.sv-drawer nav a {
  display: block; padding: 15px 0;
  font-family: var(--f-display); font-size: 1.12rem; color: var(--ink); letter-spacing: .03em;
}
.sv-drawer nav a:hover { color: var(--terracotta); }
.sv-drawer nav ul ul { padding: 0 0 12px 16px; }
.sv-drawer nav ul ul li { border: 0; }
.sv-drawer nav ul ul a { padding: 8px 0; font-family: var(--f-sans); font-size: .95rem; color: var(--muted); }
.sv-drawer__meta { font-size: .9rem; color: var(--muted); display: grid; gap: 10px; }
.sv-drawer__meta a { color: var(--ink); }
.sv-drawer__meta i { color: var(--terracotta); width: 18px; }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.sv-hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex;
  align-items: flex-end;
  padding-top: 150px;
  padding-bottom: clamp(48px, 7vw, 88px);
  overflow: hidden;
  isolation: isolate;
}
.sv-hero__media { position: absolute; inset: 0; z-index: -2; }
.sv-hero__media img, .sv-hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.sv-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 21, 17, .62) 0%, rgba(24, 21, 17, .18) 34%, rgba(24, 21, 17, .58) 72%, rgba(24, 21, 17, .88) 100%),
    linear-gradient(90deg, rgba(24, 21, 17, .52) 0%, rgba(24, 21, 17, .05) 62%);
}
.sv-hero__inner { position: relative; z-index: 2; color: #fff; }

.sv-hero__tagline {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-size: .7rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 22px;
}
.sv-hero__tagline .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .7; }

.sv-hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 7.4vw, 5.4rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 12px;
  text-shadow: 0 4px 34px rgba(0, 0, 0, .38);
}
.sv-hero__sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  color: var(--gold-light);
  margin: 0 0 20px;
  line-height: 1.3;
  font-weight: 400;
}
.sv-hero__text {
  max-width: 560px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: rgba(255, 255, 255, .9);
  margin-bottom: 32px;
}
.sv-hero .sv-btn-row { margin-bottom: 42px; }

.sv-hero__strip {
  display: flex; flex-wrap: wrap; gap: 14px 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}
.sv-hero__strip li {
  display: flex; align-items: center; gap: 10px;
  font-size: .84rem; color: rgba(255, 255, 255, .85); letter-spacing: .04em;
}
.sv-hero__strip i { color: var(--gold-light); font-size: .95rem; }
.sv-hero__strip .stars { color: #F2B734; letter-spacing: .08em; }

/* Compact page hero for inner pages */
.sv-pagehero {
  position: relative;
  padding: clamp(140px, 20vw, 220px) 0 clamp(60px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  color: #fff;
}
.sv-pagehero__media { position: absolute; inset: 0; z-index: -2; }
.sv-pagehero__media img { width: 100%; height: 100%; object-fit: cover; }
.sv-pagehero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,21,17,.72), rgba(24,21,17,.55) 45%, rgba(24,21,17,.8));
}
.sv-pagehero h1 { color: #fff; margin-bottom: 14px; }
.sv-pagehero p { color: rgba(255,255,255,.85); max-width: 620px; margin-inline: auto; }
.sv-crumbs {
  display: flex; justify-content: center; gap: 10px; margin-top: 22px;
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.62);
}
.sv-crumbs a { color: var(--gold-light); }
.sv-crumbs span { opacity: .55; }

/* --------------------------------------------------------------------------
   8. QUICK INFO BAR (replaces fake counters)
   -------------------------------------------------------------------------- */
.sv-quickbar { background: var(--olive-dark); color: var(--cream); }
.sv-quickbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sv-quickbar__item {
  display: flex; align-items: center; gap: 16px;
  padding: 30px clamp(16px, 2.4vw, 30px);
  border-right: 1px solid rgba(251, 247, 240, .13);
}
.sv-quickbar__item:last-child { border-right: 0; }
.sv-quickbar__item i { font-size: 1.5rem; color: var(--gold-light); flex: none; }
.sv-quickbar__item strong {
  display: block; font-family: var(--f-display); font-size: 1.02rem;
  color: var(--cream); font-weight: 400; letter-spacing: .02em;
}
.sv-quickbar__item span { font-size: .8rem; color: rgba(251, 247, 240, .62); letter-spacing: .05em; }

/* --------------------------------------------------------------------------
   9. WHY CHOOSE — feature grid
   -------------------------------------------------------------------------- */
.sv-why { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.sv-why__figure { position: relative; }
.sv-why__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--arch); box-shadow: var(--shadow-lg); }
.sv-why__figure::before {
  content: ""; position: absolute; inset: 16px -16px -16px 16px;
  border: 1px solid var(--line); border-radius: var(--arch); z-index: -1;
}
.sv-why__badge {
  position: absolute; right: -14px; bottom: 34px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 22px; box-shadow: var(--shadow-md); text-align: center; max-width: 190px;
}
.sv-why__badge strong { display: block; font-family: var(--f-display); font-size: 1.5rem; color: var(--terracotta); }
.sv-why__badge span { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.sv-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 12px; margin-top: 30px; }
.sv-feat {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 14px; border-radius: 12px;
  transition: background-color .35s var(--ease), transform .35s var(--ease);
}
.sv-feat:hover { background: var(--cream-2); transform: translateY(-2px); }
.sv-feat__icon {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(94, 107, 67, .10); color: var(--olive); font-size: 1.02rem;
}
.sv-feat h4 { margin: 0 0 3px; font-family: var(--f-sans); font-size: .96rem; font-weight: 500; color: var(--ink); letter-spacing: .02em; }
.sv-feat p { font-size: .87rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* --------------------------------------------------------------------------
   10. ROOM CARDS
   -------------------------------------------------------------------------- */
.sv-rooms { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 38px); }
.sv-room {
  background: var(--white);
  border: 1px solid rgba(176, 141, 87, .18);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.sv-room:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sv-room__media { position: relative; overflow: hidden; aspect-ratio: 16 / 11; }
.sv-room__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.sv-room:hover .sv-room__media img { transform: scale(1.06); }
.sv-room__tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(251, 247, 240, .94);
  color: var(--olive-dark);
  padding: 7px 15px; border-radius: 999px;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
}
.sv-room__body { padding: 26px clamp(20px, 2.4vw, 30px) 28px; display: flex; flex-direction: column; flex: 1; gap: 14px; }
.sv-room__body h3 { margin: 0; }
.sv-room__body > p { color: var(--muted); font-size: .95rem; margin: 0; }
.sv-room__specs { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .84rem; color: var(--ink-soft); }
.sv-room__specs li { display: inline-flex; align-items: center; gap: 8px; }
.sv-room__specs i { color: var(--gold); font-size: .88rem; }
.sv-room__amen { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; }
.sv-room__amen li {
  font-size: .74rem; letter-spacing: .05em; color: var(--olive-dark);
  background: rgba(94, 107, 67, .09); border-radius: 999px; padding: 6px 13px;
}
.sv-room__foot {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.sv-room__price { font-size: .82rem; color: var(--muted); }
.sv-room__price strong { display: block; font-family: var(--f-display); font-size: 1.2rem; color: var(--ink); font-weight: 400; }

/* --------------------------------------------------------------------------
   11. ABOUT
   -------------------------------------------------------------------------- */
.sv-about { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(34px, 5vw, 76px); align-items: center; }
.sv-about__stack { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.sv-about__stack img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow-md); }
.sv-about__stack img:first-child { grid-row: span 2; aspect-ratio: 3 / 5; border-radius: var(--arch); }
.sv-about__stack img:not(:first-child) { aspect-ratio: 4 / 3; }
.sv-about__quote {
  margin-top: 26px; padding-left: 22px; border-left: 2px solid var(--gold);
  font-family: var(--f-serif); font-style: italic; font-size: 1.22rem; color: var(--ink); line-height: 1.5;
}
.sv-about__sign {
  display: flex; align-items: center; gap: 14px; margin-top: 28px;
  font-size: .78rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
}
.sv-about__sign svg { width: 26px; height: 26px; }

/* --------------------------------------------------------------------------
   12. GALLERY
   -------------------------------------------------------------------------- */
.sv-gal-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 38px; }
.sv-gal-filter button {
  border: 1px solid var(--line); background: transparent; color: var(--muted);
  border-radius: 999px; padding: 10px 20px; cursor: pointer;
  font-family: var(--f-sans); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  transition: all .3s var(--ease);
}
.sv-gal-filter button:hover { color: var(--ink); border-color: var(--gold); }
.sv-gal-filter button.is-active { background: var(--olive); border-color: var(--olive); color: var(--cream); }

.sv-gal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; grid-auto-flow: dense; }
.sv-gal__item {
  position: relative; display: block; overflow: hidden; border-radius: 14px;
  aspect-ratio: 1 / 1; background: var(--cream-2); cursor: zoom-in;
}
.sv-gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.sv-gal__item:hover img { transform: scale(1.07); }
.sv-gal__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(24, 21, 17, .72));
  opacity: 0; transition: opacity .4s var(--ease);
}
.sv-gal__item:hover::after { opacity: 1; }
.sv-gal__cap {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
  color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.sv-gal__item:hover .sv-gal__cap { opacity: 1; transform: translateY(0); }
.sv-gal__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.sv-gal__item--tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.sv-gal__item--big  { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
.sv-gal__item.is-hidden { display: none; }

/* Lightbox */
.sv-lightbox {
  position: fixed; inset: 0; z-index: 1400;
  background: rgba(20, 18, 14, .93);
  display: grid; place-items: center;
  padding: clamp(16px, 4vw, 56px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.sv-lightbox.is-open { opacity: 1; visibility: visible; }
.sv-lightbox img { max-width: 100%; max-height: 84vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.sv-lightbox__cap { color: rgba(255,255,255,.75); text-align: center; margin-top: 16px; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; }
.sv-lightbox__btn {
  position: absolute; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.28);
  color: #fff; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.05rem;
  display: grid; place-items: center; transition: background-color .3s var(--ease);
}
.sv-lightbox__btn:hover { background: rgba(255,255,255,.24); }
.sv-lightbox__close { top: 24px; right: 24px; }
.sv-lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.sv-lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   13. AMENITIES
   -------------------------------------------------------------------------- */
.sv-amen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.sv-amen {
  background: var(--cream);
  padding: clamp(24px, 3vw, 34px) 20px;
  text-align: center;
  transition: background-color .4s var(--ease);
}
.sv-amen:hover { background: var(--cream-2); }
.sv-amen i { font-size: 1.65rem; color: var(--terracotta); display: block; margin-bottom: 14px; }
.sv-amen strong { display: block; font-family: var(--f-sans); font-size: .93rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; letter-spacing: .02em; }
.sv-amen span { font-size: .8rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   14. CAFE / DINING
   -------------------------------------------------------------------------- */
.sv-cafe { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.sv-cafe__media { position: relative; }
.sv-cafe__media > img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; border-radius: var(--arch); box-shadow: var(--shadow-lg); }
.sv-cafe__float {
  position: absolute; left: -26px; bottom: -26px; width: 52%;
  border-radius: 14px; overflow: hidden; border: 6px solid var(--cream); box-shadow: var(--shadow-md);
}
.sv-cafe__float img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.sv-cafe__list { display: grid; gap: 16px; margin-top: 26px; }
.sv-cafe__list li { display: flex; gap: 14px; align-items: flex-start; font-size: .96rem; }
.sv-cafe__list i { color: var(--gold); margin-top: 5px; }

.sv-pillars { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }
.sv-pillars li {
  font-family: var(--f-display); font-size: 1rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--olive-dark); background: rgba(94, 107, 67, .1); padding: 10px 20px; border-radius: 999px;
}

/* --------------------------------------------------------------------------
   15. REVIEWS
   -------------------------------------------------------------------------- */
.sv-rev-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 18px 30px; margin-bottom: 44px;
}
.sv-google-badge {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 24px; box-shadow: var(--shadow-sm);
}
.sv-google-badge__g { font-family: var(--f-sans); font-size: 1.5rem; font-weight: 500; letter-spacing: -.02em; }
.sv-google-badge__g .b { color: #4285F4; } .sv-google-badge__g .r { color: #EA4335; }
.sv-google-badge__g .y { color: #FBBC05; } .sv-google-badge__g .g { color: #34A853; }
.sv-google-badge__meta { text-align: left; line-height: 1.35; }
.sv-google-badge__meta .stars { color: #F2B734; font-size: 1rem; letter-spacing: .1em; }
.sv-google-badge__meta span { display: block; font-size: .8rem; color: var(--muted); }

.sv-revs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.sv-rev {
  background: var(--white); border: 1px solid rgba(176, 141, 87, .2);
  border-radius: 16px; padding: 28px 26px 26px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.sv-rev:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sv-rev__top { display: flex; align-items: center; gap: 14px; }
.sv-rev__ava {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--olive); color: var(--cream);
  font-family: var(--f-display); font-size: 1.12rem;
}
.sv-rev__who strong { display: block; font-size: .96rem; color: var(--ink); font-weight: 500; }
.sv-rev__who span { font-size: .78rem; color: var(--muted); }
.sv-rev__stars { color: #F2B734; font-size: .92rem; letter-spacing: .12em; }
.sv-rev p { font-size: .95rem; color: var(--ink-soft); margin: 0; }
.sv-rev__src { margin-top: auto; padding-top: 12px; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.sv-rev--empty { border-style: dashed; background: transparent; box-shadow: none; color: var(--muted); }

/* --------------------------------------------------------------------------
   16. EXPLORE JODHPUR
   -------------------------------------------------------------------------- */
.sv-explore { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sv-place {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 3 / 4; display: flex; align-items: flex-end;
  background: var(--olive-dark); isolation: isolate;
}
.sv-place img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.1s var(--ease); }
.sv-place::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(24,21,17,.05) 30%, rgba(24,21,17,.85));
}
.sv-place:hover img { transform: scale(1.07); }
.sv-place__body { padding: 24px 22px; color: #fff; width: 100%; }
.sv-place__body h4 { color: #fff; margin: 0 0 6px; font-size: 1.14rem; }
.sv-place__dist {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; letter-spacing: .1em; color: var(--gold-light);
}
.sv-place--plain { background: var(--cream-2); border: 1px solid var(--line); aspect-ratio: auto; padding: 26px 24px; align-items: flex-start; }
.sv-place--plain::after { display: none; }
.sv-place--plain .sv-place__body { padding: 0; color: var(--ink-soft); }
.sv-place--plain h4 { color: var(--ink); }
.sv-place--plain .sv-place__dist { color: var(--terracotta); }

/* --------------------------------------------------------------------------
   17. LOCATION
   -------------------------------------------------------------------------- */
.sv-loc { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.sv-loc__card {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 24px;
}
.sv-addr { display: flex; gap: 14px; }
.sv-addr i { color: var(--terracotta); font-size: 1.15rem; margin-top: 4px; }
.sv-addr strong { display: block; font-family: var(--f-display); font-size: 1.24rem; color: var(--ink); font-weight: 400; margin-bottom: 4px; }
.sv-addr address { font-style: normal; color: var(--muted); font-size: .96rem; line-height: 1.6; }

.sv-dist { display: grid; gap: 2px; }
.sv-dist li {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: .93rem;
}
.sv-dist li:last-child { border-bottom: 0; }
.sv-dist li span:first-child { display: inline-flex; align-items: center; gap: 11px; color: var(--ink-soft); }
.sv-dist li i { color: var(--olive); width: 18px; text-align: center; }
.sv-dist li b { font-family: var(--f-display); font-weight: 400; color: var(--terracotta); white-space: nowrap; }

.sv-map { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); min-height: 420px; background: var(--cream-2); }
.sv-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(.9) contrast(1.02); }

/* --------------------------------------------------------------------------
   18. FAQ
   -------------------------------------------------------------------------- */
.sv-faq { display: grid; gap: 12px; }
.sv-faq__item {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.sv-faq__item.is-open { box-shadow: var(--shadow-md); border-color: rgba(176, 141, 87, .5); }
.sv-faq__q {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  padding: 20px clamp(18px, 2.4vw, 28px);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--f-display); font-size: clamp(1rem, 1.5vw, 1.14rem); color: var(--ink);
  line-height: 1.4;
}
.sv-faq__q i { flex: none; color: var(--terracotta); font-size: .9rem; transition: transform .35s var(--ease); }
.sv-faq__item.is-open .sv-faq__q i { transform: rotate(45deg); }
.sv-faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.sv-faq__a > div { padding: 0 clamp(18px, 2.4vw, 28px) 22px; color: var(--muted); font-size: .96rem; }
.sv-faq__a a { font-weight: 400; }

/* --------------------------------------------------------------------------
   19. FINAL CTA
   -------------------------------------------------------------------------- */
.sv-cta {
  position: relative; isolation: isolate; text-align: center;
  padding-block: clamp(76px, 10vw, 140px); color: #fff; overflow: hidden;
}
.sv-cta__media { position: absolute; inset: 0; z-index: -2; }
.sv-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.sv-cta__media::after { content: ""; position: absolute; inset: 0; background: rgba(24, 21, 17, .72); }
.sv-cta h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 16px; }
.sv-cta p { color: rgba(255,255,255,.84); max-width: 620px; margin: 0 auto 34px; }
.sv-cta__note { margin-top: 26px; font-size: .82rem; color: rgba(255,255,255,.62); letter-spacing: .06em; }
.sv-cta__note a { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   20. FOOTER
   -------------------------------------------------------------------------- */
.sv-footer { background: var(--ink); color: rgba(251, 247, 240, .66); padding-top: clamp(56px, 7vw, 88px); font-size: .94rem; }
.sv-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.35fr; gap: clamp(26px, 3.4vw, 50px); padding-bottom: 52px; }
.sv-footer h4 {
  color: var(--cream); font-family: var(--f-sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 22px;
}
.sv-footer a { color: rgba(251, 247, 240, .66); }
.sv-footer a:hover { color: var(--gold-light); }
.sv-footer__brand .sv-brand__name { color: var(--cream); }
.sv-footer__brand p { margin-top: 20px; font-size: .93rem; line-height: 1.7; }
.sv-footer__tag {
  display: inline-flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-light);
}
.sv-footer__links li { margin-bottom: 11px; }
.sv-footer__contact li { display: flex; gap: 13px; margin-bottom: 16px; align-items: flex-start; }
.sv-footer__contact i { color: var(--gold); margin-top: 5px; width: 16px; flex: none; }
.sv-footer__contact address { font-style: normal; }
.sv-socials { display: flex; gap: 12px; margin-top: 24px; }
.sv-socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(251, 247, 240, .2); color: rgba(251, 247, 240, .7);
  transition: all .3s var(--ease);
}
.sv-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.sv-footer__bar {
  border-top: 1px solid rgba(251, 247, 240, .12);
  padding-block: 24px;
  display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(251, 247, 240, .5);
}

/* --------------------------------------------------------------------------
   21. STICKY MOBILE ACTION BAR + FLOATING WHATSAPP
   -------------------------------------------------------------------------- */
.sv-stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  display: none;
  background: rgba(251, 247, 240, .97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(43, 39, 33, .12);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.sv-stickybar ul { display: grid; grid-template-columns: repeat(3, 1fr); }
.sv-stickybar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 11px 6px 12px;
  font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  color: var(--ink); border-right: 1px solid var(--line);
}
.sv-stickybar li:last-child a { border-right: 0; }
.sv-stickybar i { font-size: 1.18rem; }
.sv-stickybar .wa i { color: #1FA855; }
.sv-stickybar .call i { color: var(--olive); }
.sv-stickybar .book { background: var(--terracotta); color: #fff; }
.sv-stickybar .book i { color: #fff; }

.sv-wa-float {
  position: fixed; right: 22px; bottom: 24px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: #1FA855; color: #fff; font-size: 1.6rem;
  box-shadow: 0 12px 30px rgba(31, 168, 85, .38);
  transition: transform .35s var(--ease);
}
.sv-wa-float:hover { transform: scale(1.08); color: #fff; }
.sv-wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(31, 168, 85, .5);
  animation: sv-pulse 2.4s infinite;
}
@keyframes sv-pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }

/* --------------------------------------------------------------------------
   22. ROOM DETAIL PAGE
   -------------------------------------------------------------------------- */
.sv-roomlayout { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(30px, 4vw, 58px); align-items: start; }

.sv-roomgal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 40px; }
.sv-roomgal a { border-radius: 12px; overflow: hidden; display: block; aspect-ratio: 4/3; cursor: zoom-in; }
.sv-roomgal a:first-child { grid-column: span 4; aspect-ratio: 16/9; border-radius: 16px; }
.sv-roomgal img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.sv-roomgal a:hover img { transform: scale(1.06); }

.sv-spectable { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--white); }
.sv-spectable h3 {
  margin: 0; padding: 20px 26px; background: var(--cream-2);
  border-bottom: 1px solid var(--line); font-size: 1.2rem;
}
.sv-spectable ul { display: grid; grid-template-columns: repeat(2, 1fr); }
.sv-spectable li {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 22px; border-bottom: 1px solid rgba(176, 141, 87, .16); font-size: .93rem;
}
.sv-spectable li i { color: var(--gold); width: 20px; text-align: center; flex: none; }
.sv-spectable li span { color: var(--muted); }
.sv-spectable li b { color: var(--ink); font-weight: 500; margin-left: auto; text-align: right; }

.sv-booking-card {
  position: sticky; top: 108px;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(24px, 3vw, 32px); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 18px;
}
.sv-booking-card h3 { margin: 0; font-size: 1.32rem; }
.sv-booking-card__price {
  display: flex; align-items: baseline; gap: 8px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.sv-booking-card__price strong { font-family: var(--f-display); font-size: 1.9rem; color: var(--terracotta); font-weight: 400; }
.sv-booking-card__price span { font-size: .86rem; color: var(--muted); }
.sv-booking-card ul { display: grid; gap: 11px; font-size: .92rem; }
.sv-booking-card ul li { display: flex; gap: 11px; align-items: flex-start; }
.sv-booking-card ul i { color: var(--olive); margin-top: 5px; font-size: .82rem; }
.sv-booking-card__note { font-size: .8rem; color: var(--muted); text-align: center; line-height: 1.5; }

.sv-prose h3 { margin-top: 34px; }
.sv-prose ul.sv-ticks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; margin: 16px 0; }
.sv-prose ul.sv-ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; }
.sv-prose ul.sv-ticks i { color: var(--olive); margin-top: 6px; font-size: .8rem; }

/* --------------------------------------------------------------------------
   23. CONTACT PAGE
   -------------------------------------------------------------------------- */
.sv-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.sv-contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 32px 28px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.sv-contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.sv-contact-card__icon {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 1.4rem;
  background: rgba(180, 96, 58, .1); color: var(--terracotta);
}
.sv-contact-card h4 { margin-bottom: 8px; font-family: var(--f-sans); font-size: 1rem; font-weight: 500; }
.sv-contact-card p { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.sv-contact-card a.value { display: block; font-family: var(--f-display); font-size: 1.18rem; color: var(--ink); margin-bottom: 16px; }

.sv-form { display: grid; gap: 16px; }
.sv-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sv-form label { display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.sv-form input, .sv-form select, .sv-form textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--white); color: var(--ink);
  font-family: var(--f-sans); font-size: .96rem; font-weight: 300;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.sv-form input:focus, .sv-form select:focus, .sv-form textarea:focus {
  outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(94, 107, 67, .12);
}
.sv-form textarea { min-height: 130px; resize: vertical; }

/* --------------------------------------------------------------------------
   24. UTILITIES + MOTION
   -------------------------------------------------------------------------- */
.sv-center { text-align: center; }
.sv-mt-l { margin-top: clamp(34px, 4vw, 54px); }
.sv-mb-l { margin-bottom: clamp(34px, 4vw, 54px); }
.text-gold { color: var(--gold); }
.text-terra { color: var(--terracotta); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.sv-motif {
  position: absolute; pointer-events: none; z-index: 0;
  color: var(--gold); opacity: .07;
}
.sv-motif--tr { top: -40px; right: -50px; width: 260px; }
.sv-motif--bl { bottom: -50px; left: -60px; width: 300px; }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   25. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .sv-nav ul { gap: 22px; }
  .sv-nav a { font-size: .76rem; }
  .sv-header__phone { display: none; }
  .sv-explore { grid-template-columns: repeat(3, 1fr); }
  .sv-amen-grid { grid-template-columns: repeat(3, 1fr); }
  .sv-revs { grid-template-columns: repeat(2, 1fr); }
  .sv-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
  html { scroll-padding-top: 78px; }
  body { font-size: 16px; }
  .sv-header .sv-wrap { min-height: 72px; }
  .sv-nav, .sv-header__cta .sv-btn { display: none; }
  .sv-burger { display: inline-flex; }
  .sv-topbar__links span.hide-md { display: none; }

  .sv-hero { min-height: auto; padding-top: 126px; }
  .sv-why, .sv-about, .sv-cafe, .sv-loc, .sv-roomlayout { grid-template-columns: 1fr; }
  .sv-why__figure { max-width: 520px; margin-inline: auto; }
  .sv-why__figure img { aspect-ratio: 4/3; }
  .sv-cafe__media > img { aspect-ratio: 4/3; }
  .sv-cafe__float { width: 44%; left: -12px; bottom: -18px; }
  .sv-rooms { grid-template-columns: 1fr; }
  .sv-quickbar__grid { grid-template-columns: repeat(2, 1fr); }
  .sv-quickbar__item:nth-child(2) { border-right: 0; }
  .sv-quickbar__item:nth-child(-n+2) { border-bottom: 1px solid rgba(251,247,240,.13); }
  .sv-gal { grid-template-columns: repeat(3, 1fr); }
  .sv-booking-card { position: static; }
  .sv-map, .sv-map iframe { min-height: 340px; }
  .sv-stickybar { display: block; }
  .sv-wa-float { display: none; }
  body { padding-bottom: 64px; }
  .sv-about__stack img:first-child { aspect-ratio: 3/4; }
}

@media (max-width: 767px) {
  :root { --gutter: 18px; }
  .sv-topbar { display: none; }
  .sv-hero__strip { gap: 10px 22px; }
  .sv-hero__strip li { font-size: .78rem; }
  .sv-feats { grid-template-columns: 1fr; }
  .sv-explore { grid-template-columns: repeat(2, 1fr); }
  .sv-amen-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-revs { grid-template-columns: 1fr; }
  .sv-gal { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sv-gal__item--big { grid-column: span 2; grid-row: span 1; aspect-ratio: 3/2; }
  .sv-gal__item--tall { grid-row: span 1; aspect-ratio: 1/1; }
  .sv-gal__item--wide { grid-column: span 2; aspect-ratio: 16/9; }
  .sv-spectable ul { grid-template-columns: 1fr; }
  .sv-roomgal { grid-template-columns: repeat(2, 1fr); }
  .sv-roomgal a:first-child { grid-column: span 2; }
  .sv-footer__grid { grid-template-columns: 1fr; }
  .sv-form__row { grid-template-columns: 1fr; }
  .sv-contact-grid { grid-template-columns: 1fr; }
  .sv-prose ul.sv-ticks { grid-template-columns: 1fr; }
  .sv-about__stack { grid-template-columns: 1fr 1fr; }
  .sv-btn { padding: 14px 24px; font-size: .74rem; }
  .sv-lightbox__prev { left: 10px; } .sv-lightbox__next { right: 10px; }
  .sv-lightbox__btn { width: 42px; height: 42px; }
}

@media (max-width: 479px) {
  .sv-brand__name { font-size: 1.2rem; }
  .sv-brand__mark { width: 34px; height: 34px; }
  .sv-quickbar__grid { grid-template-columns: 1fr; }
  .sv-quickbar__item { border-right: 0; border-bottom: 1px solid rgba(251,247,240,.13); }
  .sv-quickbar__item:last-child { border-bottom: 0; }
  .sv-hero .sv-btn-row .sv-btn { width: 100%; }
  .sv-explore { grid-template-columns: 1fr; }
  .sv-place { aspect-ratio: 16/10; }
}
