/* ==========================================================================
   Aranya Living — Site sections
   Header • Hero • Room collections • Dining • Kitchen • Gallery • Consult • Footer
   ========================================================================== */

/* ---------------- Header ---------------- */
.topbar {
  background: var(--espresso);
  color: rgba(246, 233, 210, 0.86);
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
}

.topbar .brass {
  color: var(--brass-hi);
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(246, 233, 210, 0.86);
  transition: color 0.3s;
}

.topbar__phone:hover {
  color: var(--brass-hi);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(250, 244, 233, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(253, 250, 243, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(43, 29, 18, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 32% 28%, #fff6e2, var(--brass-hi) 45%, var(--brass-deep));
  color: #241505;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 8px 20px rgba(185, 138, 60, 0.35);
}

.brand__text {
  line-height: 1.05;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.brand__sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
}

.nav__links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), var(--brass-hi));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--ink);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.enquiry-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  padding: 0 18px;
  border-radius: var(--r-full);
  border: 1px solid var(--line-strong);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.enquiry-btn:hover {
  border-color: var(--brass);
  color: var(--brass-deep);
}

.enquiry-btn__count {
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: var(--r-full);
  background: var(--brass);
  color: #241505;
  font-size: 0.68rem;
  font-weight: 600;
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  place-items: center;
}

.nav__toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: background 0.3s;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}

.nav__toggle span::before {
  top: -6px;
}

.nav__toggle span::after {
  top: 6px;
}

.nav__toggle.is-open span {
  background: transparent;
}

.nav__toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  grid-template-rows: auto 1fr;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--ivory-2) 100%);
  padding: 96px 8vw 40px;
  transform: translateY(-102%);
  transition: transform 0.55s var(--ease);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: none;
}

.mobile-menu__links {
  display: grid;
  gap: 4px;
  align-content: start;
  margin-bottom: 30px;
}

.mobile-menu__links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.42rem;
  color: var(--ink);
}

.mobile-menu__links a span {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--brass-deep);
  text-transform: uppercase;
}

.mobile-menu__actions {
  display: grid;
  gap: 12px;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: clamp(620px, 96vh, 940px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--espresso);
  color: #f6ead6;
}

.hero__media {
  position: absolute;
  inset: -6% 0 -6%;
  will-change: transform;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(0.96) contrast(1.02);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 12, 6, 0.88) 0%, rgba(20, 12, 6, 0.62) 42%, rgba(20, 12, 6, 0.24) 72%, rgba(20, 12, 6, 0.45) 100%),
    linear-gradient(180deg, rgba(20, 12, 6, 0.5) 0%, transparent 26%, transparent 62%, rgba(20, 12, 6, 0.82) 100%);
}

.hero__jali {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 50% 50%, #ffe9c4 1.6px, transparent 1.9px),
    radial-gradient(circle at 0% 0%, #ffe9c4 1.6px, transparent 1.9px);
  background-size: 44px 44px;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(90px, 12vh, 150px) 0 clamp(70px, 10vh, 120px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  border-radius: var(--r-full);
  border: 1px solid rgba(185, 138, 60, 0.55);
  background: rgba(20, 12, 6, 0.45);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-hi);
  margin-bottom: 26px;
}

.hero__badge .dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff9b52;
  box-shadow: 0 0 12px #ff9b52;
  animation: livePulse 2.2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.hero h1 {
  color: #fbf3e4;
  max-width: 17ch;
  margin-bottom: 0.35em;
}

.hero h1 .accent {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(100deg, var(--brass-hi), #f4d9a0 45%, var(--brass));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  max-width: 56ch;
  font-size: clamp(1rem, 1.3vw, 1.13rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(246, 234, 214, 0.82);
  margin-bottom: 34px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__cta .btn--primary {
  padding: 18px 36px;
  font-size: 0.86rem;
  box-shadow: 0 20px 60px rgba(185, 138, 60, 0.45), 0 0 0 1px rgba(255, 240, 200, 0.25) inset;
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(44px, 6vh, 74px);
  padding-top: 30px;
  border-top: 1px solid rgba(185, 138, 60, 0.3);
}

.hero__stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 600;
  color: var(--brass-hi);
  line-height: 1.1;
}

.hero__stat span {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 234, 214, 0.65);
}

.hero__cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(246, 234, 214, 0.55);
}

.hero__cue::after {
  content: '';
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--brass-hi), transparent);
  animation: cueDrop 2.4s var(--ease) infinite;
}

