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

:root {
  --black: #0a0908;
  --black-soft: #131210;
  --black-card: #1a1714;
  --gold: #c9a44c;
  --gold-bright: #e8c873;
  --gold-dim: #8a7339;
  --cream: #f1ece0;
  --cream-dim: #b8ad96;
  --hairline: rgba(201, 164, 76, 0.22);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

h1,
h2,
h3,
.display {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201, 164, 76, 0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 164, 76, 0.04), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* ===== NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 5%;
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 5%;
  border-bottom: 1px solid var(--hairline);
}

.logo {
  font-family: 'Marcellus', serif;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
}

.logo span {
  color: var(--cream-dim);
  font-size: 0.6em;
  letter-spacing: 0.3em;
  display: block;
  margin-top: 2px;
}

/* Hero logo image sizing */
.hero-logo img {
  width: min(84vw, 360px);
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto 32px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 38px;
}

nav a {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding: 8px 10px 6px;
  transition: color .3s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}

nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 60px;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.2) 0%, rgba(10, 9, 8, 0.85) 78%, var(--black) 100%),
    repeating-linear-gradient(115deg, #141210 0px, #161311 2px, #100f0d 4px);
}

.hero-frame {
  position: absolute;
  inset: 28px;
  border: 1px solid var(--hairline);
  pointer-events: none;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.eyebrow::before,
.eyebrow::after {
  content: "— ";
  color: var(--gold-dim);
}

.hero h1 {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.95;
  background: linear-gradient(115deg, #8a7339 0%, #e8c873 28%, #fff6da 50%, #c9a44c 65%, #6b5826 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}

.hero .sub {
  font-family: 'Marcellus', serif;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  letter-spacing: 0.45em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--cream-dim);
  margin-bottom: 46px;
}

.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

button,
.floating-action,
.nav-toggle,
.faq-item summary {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-drag: none;
  touch-action: manipulation;
}

.btn {
  display: inline-block;
  padding: 16px 38px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: transparent;
  cursor: pointer;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: -1;
}

.btn:hover {
  color: var(--black);
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn-solid {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-solid:hover {
  color: var(--black);
  opacity: .9;
}

.hero-amenities {
  margin-top: 64px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.hero-amenities span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-amenities svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

.scroll-cue .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: .3;
  }

  50% {
    opacity: 1;
  }
}

/* ===== SECTION SHARED ===== */
section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 30px;
}

.testimonial .section-head {
  margin-bottom: 10px;
}

.section-head .eyebrow {
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--cream);
}

.section-head p {
  margin-top: 18px;
  color: var(--cream-dim);
  font-size: 1.02rem;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}

/* ===== ABOUT / WELCOME ===== */
.about {
  background: var(--black-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  height: 650px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform .6s ease;
}

.about-visual:hover img {
  transform: scale(1.05);
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 22px;
}

.about-copy p {
  color: var(--cream-dim);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
  border-top: 1px solid var(--hairline);
  padding-top: 30px;
}

.about-stats .stat-num {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  color: var(--gold-bright);
}

.about-stats .stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 6px;
}

/* ===== ROOMS ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(350px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  background: transparent;
}

.room-card {
  background: var(--black);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 76, 0.35);
  /* subtle gold */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.room-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, #18140e, #0c0a08);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-visual svg {
  width: 54px;
  height: 54px;
  stroke: var(--gold-dim);
  opacity: .7;
}

.room-visual .room-no {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: 'Marcellus', serif;
  font-size: 0.60rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--cream);
  background: rgba(10, 9, 8, 0.88);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.room-body {
  padding: 30px 28px 34px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-body h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.room-body .price {
  margin-bottom: 14px;
}

.room-body .price-amount {
  font-family: 'Marcellus', serif;
  font-weight: 700;
  color: var(--gold-bright);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
}

.room-body .price-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin-top: 6px;
}

.room-body .price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.room-body .price-gst {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-weight: 400;
}

