@import "https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap";

/* ================================================
   CSS CUSTOM PROPERTIES — Hotel Glendower Design Tokens
   ================================================ */
:root {
  --background: hsl(30, 12%, 92%);
  --foreground: hsl(18, 10%, 20%);
  --card: hsl(28, 18%, 88%);
  --card-foreground: hsl(18, 10%, 20%);
  --popover: hsl(30, 12%, 92%);
  --primary: hsl(18, 10%, 20%);
  --primary-foreground: hsl(28, 18%, 83%);
  --secondary: hsl(28, 18%, 83%);
  --secondary-foreground: hsl(18, 10%, 20%);
  --muted: hsl(27, 17%, 85%);
  --muted-foreground: hsl(16, 6%, 24%);
  --accent: hsl(152, 49%, 55%);
  --accent-foreground: hsl(18, 10%, 20%);
  --border: hsl(28, 14%, 78%);
  --input: hsl(28, 14%, 78%);
  --tudor-black: hsl(18, 10%, 20%);
  --glendower-black: hsl(18, 11%, 18%);
  --saddle-black: hsl(16, 6%, 24%);
  --glendower-green: hsl(152, 49%, 55%);
  --warm-white: hsl(28, 18%, 83%);
  --luxury-beige: hsl(27, 22%, 81%);
  --royal-beige: hsl(30, 12%, 92%);
  --hue-1: hsl(27, 17%, 85%);
  --hue-2: hsl(28, 18%, 88%);
  --hue-3: hsl(30, 12%, 92%);
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  scroll-behavior: smooth;
  font-family: Lato, sans-serif;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  background-color: var(--background);
  color: var(--foreground);
  font-family: Lato, sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

p {
  font-family: Lato, sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

ul, ol {
  list-style: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.eyebrow {
  font-family: Lato, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
}

.section-padding {
  padding: 6rem 8%;
}

.ornament-diamond {
  width: 0.375rem;
  height: 0.375rem;
  transform: rotate(45deg);
  background-color: var(--accent);
  flex-shrink: 0;
}

.section-divider-gradient {
  height: 4px;
  background: linear-gradient(to right, var(--tudor-black), var(--accent), var(--tudor-black));
  opacity: 0.15;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-hotel-primary {
  display: inline-block;
  cursor: pointer;
  border: none;
  background-color: var(--secondary);
  padding: 1rem 2.25rem;
  font-family: Lato, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn-hotel-primary:hover {
  background-color: var(--accent);
  color: #fff;
}

.btn-hotel-ghost {
  cursor: pointer;
  font-family: Lato, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid hsl(28 18% 83% / 0.5);
  padding-bottom: 3px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.btn-hotel-ghost:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.btn-hotel-outline {
  display: inline-block;
  cursor: pointer;
  border: 1px solid var(--secondary);
  background-color: transparent;
  padding: 1rem 2.25rem;
  font-family: Lato, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hotel-outline:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.btn-hotel-green {
  cursor: pointer;
  border: none;
  background-color: var(--accent);
  padding: 0.75rem 1.75rem;
  font-family: Lato, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hotel-green:hover {
  background-color: var(--secondary);
}

/* ================================================
   REVEAL ANIMATION
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ================================================
   NAVIGATION
   ================================================ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: all 0.5s ease;
}

#main-nav.scrolled {
  background-color: hsl(18 10% 20% / 0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
}

.nav-logo-main {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--secondary);
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: Lato, sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: Lato, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(28 18% 83% / 0.8);
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-reserve {
  font-family: Lato, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  border: 1px solid hsl(28 18% 83% / 0.3);
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
  background: none;
  cursor: pointer;
}

.nav-reserve:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--secondary);
  transition: all 0.3s ease;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: hsl(18 10% 20% / 0.98);
  padding: 2rem 8%;
  flex-direction: column;
  gap: 0;
  z-index: 999;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: Lato, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(28 18% 83% / 0.8);
  padding: 0.75rem 0;
  border-bottom: 1px solid hsl(28 18% 83% / 0.08);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-mobile a:hover {
  color: var(--accent);
}

/* ================================================
   HERO SECTION
   ================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background-color: var(--primary);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsl(18 10% 20% / 0.7) 0%,
    hsl(18 10% 20% / 0.3) 50%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  padding-bottom: 9vh;
  max-width: 780px;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-eyebrow {
  font-family: Lato, sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-h1 {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1.12;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-h1 em {
  font-style: normal;
  display: block;
  font-size: 0.65em;
  letter-spacing: 0.08em;
  color: var(--luxury-beige);
}

.hero-tagline {
  color: var(--luxury-beige);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-caption {
  position: absolute;
  bottom: 8vh;
  left: 8%;
  z-index: 2;
  font-family: Lato, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(28 18% 83% / 0.5);
  opacity: 0;
  animation: fadeIn 0.8s ease 1.5s forwards;
}

.hero-dots {
  position: absolute;
  bottom: 8vh;
  right: 8%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.hero-dot {
  width: 1px;
  height: 1.75rem;
  background-color: hsl(28 18% 83% / 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  height: 2.75rem;
  background-color: var(--secondary);
}

.hero-dot:hover {
  background-color: var(--secondary);
  height: 2.75rem;
}

/* ================================================
   ANNOUNCEMENT BAR + BOOKING BAR
   ================================================ */
#announce-bar {
  background-color: var(--primary);
  color: var(--secondary);
  text-align: center;
  padding: 0.875rem 4%;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-family: Lato, sans-serif;
  font-weight: 300;
}

#announce-bar strong {
  font-weight: 700;
  color: var(--accent);
}

#announce-bar .announce-cta {
  color: var(--secondary);
  margin-left: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid hsl(28 18% 83% / 0.4);
  padding-bottom: 2px;
  cursor: pointer;
  transition: color 0.2s ease;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

#announce-bar .announce-cta:hover {
  color: var(--accent);
}

#booking-bar {
  background-color: var(--primary);
  padding: 1.75rem 8%;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
  min-width: 140px;
}

.booking-field label {
  font-family: Lato, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(28 18% 83% / 0.5);
}

.booking-field input,
.booking-field select {
  background-color: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.75rem 0.875rem;
  font-family: Lato, sans-serif;
  font-size: 0.88rem;
  color: var(--secondary);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

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

.booking-field input::placeholder {
  color: hsl(28 18% 83% / 0.3);
}

.booking-field-promo {
  flex: 0.8;
  min-width: 140px;
}

/* ================================================
   ABOUT / HERITAGE SECTION
   ================================================ */
#about {
  background-color: var(--background);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 8%;
}

.about-image-wrap {
  position: relative;
}

.about-image-inner {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.about-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-year-badge {
  position: absolute;
  top: 2rem;
  left: 0;
  background-color: var(--primary);
  color: var(--secondary);
  padding: 1.25rem 1.125rem;
  text-align: center;
  font-family: Georgia, serif;
  z-index: 10;
}

.about-year-badge span.year {
  font-size: 1.875rem;
  display: block;
  line-height: 1;
}

.about-year-badge span.est {
  font-family: Lato, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 0.25rem;
  display: block;
}

.about-text blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--foreground);
  line-height: 1.6;
}

.about-text p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.about-ornament {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.about-ornament-line {
  flex: 1;
  height: 1px;
  background-color: var(--warm-white);
  opacity: 0.5;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .about-features {
    flex-direction: row;
    gap: 2rem;
  }
}

.about-feature {
  flex: 1;
}

.about-feature-icon {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.about-feature h4 {
  font-family: Lato, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.6;
}

/* ================================================
   ROOMS SECTION
   ================================================ */
#rooms {
  background-color: var(--primary);
  padding: 6rem 8%;
}

#rooms .rooms-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

#rooms .rooms-header h2 {
  color: var(--secondary);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}

#rooms .rooms-header p {
  color: hsl(28 18% 83% / 0.8);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.125rem;
}

.room-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.room-card-img {
  aspect-ratio: 2/3;
  overflow: hidden;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.room-card:hover .room-card-img img {
  transform: scale(1.04);
}

.room-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, hsl(18 10% 20% / 0.95) 0%, transparent 100%);
  transform: translateY(2rem);
  opacity: 0;
  transition: all 0.4s ease;
}

.room-card:hover .room-card-info {
  transform: translateY(0);
  opacity: 1;
}

.room-card-info p {
  color: var(--luxury-beige);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.room-card-cta {
  font-family: Lato, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.room-card-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to bottom, hsl(18 10% 20% / 0.6) 0%, transparent 100%);
}

.room-card-name {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.room-card-size {
  font-family: Lato, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.rooms-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ================================================
   DINING SECTION
   ================================================ */
#dining {
  background-color: var(--hue-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dining-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining-image-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background-color: hsl(18 10% 20% / 0.9);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
}

.dining-image-badge .open {
  font-family: Lato, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.25rem;
}

.dining-image-badge p {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--secondary);
  margin: 0;
}

.dining-content {
  padding: 5rem 4.375rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1024px) {
  .dining-content {
    padding: 3rem 2rem;
  }
}

.dining-content h2 {
  color: var(--foreground);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.dining-content > p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.dining-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.dining-menu-item {
  padding: 1.25rem;
  border: 1px solid hsl(18 10% 20% / 0.1);
  background-color: hsl(30 12% 92% / 0.3);
}

.dining-menu-item .time {
  font-family: Lato, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.dining-menu-item h4 {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.dining-menu-item p {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* ================================================
   HIGH TEA SECTION
   ================================================ */
#high-tea {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 500px;
  background-color: var(--background);
}

.high-tea-image {
  position: relative;
  overflow: hidden;
}

.high-tea-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.high-tea-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--hue-3) 100%);
}

.high-tea-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem;
}

.high-tea-content h2 {
  color: var(--foreground);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.high-tea-content blockquote {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--foreground);
  line-height: 1.6;
  margin: 1.5rem 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  position: relative;
}

.high-tea-content blockquote .quote-mark {
  position: absolute;
  top: -1.25rem;
  left: -1.5rem;
  color: hsl(152 49% 55% / 0.4);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
}

.high-tea-content p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* ================================================
   EXPERIENCES SECTION
   ================================================ */
#experiences {
  background-color: var(--primary);
  padding: 6rem 8%;
  position: relative;
  overflow: hidden;
}