@keyframes cueDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---------------- Marquee ---------------- */
.marquee {
  background: var(--espresso-2);
  border-block: 1px solid rgba(185, 138, 60, 0.25);
  overflow: hidden;
  padding: 15px 0;
}

.marquee__track {
  display: flex;
  gap: 54px;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 54px;
  font-size: 0.74rem;
  font-weight: 300;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(246, 233, 210, 0.6);
  white-space: nowrap;
}

.marquee span::after {
  content: '◆';
  font-size: 0.55rem;
  color: var(--brass);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------------- Room sections ---------------- */
.room-section {
  position: relative;
  overflow: hidden;
}

.room-section--alt {
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

.room-section--dark {
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(185, 138, 60, 0.14), transparent 55%),
    linear-gradient(165deg, var(--espresso) 0%, var(--espresso-2) 55%, #2a1c11 100%);
  color: #f4e8d4;
}

.room-section--dark h2,
.room-section--dark h3 {
  color: #fbf3e4;
}

.room-section--dark .lead,
.room-section--dark .tick-list li {
  color: rgba(246, 234, 214, 0.74);
}

.room-section--dark .tick-list li strong {
  color: #fbf3e4;
}

.room-section--dark .eyebrow {
  color: var(--brass-hi);
}

.room-section--dark .num-mark {
  -webkit-text-stroke-color: rgba(220, 187, 121, 0.6);
}

.room-section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 54px);
}

.room-section__head .hgroup h2 {
  margin-bottom: 0.4em;
}

.room-section__head .hgroup p {
  margin-bottom: 0;
}

/* Product chips inside sections */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.product-chip {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px 17px 15px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 6px 22px rgba(43, 29, 18, 0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  text-align: left;
  cursor: pointer;
}

.product-chip:hover {
  transform: translateY(-4px);
  border-color: var(--line-brass);
  box-shadow: 0 18px 44px rgba(43, 29, 18, 0.13);
}

.product-chip__name {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

.product-chip__meta {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
}

.product-chip__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}

.product-chip__price {
  font-weight: 500;
  color: var(--brass-deep);
  font-variant-numeric: tabular-nums;
}

.product-chip__add {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.product-chip:hover .product-chip__add {
  color: var(--brass-deep);
  border-bottom-color: var(--brass);
}

.room-section--dark .product-chip {
  background: rgba(255, 250, 240, 0.05);
  border-color: rgba(185, 138, 60, 0.28);
  box-shadow: none;
}

.room-section--dark .product-chip__name {
  color: #fbf3e4;
}

.room-section--dark .product-chip__meta {
  color: rgba(246, 234, 214, 0.55);
}

.room-section--dark .product-chip__price {
  color: var(--brass-hi);
}

.room-section--dark .product-chip__add {
  color: rgba(246, 234, 214, 0.55);
}

.room-section--dark .product-chip:hover {
  border-color: var(--line-brass);
  background: rgba(255, 250, 240, 0.08);
}

/* ---------------- VR preview card ---------------- */
.vr-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(185, 138, 60, 0.3);
  isolation: isolate;
  background: var(--espresso);
}

.vr-card__media {
  position: relative;
  aspect-ratio: 4 / 3.1;
  overflow: hidden;
}

.vr-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
  filter: saturate(0.98);
}

.vr-card:hover .vr-card__media img {
  transform: scale(1.055);
  filter: saturate(1.05);
}

.vr-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 6, 0.06) 0%, transparent 40%, rgba(20, 12, 6, 0.78) 100%);
  pointer-events: none;
}

.vr-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: var(--r-full);
  background: rgba(20, 12, 6, 0.62);
  border: 1px solid rgba(220, 187, 121, 0.55);
  backdrop-filter: blur(8px);
  color: var(--brass-hi);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.vr-card__badge .icon-360 {
  width: 18px;
  height: 18px;
  font-size: 0.4rem;
}

