/* === RESTRAINED HERITAGE PALETTE & TYPOGRAPHY === */
:root {
  --cream: #fdf9f2;
  --warm-white: #f9f5ec;
  --old-gold: #b5955a;
  --dark-gold: #9e7f48;
  --deep-brown: #4a3b2c;
  --ink: #1e1a16;
  --soft-ink: #2c2620;
  --text-muted: #5e5549;
  --border-subtle: #dbd0c0;
  --shadow-color: rgba(74, 59, 44, 0.08);
  --overlay-dark: rgba(20, 16, 10, 0.55);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  background-color: var(--cream);
  color: var(--soft-ink);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--old-gold);
  color: var(--warm-white);
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Typography */
h1,
h2,
h3,
h4,
.brand-text,
.nav-link,
.btn,
.section-eyebrow,
.hero-eyebrow,
.footer-heading {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.section-title,
.page-hero-title,
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-eyebrow,
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--old-gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 0;
  transition:
    background-color 0.35s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
  background-color: transparent;
}
.header-scrolled {
  background-color: rgba(253, 249, 242, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow-color);
  padding: 0.7rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--warm-white);
  transition: color 0.3s ease;
}
.header-scrolled .brand {
  color: var(--ink);
}
.brand-icon svg {
  display: block;
  width: 36px;
  height: 36px;
}
.brand-text {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: inherit;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.header-scrolled .nav-link {
  color: var(--ink);
}
.nav-link:hover,
.nav-link.active {
  color: var(--old-gold);
  border-bottom-color: var(--old-gold);
}

.btn {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  cursor: pointer;
}
.btn-primary {
  background-color: var(--old-gold);
  color: var(--warm-white);
  border-color: var(--old-gold);
}
.btn-primary:hover {
  background-color: var(--dark-gold);
  border-color: var(--dark-gold);
}
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--old-gold);
  border-color: var(--old-gold);
}
.btn-outline:hover {
  background: var(--old-gold);
  color: var(--warm-white);
}
.btn-reserve {
  background: var(--old-gold);
  color: var(--warm-white);
  border: none;
  font-size: 0.9rem;
  padding: 0.5rem 1.3rem;
}
.btn-reserve:hover {
  background: var(--dark-gold);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.toggle-bar {
  width: 24px;
  height: 2px;
  background-color: var(--warm-white);
  transition: background 0.3s;
}
.header-scrolled .toggle-bar {
  background-color: var(--ink);
}

/* Hero Sections */
.hero,
.page-hero {
  position: relative;
  height: 85vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 20%,
    rgba(10, 8, 5, 0.5) 100%
  );
  z-index: 1;
}
.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
}
.hero-title,
.page-hero-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero-subtitle,
.page-hero-subtitle {
  font-size: 1.25rem;
  max-width: 620px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Lora", serif;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.6);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* Sections */
.section {
  padding: 6rem 2rem;
}
.section-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.section-intro {
  text-align: center;
  margin-bottom: 4rem;
}

/* House Grid */
.house-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.house-text p {
  margin-bottom: 1.5rem;
  color: var(--soft-ink);
  font-size: 1.05rem;
}
.house-text .lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
}
.house-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  border-left: 3px solid var(--old-gold);
  padding-left: 1.2rem;
}
.house-image {
  position: relative;
}
.house-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 20px 20px 0 var(--border-subtle);
}
.image-caption {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Rooms */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 1rem;
}
.room-card {
  background: var(--warm-white);
  box-shadow: 0 8px 30px var(--shadow-color);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s;
}
.room-card:hover {
  transform: translateY(-6px);
}
.room-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.room-details {
  padding: 1.8rem;
}
.room-name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.room-desc {
  color: var(--soft-ink);
  margin-bottom: 0.8rem;
}
.room-capacity {
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.9rem;
}

/* Dishes */
.dishes-showcase {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.dish-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.dish-reverse {
  direction: rtl;
}
.dish-reverse .dish-info {
  direction: ltr;
}
.dish-image img {
  border-radius: 4px;
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.dish-name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.dish-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.dishes-note {
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
  color: var(--text-muted);
}

/* Evenings */
.evening-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  background: var(--warm-white);
  box-shadow: 0 12px 40px var(--shadow-color);
  border-radius: 6px;
  overflow: hidden;
}
.evening-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.evening-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.evening-card-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

/* Casino specifics */
.casino-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.principle-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--old-gold);
}
.casino-note {
  margin-top: 3rem;
  background: #f6f1e8;
  padding: 1.8rem;
  border-radius: 4px;
  color: var(--ink);
  font-style: italic;
}
.cta-box {
  background: var(--deep-brown);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 6px;
}
.cta-title {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.cta-text {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  color: rgba(255, 255, 255, 0.85);
}

/* Contact page */
.contact-layout {
  padding: 3rem 2rem 5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}
.contact-card {
  margin-bottom: 3.5rem;
}
.contact-title {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--ink);
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--border-subtle);
}
.contact-address p,
.address-line {
  margin-bottom: 0.3rem;
  font-style: normal;
}
.contact-phone,
.contact-email {
  margin-top: 0.8rem;
}
.opening-hours {
  width: 100%;
  border-collapse: collapse;
}
.opening-hours th,
.opening-hours td {
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
}
.opening-hours th {
  font-weight: 600;
  color: var(--ink);
}
.opening-note {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: var(--text-muted);
}
.house-rules {
  list-style: none;
  padding-left: 0;
}
.house-rules li {
  margin-bottom: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}
.house-rules li::before {
  content: "—";
  color: var(--old-gold);
  position: absolute;
  left: 0;
}
.arrival-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
.arrival-subtitle {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.map-embed {
  max-width: 1300px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.map-embed img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
}
.map-caption {
  text-align: center;
  margin-top: 0.8rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background-color: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 2rem 2rem;
  margin-top: auto;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.footer-brand {
  text-align: center;
  margin-bottom: 2.5rem;
}
.footer-icon svg {
  color: var(--old-gold);
}
.footer-brand-name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin: 0.6rem 0 0.2rem;
}
.footer-tagline,
.footer-established {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-heading {
  color: var(--old-gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-address p {
  margin-bottom: 0.2rem;
  font-style: normal;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.8rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--ink);
    flex-direction: column;
    padding: 2rem;
    display: none;
  }
  .nav-open {
    display: flex;
  }
  .nav-link {
    color: #fff;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .house-grid,
  .evening-card,
  .dish-item {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .arrival-notes {
    grid-template-columns: 1fr;
  }
}