.room-body p {
  color: var(--cream-dim);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.room-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.room-tags span {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid var(--hairline);
  padding: 5px 11px;
}

.room-card:hover {
  transform: translateY(-6px);
}

.room-link {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .3s;
}

.room-link:hover {
  color: var(--gold-bright);
}

/* ===== AMENITIES ===== */
.amenities {
  background: var(--black-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--hairline);
}

.amenity {
  background: var(--black-soft);
  padding: 46px 20px;
  text-align: center;
  transition: background .3s ease;
}

.amenity:hover {
  background: #1c1812;
}

.amenity svg {
  width: 34px;
  height: 34px;
  stroke: var(--gold);
  margin: 0 auto 18px;
}

.amenity h4 {
  font-family: 'Marcellus', serif;
  font-size: 0.95rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.amenity p {
  font-size: 0.78rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* Price styling for rooms */
.room-body .price {
  font-family: 'Marcellus', serif;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  color: var(--gold-bright);
  font-weight: 500;
  margin-bottom: 12px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 8px;
}

.gallery-grid .g-item {
  background: linear-gradient(145deg, #18140e, #0d0b09);
  border: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.gallery-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-grid .g-item:hover img {
  transform: scale(1.02);
}

.gallery-grid .g-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 10px;
  left: 14px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0;
  transition: opacity .3s;
}

.gallery-grid .g-item:hover::after {
  opacity: 1;
}

.gallery-grid .span-2 {
  grid-column: span 2;
}

.gallery-grid .row-2 {
  grid-row: span 2;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  background: rgba(10, 9, 8, 0.95);
  padding: 26px;
  min-height: 100vh;
  overflow: auto;
  touch-action: none;
}

.gallery-lightbox.show {
  display: grid;
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.8);
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 9999;
}

.gallery-lightbox-close:hover {
  color: var(--gold);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.8);
  color: var(--cream);
  font-size: 1.35rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 9999;
}

.gallery-lightbox-prev {
  left: 18px;
}

.gallery-lightbox-next {
  right: 18px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  color: var(--gold);
}

.gallery-lightbox-img {
  width: auto;
  height: auto;
  max-width: 85vw;
  max-height: 82vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-caption {
  margin-top: 16px;
  color: var(--cream-dim);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  max-width: 92vw;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
  align-items: start;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 24px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-item summary {
  list-style: none;
  display: block;
  width: 100%;
  font-family: 'Marcellus', serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  color: var(--cream);
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:after {
  content: '+';
  float: right;
  color: var(--gold);
  font-weight: 700;
}

.faq-item[open] summary:after {
  content: '-';
}

.faq-item p {
  margin-top: 16px;
  color: var(--cream-dim);
  line-height: 1.8;
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    display: none;
  }

  .gallery-lightbox-img {
    max-width: 92vw;
    max-height: 74vh;
  }
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  background: var(--black);
  text-align: center;
  padding: 130px 24px;
}

.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--cream);
  max-width: 780px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

.testimonial cite {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.quote-mark {
  font-family: 'Marcellus', serif;
  font-size: 4rem;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 6px;
}

.review-slider {
  overflow: hidden;
  margin-top: 10px;
}

.review-slider-track {
  display: flex;
  transition: transform 0.45s ease;
}

.review-slide {
  min-width: 100%;
  padding: 50px 30px;
  box-sizing: border-box;
  text-align: center;
}

.review-slide blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.review-slide cite {
  display: block;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  margin-top: 14px;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.review-prev,
.review-next {
  border: 1px solid var(--cream-dim);
  background: transparent;
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-width: 44px;
  text-align: center;
}

.review-prev:hover,
.review-next:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.05);
}

.review-prev:active,
.review-next:active {
  transform: scale(0.98);
}

.review-dots {
  display: flex;
  gap: 8px;
}

.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--cream-dim);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.review-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--black-soft);
  border-top: 1px solid var(--hairline);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--cream);
  margin-bottom: 20px;
}

.contact-info>p {
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: 40px;
}

.info-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--hairline);
}

.info-row:last-of-type {
  border-bottom: 1px solid var(--hairline);
}

.info-row svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.info-row h4 {
  font-family: 'Marcellus', serif;
  font-size: 0.92rem;
  color: var(--cream);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.info-row p,
.info-row a {
  font-size: 0.9rem;
  color: var(--cream-dim);
}

.info-row a:hover {
  color: var(--gold-bright);
}

.map-box {
  margin-top: 36px;
  aspect-ratio: 16/10;
  border: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
  filter: grayscale(0.4) contrast(1.05) brightness(0.9);
  transition: filter .4s ease;
}

.map-box:hover {
  filter: grayscale(0) contrast(1) brightness(1);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* form */
.form-card {
  background: var(--black);
  border: 1px solid var(--hairline);
  padding: 48px 42px;
}

.form-card h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.form-card .script {
  color: var(--gold-bright);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 32px;
}

.field {
  margin-bottom: 24px;
}

.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 10px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  color: var(--cream);
  padding: 10px 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color .3s;
}

.phone-field .phone-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border-bottom: 1px solid var(--hairline);
  color: var(--cream-dim);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px 0 0 0;
  font-size: 0.95rem;
}

.phone-field input {
  flex: 1;
  min-width: 0;
}

.field input[type="date"] {
  cursor: pointer;
  color-scheme: dark;
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  border-radius: 6px;
  margin-right: 6px;
  padding: 4px 6px;
  opacity: 0.8;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.25s ease;
}

.field input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.05);
}

.field input[type="date"]::-webkit-outer-spin-button,
.field input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