.vr-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: radial-gradient(60% 60% at 50% 52%, rgba(20, 12, 6, 0.42), rgba(20, 12, 6, 0.12));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.vr-card:hover .vr-card__overlay,
.vr-card:focus-within .vr-card__overlay {
  opacity: 1;
}

.vr-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(28, 19, 12, 0.86), rgba(28, 19, 12, 0.98));
  border-top: 1px solid rgba(185, 138, 60, 0.25);
}

.vr-card__foot h4 {
  margin: 0;
  color: #fbf3e4;
  font-size: 1.06rem;
  font-weight: 500;
}

.vr-card__foot p {
  margin: 3px 0 0;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 234, 214, 0.55);
}

.vr-card__play {
  position: relative;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brass), var(--brass-hi));
  color: #241505;
  box-shadow: 0 12px 30px rgba(185, 138, 60, 0.45);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.vr-card__play::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px dashed rgba(220, 187, 121, 0.65);
  animation: spin 14s linear infinite;
}

.vr-card:hover .vr-card__play {
  transform: scale(1.08);
  box-shadow: 0 18px 40px rgba(185, 138, 60, 0.55);
}

.vr-card__play svg {
  width: 20px;
  height: 20px;
}

.vr-card__hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 22px 20px;
  background: rgba(28, 19, 12, 0.98);
}

.vr-card__hints span {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 234, 214, 0.5);
  border: 1px solid rgba(246, 234, 214, 0.16);
  border-radius: var(--r-full);
  padding: 5px 11px;
}

/* ---------------- Dining band ---------------- */
.dining {
  margin-top: clamp(48px, 6vw, 84px);
  padding: clamp(34px, 4.4vw, 58px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(185, 138, 60, 0.16), transparent 60%),
    linear-gradient(150deg, #33220f 0%, #241811 60%, #1c130c 100%);
  border: 1px solid rgba(185, 138, 60, 0.32);
  color: #f4e8d4;
  overflow: hidden;
  position: relative;
}

.dining::before {
  content: 'சாப்பாடு';
  position: absolute;
  right: -18px;
  bottom: -46px;
  font-family: var(--tamil);
  font-size: clamp(6rem, 13vw, 12rem);
  font-weight: 600;
  color: rgba(185, 138, 60, 0.08);
  line-height: 1;
  pointer-events: none;
}

.dining__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.dining__tamil {
  font-family: var(--tamil);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--brass-hi);
  display: block;
  margin-bottom: 6px;
}

.seat-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: var(--r-full);
  border: 1px solid rgba(185, 138, 60, 0.4);
  background: rgba(20, 12, 6, 0.4);
  margin: 22px 0 24px;
  flex-wrap: wrap;
}

.seat-tab {
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 234, 214, 0.6);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.seat-tab:hover {
  color: #f4e8d4;
}

.seat-tab.is-active {
  background: linear-gradient(135deg, var(--brass), var(--brass-hi));
  color: #241505;
  box-shadow: 0 8px 22px rgba(185, 138, 60, 0.4);
}

.dining__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 26px;
}

.dining__spec {
  padding: 16px 18px;
  border-radius: var(--r-md);
  border: 1px solid rgba(185, 138, 60, 0.26);
  background: rgba(255, 250, 240, 0.04);
}

.dining__spec dt {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 234, 214, 0.5);
  margin-bottom: 7px;
}

.dining__spec dd {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--brass-hi);
  font-variant-numeric: tabular-nums;
}

.dining__spec dd small {
  display: block;
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(246, 234, 214, 0.55);
  letter-spacing: 0.06em;
}

.dining__aside {
  display: grid;
  gap: 16px;
}