.experiences-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Georgia, serif;
  font-size: 20vw;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.experiences-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.experiences-header h2 {
  color: var(--secondary);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: hsl(28 18% 83% / 0.1);
}

.experience-item {
  background-color: var(--primary);
  padding: 2rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.experience-item:hover {
  background-color: hsl(28 18% 83% / 0.04);
  border-bottom-color: var(--accent);
}

.experience-num {
  font-family: Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.06);
}

.experience-item h4 {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.experience-item p {
  font-size: 0.82rem;
  line-height: 1.625;
  color: hsl(28 18% 83% / 0.6);
  margin: 0;
}

.experiences-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ================================================
   SPA SECTION
   ================================================ */
#spa {
  background-color: var(--glendower-black);
  padding: 6rem 8%;
  position: relative;
}

#spa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, hsl(152 49% 55% / 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.spa-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.spa-header h2 {
  color: var(--secondary);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.spa-header p {
  color: hsl(28 18% 83% / 0.7);
}

.spa-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.spa-image-wrap {
  position: relative;
}

.spa-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.spa-image-accent {
  position: absolute;
  bottom: 2rem;
  right: 0;
  width: 45%;
  aspect-ratio: 1;
  border: 1px solid hsl(152 49% 55% / 0.3);
}

.spa-treatments {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.spa-treatment {
  padding-left: 1.5rem;
  border-left: 2px solid hsl(152 49% 55% / 0.2);
  transition: border-color 0.3s ease;
}

.spa-treatment:hover {
  border-left-color: var(--accent);
}

.spa-treatment h4 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.spa-treatment p {
  font-size: 0.85rem;
  line-height: 1.625;
  color: hsl(28 18% 83% / 0.6);
  margin-bottom: 0.5rem;
}

.spa-treatment .duration {
  font-family: Lato, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

/* ================================================
   THE 19TH HOLE / BAR SECTION
   ================================================ */
#pub {
  background-color: var(--saddle-black);
  padding: 6rem 8%;
  position: relative;
  overflow: hidden;
}

#pub::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, hsl(20 12% 8%) 0%, hsl(22 14% 12%) 40%, hsl(20 14% 8%) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.pub-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pub-header h2 {
  color: var(--secondary);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.pub-header > p {
  color: hsl(28 18% 83% / 0.6);
  margin-bottom: 1rem;
}

.pub-billiards-badge {
  margin-top: 2.5rem;
  padding: 2rem;
  border: 1px solid hsl(152 49% 55% / 0.25);
  display: inline-block;
}

.pub-billiards-badge .year {
  font-family: Georgia, serif;
  font-size: 1.875rem;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.pub-billiards-badge p {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  color: hsl(28 18% 83% / 0.6);
}

.pub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pub-menu-item {
  padding: 1.5rem;
  background-color: rgba(0,0,0,0.2);
}

.pub-menu-item h4 {
  font-family: Georgia, serif;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.pub-menu-item p {
  font-size: 0.82rem;
  line-height: 1.625;
  color: hsl(28 18% 83% / 0.55);
  margin: 0;
}

/* ================================================
   OFFERS / PACKAGES SECTION
   ================================================ */
#offers {
  background-color: var(--luxury-beige);
  padding: 6rem 8%;
}

.offers-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.offers-header h2 {
  color: var(--foreground);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.offers-header > p {
  color: var(--muted-foreground);
}

.offers-packages {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.offer-package {
  padding: 1.5rem 2rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: hsl(18 10% 20% / 0);
}

.offer-package:hover {
  background-color: hsl(28 18% 83% / 0.04);
  border-bottom-color: var(--accent);
}

.offer-package-label {
  font-family: Lato, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.offer-package h4 {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.offer-package p {
  font-size: 0.82rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.offer-package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offer-package-rate {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--foreground);
}

.offer-package-rate sup {
  font-family: Lato, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
  vertical-align: super;
}

.offers-enhancements {
  margin-top: 4rem;
}

.offers-enhancements h3 {
  font-family: Lato, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.enhancements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.enhancement-item {
  flex: 1;
  min-width: 180px;
  padding: 1.5rem;
  background-color: var(--background);
  border-top: 2px solid var(--accent);
}

.enhancement-item h4 {
  font-family: Georgia, serif;
  font-size: 0.9rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.enhancement-item p {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  margin: 0;
}

.gift-voucher-banner {
  margin-top: 4rem;
  padding: 2.5rem;
  background-color: var(--primary);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.gift-voucher-banner h3 {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.gift-voucher-banner p {
  color: hsl(28 18% 83% / 0.7);
  max-width: 480px;
  font-size: 0.9rem;
}

/* ================================================
   RECOGNITION / AWARDS + TESTIMONIALS
   ================================================ */
#recognition {
  background-color: var(--background);
  padding: 5rem 8%;
  text-align: center;
}

#recognition h2 {
  color: var(--foreground);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin: 0.5rem 0;
}

#recognition > p {
  color: hsl(16 6% 24% / 0.65);
  max-width: 520px;
  margin: 0.75rem auto 0;
  font-size: 0.9rem;
}

.awards-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.award-item {
  text-align: center;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.award-item:hover {
  opacity: 1;
}

.award-icon {
  width: 70px;
  height: 70px;
  border: 1px solid hsl(18 10% 20% / 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.award-item h4 {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.award-item p {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

/* Testimonials */
#testimonials {
  background-color: var(--muted);
  padding: 5rem 8%;
}

.testimonials-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.testimonials-header h2 {
  color: var(--foreground);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--background);
  padding: 2.5rem;
}

.testimonial-stars {
  color: var(--accent);
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
}

.testimonial-card blockquote {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  color: var(--foreground);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--foreground);
}

.testimonial-loc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.testimonial-platform {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.125rem;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
#contact {
  background-color: var(--background);
  padding: 6rem 8%;
}

.contact-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.contact-header h2 {
  color: var(--foreground);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.contact-header p {
  color: var(--muted-foreground);
  margin-top: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.contact-info-icon {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid hsl(18 10% 20% / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.9rem;
}

.contact-info-label {
  font-family: Lato, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(18 10% 20% / 0.5);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.92rem;
  color: var(--muted-foreground);
  white-space: pre-line;
}

.contact-whatsapp {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background-color: hsl(152 49% 55% / 0.1);
  border: 1px solid hsl(152 49% 55% / 0.3);
  margin-top: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-whatsapp:hover {
  background-color: hsl(152 49% 55% / 0.18);
}

.contact-whatsapp p {
  font-size: 0.85rem;
  color: var(--foreground);
  margin: 0;
}

.contact-whatsapp strong {
  font-weight: 700;
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-field label {
  font-family: Lato, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(18 10% 20% / 0.6);
}

.form-field input,
.form-field select,
.form-field textarea {
  background-color: transparent;
  border: 1px solid hsl(18 10% 20% / 0.25);
  padding: 0.75rem 1rem;
  font-family: Lato, sans-serif;
  font-size: 0.9rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: hsl(18 10% 20% / 0.3);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  font-size: 0.72rem;
  color: hsl(18 10% 20% / 0.4);
  letter-spacing: 0.05em;
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background-color: var(--glendower-black);
  padding: 4.375rem 8%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid hsl(28 18% 83% / 0.1);
  margin-bottom: 2rem;
}

.footer-brand-name {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-brand-sub {
  font-family: Lato, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.footer-brand-desc {
  color: hsl(27 22% 81% / 0.55);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-eco {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: hsl(152 49% 55% / 0.1);
  border: 1px solid hsl(152 49% 55% / 0.3);
  padding: 0.75rem 1.25rem;
}

.footer-eco-icon {
  color: var(--accent);
  font-size: 1.125rem;
}

.footer-eco p {
  font-size: 0.78rem;
  color: hsl(27 22% 81% / 0.7);
  margin: 0;
}

.footer-col h4 {
  font-family: Lato, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.83rem;
  color: hsl(27 22% 81% / 0.55);
  font-weight: 300;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 0.73rem;
  color: hsl(27 22% 81% / 0.35);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid hsl(28 18% 83% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: hsl(27 22% 81% / 0.5);
  transition: all 0.3s;
  cursor: pointer;
  font-family: Lato, sans-serif;
  text-decoration: none;
}

.footer-social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ================================================
   RESPONSIVE — MOBILE
   ================================================ */
@media (max-width: 1024px) {
  #about {
    grid-template-columns: 1fr;
  }

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

  .room-card-img {
    aspect-ratio: 4/3;
  }

  #dining {
    grid-template-columns: 1fr;
  }

  .dining-image {
    min-height: 300px;
  }

  #high-tea {
    grid-template-columns: 1fr;
  }

  .high-tea-image {
    min-height: 300px;
  }

  .high-tea-image::after {
    display: none;
  }

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

  .spa-layout {
    grid-template-columns: 1fr;
  }

  .pub-layout {
    grid-template-columns: 1fr;
  }

  #pub::after {
    display: none;
  }

  .offers-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-reserve {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .section-padding {
    padding: 4rem 6%;
  }

  #about {
    padding: 4rem 6%;
  }

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

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

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

  #rooms {
    padding: 4rem 6%;
  }

  .dining-content {
    padding: 3rem 6%;
  }

  .high-tea-content {
    padding: 3rem 6%;
  }

  #experiences {
    padding: 4rem 6%;
  }

  #spa {
    padding: 4rem 6%;
  }

  #pub {
    padding: 4rem 6%;
  }

  #offers {
    padding: 4rem 6%;
  }

  #recognition {
    padding: 3rem 6%;
  }

  #testimonials {
    padding: 3rem 6%;
  }

  #contact {
    padding: 4rem 6%;
  }

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

  .dining-menu {
    grid-template-columns: 1fr;
  }

  .pub-menu {
    grid-template-columns: 1fr;
  }

  .awards-row {
    gap: 1.5rem;
  }
}

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .booking-field {
    min-width: 100%;
  }

  #booking-bar {
    flex-direction: column;
  }
