/* ==========================================================================
   Hotel Singh International, Amritsar
   Design tokens
   ========================================================================== */

:root {
  --ink:        #171310;
  --ink-soft:   #3B322B;
  --ink-mute:   #6B6058;
  --paper:      #FAF8F4;
  --paper-2:    #F2EEE7;
  --stone:      #E2DBD1;
  --brass:      #A97C22;
  --brass-lit:  #D6AE55;
  --brass-wash: #F4EBD8;
  --white:      #FFFFFF;
  --wa:         #1FA855;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Karla", "Helvetica Neue", Arial, sans-serif;

  --shell: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --sp-section: clamp(64px, 9vw, 128px);

  --r-sm: 4px;
  --r-md: 10px;

  --shadow-1: 0 1px 2px rgba(23, 19, 16, .05), 0 8px 24px -12px rgba(23, 19, 16, .18);
  --shadow-2: 0 2px 6px rgba(23, 19, 16, .07), 0 24px 60px -28px rgba(23, 19, 16, .35);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0;
  font-variation-settings: "opsz" 96;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.15rem; letter-spacing: -.005em; }

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

::selection { background: var(--brass-lit); color: var(--ink); }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--paper); padding: 12px 18px;
}
.skip:focus { left: 8px; top: 8px; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--wide { max-width: 1420px; }

.section { padding-block: var(--sp-section); }
.section[id], .room[id] { scroll-margin-top: 96px; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section--ink { background: var(--ink); color: #C9BFB4; }
.section--ink h2, .section--ink h3, .section--ink h4 { color: var(--paper); }
.section--paper2 { background: var(--paper-2); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  flex: none;
}
.section--ink .eyebrow { color: var(--brass-lit); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-mute);
  max-width: 62ch;
}
.section--ink .lede { color: #A99E93; }

.head-center { text-align: center; max-width: 720px; margin-inline: auto; }
.head-center .lede { margin-inline: auto; }

.rule {
  height: 1px;
  background: var(--stone);
  border: 0;
  margin: 0;
}

/* Ornamental arch mark used as a quiet divider */
.arch-mark { display: block; margin: 0 auto 20px; color: var(--brass); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--solid { background: var(--brass); color: #fff; }
.btn--solid:hover { background: #8F681A; }

.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }

.btn--light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }

.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #17864380; background: #178643; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  white-space: nowrap;
  transition: gap .25s var(--ease);
}
.textlink:hover { gap: 14px; }
.textlink svg { width: 16px; height: 16px; flex: none; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: background .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 82px;
  transition: height .35s var(--ease);
}

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { height: 40px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  transition: color .35s var(--ease);
}
.brand__sub {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid var(--brass);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--brass);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.header-cta:hover { background: var(--brass); color: #fff; }
.header-cta svg { width: 15px; height: 15px; }

/* transparent-over-hero variant */
.site-header--over { }
.site-header--over .brand__name,
.site-header--over .nav a { color: rgba(255,255,255,.92); }
.site-header--over .nav a[aria-current="page"] { color: #fff; }
.site-header--over .brand__sub { color: var(--brass-lit); }
.site-header--over .header-cta { border-color: rgba(255,255,255,.6); color: #fff; }
.site-header--over .header-cta:hover { background: #fff; color: var(--ink); }
.site-header--over .burger span { background: #fff; }

/* scrolled */
.site-header.is-stuck {
  background: rgba(250, 248, 244, .94);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--stone);
}
.site-header.is-stuck .site-header__inner { height: 68px; }
.site-header.is-stuck .brand__name { color: var(--ink); }
.site-header.is-stuck .nav a { color: var(--ink-soft); }
.site-header.is-stuck .nav a[aria-current="page"] { color: var(--brass); }
.site-header.is-stuck .header-cta { border-color: var(--brass); color: var(--brass); }
.site-header.is-stuck .header-cta:hover { background: var(--brass); color: #fff; }
.site-header.is-stuck .burger span { background: var(--ink); }

.burger {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 9px;
}
.burger span {
  display: block; height: 1.5px; width: 100%;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .25s var(--ease), background .35s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: var(--paper);
  padding: 110px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .45s var(--ease), visibility .45s;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav > a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--stone);
}
.mobile-nav > a[aria-current="page"] { color: var(--brass); }
.mobile-nav__foot .btn { justify-content: center; }
.mobile-nav__foot { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }

body.nav-open { overflow: hidden; }
body.nav-open .fab-stack { opacity: 0; pointer-events: none; }

/* When the panel is open the header sits on paper, not on a photo */
body.nav-open .site-header--over .brand__name { color: var(--ink); }
body.nav-open .site-header--over .brand__sub { color: var(--brass); }
body.nav-open .site-header--over .burger span { background: var(--ink); }

/* ==========================================================================
   Hero (home)
   ========================================================================== */

.hero {
  position: relative;
  min-height: min(100svh, 860px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: #241d16 center/cover no-repeat;
  transform: scale(1.06);
  animation: heroDrift 18s var(--ease) forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(102deg, rgba(12,9,6,.88) 0%, rgba(12,9,6,.60) 40%, rgba(12,9,6,.10) 72%, rgba(12,9,6,0) 100%),
    linear-gradient(180deg, rgba(12,9,6,.55) 0%, rgba(12,9,6,0) 32%, rgba(12,9,6,.72) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(56px, 8vw, 96px); padding-top: 150px; }
.hero__eyebrow { color: var(--brass-lit); }
.hero h1 { color: #fff; max-width: 15ch; text-shadow: 0 2px 30px rgba(12,9,6,.45); }
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass-lit);
}
.hero__text {
  max-width: 52ch;
  margin: 22px 0 32px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

/* Fact strip under hero */
.factstrip {
  background: var(--ink);
  color: #C9BFB4;
  border-top: 1px solid rgba(214,174,85,.22);
}
.factstrip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fact {
  padding: 30px 26px;
  border-left: 1px solid rgba(255,255,255,.09);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fact:first-child { border-left: 0; }
.fact__k {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brass-lit);
  line-height: 1.1;
}
.fact__v {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8E8378;
}

/* ==========================================================================
   Inner page header
   ========================================================================== */

.pagehead {
  position: relative;
  min-height: clamp(360px, 52vh, 520px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.pagehead__media {
  position: absolute; inset: 0;
  background: #241d16 center/cover no-repeat;
}
.pagehead::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(102deg, rgba(12,9,6,.86) 0%, rgba(12,9,6,.58) 44%, rgba(12,9,6,.18) 78%),
    linear-gradient(180deg, rgba(12,9,6,.5) 0%, rgba(12,9,6,.15) 45%, rgba(12,9,6,.7) 100%);
}
.pagehead__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 6vw, 68px); padding-top: 140px; }
.pagehead h1 { color: #fff; text-shadow: 0 2px 30px rgba(12,9,6,.45); }
.pagehead .eyebrow { color: var(--brass-lit); }

.crumbs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.crumbs a:hover { color: #fff; }
.crumbs span[aria-hidden] { color: var(--brass-lit); }

/* ==========================================================================
   Split feature (image + text)
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }

.split__media { position: relative; }

/* Signature: ogee arch mask, drawn from Punjabi haveli / gurdwara arches */
.arch {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  clip-path: url(#hsi-arch);
  background: var(--paper-2);
}
.arch img { width: 100%; height: 100%; object-fit: cover; }

/* A brass keyline ring around the arch — arch within an arch */
.split__media:has(.arch) { position: relative; }
.split__media:has(.arch)::before {
  content: "";
  position: absolute;
  inset: -8px -8px 0 -8px;
  clip-path: url(#hsi-arch);
  background: var(--brass);
  opacity: .8;
  z-index: 0;
  pointer-events: none;
}
.split__media .arch { position: relative; z-index: 1; }

.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  border-left: 2px solid var(--brass);
  padding: 4px 0 4px 24px;
  margin: 28px 0 0;
}

/* Long prose block */
.prose { max-width: 74ch; }
.prose p { color: var(--ink-mute); }
.prose--columns { max-width: none; column-count: 2; column-gap: clamp(32px, 5vw, 64px); }
.prose--columns p { break-inside: avoid; }

/* ==========================================================================
   Rooms
   ========================================================================== */

.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 38px);
}
.room {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 150px 150px var(--r-md) var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.room:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.room__media {
  aspect-ratio: 4 / 3.6;
  overflow: hidden;
  border-radius: 150px 150px 0 0;
}
.room__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.room:hover .room__media img { transform: scale(1.06); }
.room__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.room__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.room__tag {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 14px;
}
.room__body p { color: var(--ink-mute); font-size: .96rem; }
.room__body .btn-row { margin-top: auto; padding-top: 22px; }

.amenities {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 18px; padding: 0; list-style: none;
}
.amenities li {
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
  background: var(--paper-2);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ==========================================================================
   Facilities
   ========================================================================== */

.facilities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
}
.facility {
  background: var(--ink);
  padding: 34px 20px;
  text-align: center;
  transition: background .35s var(--ease);
}
.facility:hover { background: #211a15; }
.facility svg { width: 30px; height: 30px; color: var(--brass-lit); margin: 0 auto 14px; }
.facility h4 { font-family: var(--font-body); font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--paper); }

/* ==========================================================================
   Video
   ========================================================================== */

.video-card {
  position: relative;
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  display: block;
  width: 100%;
  box-shadow: var(--shadow-2);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.video-card:hover img { transform: scale(1.04); }
.video-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,11,8,.15), rgba(15,11,8,.5));
}
.video-card__play {
  position: absolute;
  z-index: 2;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.5);
  display: grid; place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.video-card:hover .video-card__play { background: var(--brass); border-color: var(--brass); transform: translate(-50%,-50%) scale(1.08); }
.video-card__play svg { width: 26px; height: 26px; color: #fff; margin-left: 3px; }

/* ==========================================================================
   Gallery
   ========================================================================== */

.gal-group + .gal-group { margin-top: clamp(48px, 6vw, 76px); }
.gal-group__head {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--stone);
}
.gal-group__head h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.gal-group__count { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); font-weight: 700; }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.gal-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--paper-2);
  cursor: zoom-in;
  display: block;
  width: 100%;
  padding: 0;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(23,19,16,0);
  transition: background .35s var(--ease);
}
.gal-item:hover img { transform: scale(1.07); }
.gal-item:hover::after { background: rgba(23,19,16,.2); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12, 9, 7, .95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 84vh; object-fit: contain; border-radius: var(--r-sm); }
.lightbox iframe { width: min(100%, 1100px); aspect-ratio: 16/9; border: 0; border-radius: var(--r-sm); }
.lightbox__cap {
  position: absolute; bottom: 22px; left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,.66);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lightbox__btn {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }
.lightbox__btn svg { width: 20px; height: 20px; }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: clamp(10px, 2vw, 28px); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(10px, 2vw, 28px); top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Sightseeing rows
   ========================================================================== */

.sight { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.sight + .sight { margin-top: clamp(56px, 7vw, 96px); }
.sight:nth-child(even) .sight__media { order: 2; }
.sight__media { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3 / 2; background: var(--paper-2); }
.sight__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.sight__media:hover img { transform: scale(1.05); }
.sight__no {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--brass);
  display: block;
  margin-bottom: 10px;
}
.sight h3 { margin-bottom: 14px; }
.sight p { color: var(--ink-mute); }
.sight__meta {
  margin-top: 18px;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 8px;
}
.sight__meta svg { width: 15px; height: 15px; color: var(--brass); }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}
.ccard {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--r-md);
  padding: 34px 30px;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ccard:hover { border-color: var(--brass); transform: translateY(-4px); box-shadow: var(--shadow-1); }
.ccard svg { width: 26px; height: 26px; color: var(--brass); margin-bottom: 18px; }
.ccard h4 {
  font-family: var(--font-body);
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--brass); margin-bottom: 10px;
}
.ccard p { color: var(--ink); font-size: 1.02rem; line-height: 1.6; }
.ccard a:hover { color: var(--brass); }

.map-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--stone);
  line-height: 0;
  box-shadow: var(--shadow-1);
}
.map-wrap iframe { width: 100%; height: clamp(340px, 46vh, 480px); border: 0; display: block; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.cta-band__media { position: absolute; inset: 0; background: #241d16 center/cover no-repeat; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(15,11,8,.74); }
.cta-band__inner { position: relative; z-index: 2; padding-block: clamp(64px, 8vw, 108px); }
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.76); max-width: 54ch; margin: 18px auto 30px; }
.cta-band .btn-row { justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--ink); color: #A99E93; padding-block: clamp(56px, 7vw, 84px) 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 52px;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--brass-lit); margin-bottom: 18px;
}
.site-footer a:hover { color: var(--brass-lit); }
.footer-brand img { height: 46px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: .95rem; max-width: 34ch; }
.footer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-list a { font-size: .95rem; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: .95rem; }
.footer-contact div { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--brass); flex: none; margin-top: 5px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.footer-social a:hover { background: var(--brass); border-color: var(--brass); color: #fff; }
.footer-social svg { width: 17px; height: 17px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 26px 30px;
  padding-right: 65px;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  font-size: .8rem;
  color: #7C7167;
}

/* ==========================================================================
   Floating contact buttons (all pages)
   ========================================================================== */

.fab-stack {
  transition: opacity .3s var(--ease);
  position: fixed;
  right: clamp(14px, 2.4vw, 26px);
  bottom: clamp(14px, 2.4vw, 26px);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 6px 22px -6px rgba(23,19,16,.5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fab:hover { transform: scale(1.07); box-shadow: 0 10px 28px -6px rgba(23,19,16,.6); }
.fab svg { width: 28px; height: 28px; }
.fab--wa { background: var(--wa); }
.fab--call { background: var(--brass); }
.fab--call svg { width: 24px; height: 24px; }

.fab__label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.fab:hover .fab__label { opacity: 1; transform: translateY(-50%) translateX(0); }

/* Gentle pulse on the WhatsApp ring */
.fab--wa::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: fabPulse 2.8s ease-out infinite;
}
@keyframes fabPulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

@media (max-width: 640px) {
  .fab { width: 50px; height: 50px; }
  .fab svg { width: 25px; height: 25px; }
  .fab__label { display: none; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .09s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .27s; }
.reveal-d4 { transition-delay: .36s; }
.reveal-d5 { transition-delay: .45s; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .facilities { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
  .rooms { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .factstrip__grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: 0; }
  .fact:nth-child(odd) { border-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.09); }
  .prose--columns { column-count: 1; }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  .split, .sight { grid-template-columns: 1fr; }
  .split--reverse .split__media,
  .sight:nth-child(even) .sight__media { order: 0; }
  .arch { aspect-ratio: 3 / 3.4; }
  .gal-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .video-card { aspect-ratio: 16 / 11; }
  .video-card__play { width: 64px; height: 64px; }
}

@media (max-width: 560px) {
  .facilities { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .factstrip__grid { grid-template-columns: 1fr; }
  .fact { border-left: 0 !important; border-top: 1px solid rgba(255,255,255,.09); }
  .fact:first-child { border-top: 0; }
  .btn { padding: 13px 22px; font-size: .78rem; }
  .brand img { height: 34px; }
  .brand__name { font-size: .95rem; }
}

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

@media print {
  .site-header, .fab-stack, .mobile-nav, .cta-band { display: none; }
}