/* ---------------- Kitchen features ---------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.feature-card {
  padding: 26px 24px;
  border-radius: var(--r-md);
  border: 1px solid rgba(185, 138, 60, 0.28);
  background: rgba(255, 250, 240, 0.045);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-brass);
  background: rgba(255, 250, 240, 0.075);
}

.feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--brass-hi);
  border: 1px solid rgba(185, 138, 60, 0.4);
  background: rgba(185, 138, 60, 0.1);
}

.feature-card h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #fbf3e4;
}

.feature-card p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(246, 234, 214, 0.66);
}

/* ---------------- VR gallery ---------------- */
.gallery {
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(185, 138, 60, 0.1), transparent 60%),
    var(--ivory);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.gallery-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 10px 34px rgba(43, 29, 18, 0.08);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  cursor: pointer;
  text-align: left;
}

.gallery-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(43, 29, 18, 0.16);
  border-color: var(--line-brass);
}

.gallery-card__media {
  position: relative;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
}

.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.gallery-card:hover .gallery-card__media img {
  transform: scale(1.07);
}

.gallery-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 12, 6, 0.55) 100%);
}

.gallery-card__tag {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  padding: 6px 12px;
  border-radius: var(--r-full);
  background: rgba(20, 12, 6, 0.6);
  border: 1px solid rgba(220, 187, 121, 0.5);
  color: var(--brass-hi);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.gallery-card__body {
  padding: 20px 20px 22px;
}

.gallery-card__body h4 {
  margin: 0 0 4px;
  font-size: 1.18rem;
}

.gallery-card__body .tamil {
  font-size: 0.8rem;
  color: var(--brass-deep);
}

.gallery-card__body p {
  margin: 8px 0 14px;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--ink-mute);
  line-height: 1.6;
}

.gallery-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.gallery-card__cta .icon-360 {
  width: 20px;
  height: 20px;
  font-size: 0.42rem;
}

.gallery-card:hover .gallery-card__cta .icon-360::before {
  animation: spin 3.4s linear infinite;
}

.gallery__note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  margin-top: 34px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.gallery__note li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.gallery__note li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
}

/* ---------------- Consult ---------------- */
.consult {
  position: relative;
  background: var(--espresso);
  color: #f4e8d4;
  overflow: hidden;
}

.consult__bg {
  position: absolute;
  inset: 0;
  opacity: 0.34;
}

.consult__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consult__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--espresso) 8%, rgba(28, 19, 12, 0.82) 48%, rgba(28, 19, 12, 0.55) 100%);
}

.consult__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.consult h2 {
  color: #fbf3e4;
}

.consult .lead {
  color: rgba(246, 234, 214, 0.72);
}

.consult__steps {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.consult__step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}

.consult__step b {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(185, 138, 60, 0.5);
  background: rgba(185, 138, 60, 0.08);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brass-hi);
}

.consult__step strong {
  display: block;
  font-weight: 500;
  color: #fbf3e4;
  margin-bottom: 3px;
}

.consult__step p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(246, 234, 214, 0.62);
  line-height: 1.6;
}

.consult__card {
  position: relative;
  padding: clamp(26px, 3.4vw, 42px);
  border-radius: var(--r-lg);
  background: rgba(253, 250, 243, 0.97);
  color: var(--ink);
  box-shadow: var(--shadow-3);
  border: 1px solid rgba(185, 138, 60, 0.35);
}

.consult__card h3 {
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.consult__card .hint {
  margin: 0 0 22px;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--ink-mute);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
  font-weight: 300;
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(185, 138, 60, 0.14);
}

.field .err {
  font-size: 0.72rem;
  color: var(--terra);
  min-height: 0;
}

.field.has-error input,
.field.has-error select {
  border-color: var(--terra);
}

.consult__enquiry-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 12px;
  background: rgba(185, 138, 60, 0.1);
  border: 1px dashed var(--line-brass);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--wood);
  margin-bottom: 18px;
}

.consult__success {
  display: none;
  text-align: center;
  padding: 30px 10px 16px;
}

.consult__success.is-on {
  display: block;
  animation: fadeUp 0.6s var(--ease) both;
}

.consult__success .ok {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brass), var(--brass-hi));
  color: #241505;
  font-size: 1.9rem;
  box-shadow: 0 18px 40px rgba(185, 138, 60, 0.45);
}

.consult__success h3 {
  margin-bottom: 8px;
}