.field select option {
  background: var(--black-card);
  color: var(--cream);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
}

.field input[type="date"]:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 2px rgba(201, 164, 76, 0.1);
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: inset 0 0 0 1000px rgba(10, 9, 8, 0.92) !important;
  -webkit-text-fill-color: var(--cream) !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus,
select:-webkit-autofill:focus {
  box-shadow: inset 0 0 0 1000px rgba(10, 9, 8, 0.92) !important;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-card .btn-solid {
  width: 100%;
  margin-top: 10px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--cream-dim);
  margin-top: 18px;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  margin: 0 auto 16px;
}

.form-success h4 {
  font-family: 'Marcellus', serif;
  color: var(--cream);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--cream-dim);
  font-size: 0.9rem;
}

/* ===== FLOATING CONTACT ACTIONS ===== */
.floating-actions {
  position: fixed;
  right: 40px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.floating-action {
  position: relative;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: rgba(10, 9, 8, 0.92);
  color: var(--cream);
  padding: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.floating-action svg {
  width: 22px;
  height: 22px;
}

.floating-action:hover {
  transform: translateX(-6px) scale(1.03);
  background: rgba(10, 9, 8, 0.92);
  color: var(--cream);
  border-color: var(--hairline);
}

.floating-action:not(:hover):focus,
.floating-action:not(:hover):active,
.floating-action:not(:hover):focus-visible {
  background: rgba(10, 9, 8, 0.92);
  color: var(--cream);
  border-color: var(--hairline);
  outline: none;
}

.floating-label {
  position: absolute;
  right: calc(100% + 10px);
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.95);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: all 0.25s ease;
  border: 1px solid var(--hairline);
}

.floating-action:hover .floating-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.scroll-top-action {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.scroll-top-action.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-cta {
  display: none;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  padding: 60px 0 30px;
  border-top: 1px solid var(--hairline);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 30px;
}

.footer-logo {
  font-family: 'Marcellus', serif;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
}

.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.74rem;
  color: var(--gold-dim);
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-cue .line,
  .pin-pulse {
    animation: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width:980px) {
  header {
    padding: 20px 24px;
  }

  nav {
    display: none;
    position: fixed;
    top: 74px;
    right: 24px;
    left: 24px;
    background: rgba(10, 9, 8, 0.97);
    border: 1px solid var(--hairline);
    padding: 24px 24px 28px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    z-index: 120;
  }

  header.nav-open nav {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 18px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 112px 24px 90px;
  }

  .hero-frame {
    inset: 16px;
  }

  .hero-amenities {
    gap: 20px;
    margin-top: 42px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    min-height: 320px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  #rooms .container {
    margin-bottom: 50px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .review-controls {
    flex-wrap: wrap;
  }
}

@media (max-width:760px) {

  .review-prev,
  .review-next {
    display: none;
  }

  header {
    padding: 14px 16px;
  }

  .hero {
    padding: 100px 18px 72px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: min(100%, 280px);
    text-align: center;
  }

  .hero-amenities {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  section {
    padding: 90px 0;
  }

  .testimonial {
    padding: 90px 24px;
  }

  .review-slide {
    padding: 32px 8px;
  }

  .form-card {
    padding: 34px 24px;
  }

  .mobile-cta {
    display: flex;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
    z-index: 210;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .mobile-cta.hidden {
    opacity: 0;
    transform: translateY(12px);
    visibility: hidden;
    pointer-events: none;
  }

  .floating-actions {
    bottom: 90px;
  }

  .mobile-cta .btn {
    width: 100%;
    max-width: 520px;
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    padding: 14px 20px;
    background: rgba(201, 164, 76, 0.92);
    border-color: rgba(201, 164, 76, 0.92);
    opacity: 0.95;
  }

  body {
    padding-bottom: 15px;
  }

  .info-row {
    flex-direction: column;
  }

  .room-visual .room-no {
    font-size: 0.60rem;
    padding: 5px 8px;
    top: 14px;
    left: 14px;
  }
}

@media (max-width:560px) {
  .container {
    padding: 0 22px;
  }

  .floating-actions {
    right: 20px;
    bottom: 90px;
  }

  .scroll-top-action.visible {
    display: flex;
  }

  .floating-action {
    width: 48px;
    height: 48px;
  }

  .floating-label {
    display: none;
  }

  header {
    padding: 20px 20px;
  }

  .logo {
    font-size: 1.05rem;
  }

  .hero-logo img {
    width: min(88vw, 260px);
    margin-bottom: 24px;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    margin-bottom: 18px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .amenities-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .span-2,
  .gallery-grid .row-2 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .review-prev,
  .review-next {
    width: 10%;
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .review-controls {
    gap: 8px;
  }

  .review-dots {
    width: 100%;
    justify-content: center;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}