.consult__success p {
  font-weight: 300;
  color: var(--ink-soft);
}

.consult__success .ref {
  display: inline-block;
  margin-top: 6px;
  padding: 8px 18px;
  border-radius: var(--r-full);
  border: 1px dashed var(--line-brass);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--brass-deep);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

/* ---------------- Enquiry drawer ---------------- */
.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(20, 12, 6, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.drawer-scrim.is-open {
  opacity: 1;
  visibility: visible;
}

.enquiry-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 160;
  width: min(440px, 92vw);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  box-shadow: var(--shadow-3);
  border-left: 1px solid var(--line-brass);
  transform: translateX(103%);
  transition: transform 0.5s var(--ease);
}

.enquiry-drawer.is-open {
  transform: none;
}

.enquiry-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ivory), var(--paper));
}

.enquiry-drawer__head h3 {
  margin: 0;
  font-size: 1.32rem;
}

.enquiry-drawer__head p {
  margin: 2px 0 0;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.icon-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: border-color 0.3s, transform 0.3s, color 0.3s;
  color: var(--ink-soft);
}

.icon-close:hover {
  border-color: var(--brass);
  color: var(--brass-deep);
  transform: rotate(90deg);
}

.enquiry-list {
  overflow-y: auto;
  padding: 18px 24px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.enquiry-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--cream));
  box-shadow: 0 4px 14px rgba(43, 29, 18, 0.04);
}

.enquiry-item__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.3;
}

.enquiry-item__meta {
  font-size: 0.72rem;
  color: var(--ink-mute);
  font-weight: 300;
}

.enquiry-item__price {
  font-weight: 500;
  color: var(--brass-deep);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.enquiry-item__remove {
  grid-column: 2;
  justify-self: end;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.enquiry-item__remove:hover {
  color: var(--terra);
  border-bottom-color: var(--terra);
}

.enquiry-empty {
  text-align: center;
  padding: 44px 10px;
  color: var(--ink-mute);
  font-weight: 300;
  font-size: 0.9rem;
}

.enquiry-empty .icon-360 {
  margin: 0 auto 14px;
  width: 44px;
  height: 44px;
  color: var(--brass);
  font-size: 0.58rem;
}

.enquiry-drawer__foot {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper), var(--ivory));
}

.enquiry-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.enquiry-total span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.enquiry-total b {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brass-deep);
  font-variant-numeric: tabular-nums;
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: linear-gradient(180deg, #1c130c, #150e08);
  color: rgba(246, 234, 214, 0.7);
  padding: clamp(56px, 7vw, 90px) 0 0;
  border-top: 1px solid rgba(185, 138, 60, 0.3);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 60px);
  padding-bottom: 54px;
}

.footer__brand p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 34ch;
  margin-top: 18px;
}

.footer__brand .brand__name {
  color: #fbf3e4;
}

.footer__contact {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.86rem;
}

.footer__contact a {
  transition: color 0.3s;
}

.footer__contact a:hover {
  color: var(--brass-hi);
}

.site-footer h4 {
  color: #fbf3e4;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links {
  display: grid;
  gap: 11px;
}

.footer__links a,
.footer__links span {
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.3s, padding-left 0.3s;
}

.footer__links a:hover {
  color: var(--brass-hi);
  padding-left: 6px;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(246, 234, 214, 0.2);
  display: grid;
  place-items: center;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.footer__socials a:hover {
  border-color: var(--brass);
  color: var(--brass-hi);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(246, 234, 214, 0.12);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 300;
}

.footer__bottom .made {
  color: rgba(246, 234, 214, 0.45);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1180px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: grid;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .dining__grid,
  .consult__grid {
    grid-template-columns: 1fr;
  }

  .room-section__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .room-section__head .num-mark {
    display: none;
  }

  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 26px;
  }
}

@media (max-width: 720px) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar__inner .topbar__msg {
    display: none;
  }

  .nav__actions .enquiry-btn span.label {
    display: none;
  }

  .enquiry-btn {
    padding: 0 14px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .dining__specs {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__cue {
    display: none;
  }

  .nav__actions .btn--vr-quick {
    display: none;
  }
}
