/* ═══════════════════════════════════════════
   ROOT & CUSTOM PROPERTIES
═══════════════════════════════════════════ */
:root {
  --bg:           #fce8e8;
  --text:         #3b2a1a;
  --gold:         #b8860b;
  --white:        #fff9f5;
  --border:       #e8c9a0;
  --gold-tint:    rgba(184, 134, 11, 0.10);
  --gold-mid:     rgba(184, 134, 11, 0.25);
  --shadow-sm:    0 2px 12px rgba(59, 42, 26, 0.08);
  --shadow-md:    0 6px 28px rgba(59, 42, 26, 0.12);
  --radius:       14px;
  --radius-sm:    8px;
  --ease:         0.3s ease;
  --nav-height:   80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', Georgia, serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--ease);
}

a:hover {
  color: var(--text);
}

ul {
  list-style: none;
}

/* ═══════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section {
  padding: 6rem 0;
}

.section-alt {
  background-color: var(--white);
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════ */
.section-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}

.section-subheading {
  font-size: 0.88rem;
  text-align: center;
  font-variant: small-caps;
  letter-spacing: 0.14em;
  color: var(--text);
  opacity: 0.75;
  margin-bottom: 2.5rem;
}

.section-body {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ═══════════════════════════════════════════
   BOTANICAL DIVIDERS
═══════════════════════════════════════════ */
.botanical-divider {
  text-align: center;
  font-size: 1.4rem;
  color: var(--gold);
  padding: 0.75rem 0;
  letter-spacing: 0.6em;
  opacity: 0.55;
  user-select: none;
}

.botanical-divider--inner {
  font-size: 1.1rem;
  margin: 2.5rem 0 1rem;
  opacity: 0.45;
}

/* ═══════════════════════════════════════════
   IMAGE PLACEHOLDERS
═══════════════════════════════════════════ */
.about-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 2.5rem;
  display: block;
}

.image-placeholder {
  min-height: 300px;
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-variant: small-caps;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  opacity: 0.65;
  background-color: var(--gold-tint);
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 0.85rem 2.1rem;
  border-radius: 50px;
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-variant: small-caps;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  border: 2px solid transparent;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--gold);
}

.btn-outline {
  background-color: transparent;
  color: var(--text);
  border-color: var(--gold);
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  background-color: rgba(252, 232, 232, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}

#navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  white-space: nowrap;
  flex-shrink: 0;
  background: linear-gradient(
    105deg,
    #9a6e09 0%,
    var(--gold) 35%,
    #f5d470 48%,
    #fffbe8 52%,
    #f5d470 56%,
    var(--gold) 65%,
    #9a6e09 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-shimmer 5s linear infinite;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.92rem;
  font-variant: small-caps;
  letter-spacing: 0.14em;
  color: var(--text);
  opacity: 0.85;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1.5rem;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-social a {
  color: var(--text);
  opacity: 0.75;
  display: flex;
  align-items: center;
  transition: color var(--ease), opacity var(--ease);
}

.nav-social a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 4rem) 1.75rem 5rem;
  background-color: var(--bg);
  background-image: url('https://ramgooehxgtufbyvtdan.supabase.co/storage/v1/object/public/gallery/P1020292.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(252, 232, 232, 0.72);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--gold);
  font-variant: small-caps;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  opacity: 0.45;
  pointer-events: none;
}

.hero-botanical-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  pointer-events: none;
  opacity: 0.5;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero-wordmark {
  margin-bottom: 1.75rem;
  position: relative;
  overflow: visible;
}

.hero-title {
  font-size: clamp(4.2rem, 14vw, 9rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.05;
  background: linear-gradient(
    105deg,
    #9a6e09 0%,
    var(--gold) 30%,
    #f5d470 48%,
    #fffbe8 52%,
    #f5d470 56%,
    var(--gold) 70%,
    #9a6e09 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-shimmer 4s linear infinite;
  filter: drop-shadow(0 2px 12px rgba(255, 249, 245, 1)) drop-shadow(0 0 24px rgba(255, 249, 245, 0.9));
}

@keyframes hero-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -100% center; }
}

.hero-subtitle {
  font-size: clamp(0.85rem, 2.2vw, 1.25rem);
  font-variant: small-caps;
  letter-spacing: 0.45em;
  color: var(--text);
  margin-top: 0.6rem;
  opacity: 0.9;
  text-shadow: 0 1px 8px rgba(255, 249, 245, 1), 0 0 20px rgba(255, 249, 245, 0.9);
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-style: italic;
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(255, 249, 245, 1), 0 0 20px rgba(255, 249, 245, 0.9);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   ABOUT — FEATURE TILES
═══════════════════════════════════════════ */
.feature-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-tile {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius);
}

.feature-tile:hover .feature-tile-img {
  opacity: 1;
}

.feature-tile-content {
  position: relative;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.feature-tile:hover .feature-tile-content {
  opacity: 0;
}

.feature-tile-icon {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.feature-tile h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.feature-tile p {
  font-size: 0.93rem;
  line-height: 1.75;
  opacity: 0.82;
}

/* ═══════════════════════════════════════════
   COCKTAIL MENU
═══════════════════════════════════════════ */
.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.cocktail-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}

.cocktail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--border));
}

.cocktail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cocktail-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.cocktail-card p {
  font-size: 0.86rem;
  font-style: italic;
  opacity: 0.78;
  line-height: 1.65;
}

.cocktail-card--mocktail::before {
  background: linear-gradient(90deg, #dbb899, #fce8e8);
}

.mocktail-heading {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.house-shot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--gold), #9a6e09);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  margin: 0.5rem auto 0;
  max-width: 460px;
  box-shadow: 0 4px 18px rgba(184, 134, 11, 0.35);
}

.house-shot-label {
  font-variant: small-caps;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  opacity: 0.82;
  flex-shrink: 0;
}

.house-shot-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.house-shot-price {
  font-size: 1.15rem;
  font-weight: 700;
  margin-left: auto;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PRIVATE HIRE
═══════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 3rem;
}

.stat-tile {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  font-variant: small-caps;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.hire-table-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hire-table {
  width: 100%;
  max-width: 500px;
  border-collapse: collapse;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hire-table th {
  background-color: var(--gold);
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.82rem;
  font-variant: small-caps;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.hire-table th:last-child {
  text-align: right;
}

.hire-table td {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.hire-table tbody tr:last-child td {
  border-bottom: none;
}

.hire-table td:last-child {
  font-weight: 600;
  color: var(--gold);
  text-align: right;
}

.hire-note {
  max-width: 580px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.78;
  line-height: 1.75;
}

.occasions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin: 0 0 3rem;
}

.occasion-tag {
  padding: 0.45rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 0.8rem;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  color: var(--gold);
  background-color: var(--gold-tint);
  transition: background-color var(--ease), color var(--ease);
}

.occasion-tag:hover {
  background-color: var(--gold);
  color: var(--white);
}

/* Enquiry form */
.enquiry-form-wrapper {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.75rem 2.5rem;
  max-width: 740px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.form-heading {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-row > .form-group {
  margin-bottom: 0;
}

label {
  font-size: 0.82rem;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  opacity: 0.82;
}

label span {
  color: var(--gold);
  font-style: normal;
}

input,
select,
textarea {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text);
  background-color: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.72rem 1rem;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
}

input::placeholder,
textarea::placeholder {
  opacity: 0.45;
  font-style: italic;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8860b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: #c0392b;
}

.form-error {
  font-size: 0.8rem;
  color: #c0392b;
  font-style: italic;
  display: none;
  margin-top: 0.15rem;
}

.form-group.invalid .form-error {
  display: block;
}

.form-submit-row {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.btn-submit {
  min-width: 200px;
  text-align: center;
}

.form-message {
  margin-top: 1.25rem;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  text-align: center;
  line-height: 1.6;
  display: none;
}

.form-message.success {
  display: block;
  background-color: rgba(39, 120, 80, 0.1);
  border: 1px solid rgba(39, 120, 80, 0.35);
  color: #1e6b47;
}

.form-message.error {
  display: block;
  background-color: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.3);
  color: #c0392b;
}

/* Brochure download */
.brochure-download {
  text-align: center;
  padding: 2rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.brochure-download p {
  font-size: 0.92rem;
  font-style: italic;
  opacity: 0.75;
}

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gallery-grid {
  columns: 3;
  column-gap: 1.25rem;
  margin-top: 2.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  margin-top: 0;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 134, 11, 0.5);
  transition: transform var(--ease), box-shadow var(--ease), opacity var(--ease);
  min-height: 220px;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(184, 134, 11, 0.35);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
  transition: border-color var(--ease);
}

.gallery-item:nth-child(3n) {
  min-height: 280px;
}

.gallery-item:nth-child(5),
.gallery-item:nth-child(8) {
  min-height: 340px;
}

.gallery-item:hover {
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 0 14px rgba(184, 134, 11, 0.55), 0 0 32px rgba(184, 134, 11, 0.22);
}

.gallery-item:hover::after {
  border-color: rgba(184, 134, 11, 0.75);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(40, 25, 12, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 4rem;
  min-width: 280px;
  text-align: center;
}

.lightbox-label {
  color: var(--gold);
  font-variant: small-caps;
  letter-spacing: 0.14em;
  font-size: 1rem;
  opacity: 0.75;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255,249,245,0.4);
  color: var(--white);
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background-color var(--ease), border-color var(--ease);
}

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

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 1.75rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  height: 2rem;
}

.contact-icon--fb svg {
  color: var(--gold);
}

.contact-card h4 {
  font-size: 0.78rem;
  font-variant: small-caps;
  letter-spacing: 0.14em;
  opacity: 0.65;
  margin-bottom: 0.5rem;
}

.contact-card a {
  font-size: 0.9rem;
  color: var(--text);
  word-break: break-word;
  line-height: 1.5;
}

.contact-card a:hover {
  color: var(--gold);
}

.opening-hours {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.hours-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}

.hours-table tbody tr:last-child td {
  border-bottom: none;
}

.hours-table td:last-child {
  font-weight: 600;
  text-align: right;
  color: var(--gold);
}

.address-block {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.82;
  line-height: 1.7;
}

.hours-private-hire {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.92rem;
  font-style: italic;
  opacity: 0.85;
}

.hours-private-hire a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.maps-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════
   LIKE THIS SITE?
═══════════════════════════════════════════ */
.section-dev {
  background-color: var(--text);
  color: var(--white);
  padding: 5rem 1.75rem;
}

.section-dev .container {
  max-width: 680px;
}

.dev-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.dev-body {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.82;
  margin-bottom: 2.5rem;
}

.dev-form .form-group label {
  color: rgba(255, 249, 245, 0.75);
}

.dev-form .form-group input,
.dev-form .form-group textarea {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 249, 245, 0.2);
  color: var(--white);
}

.dev-form .form-group input::placeholder,
.dev-form .form-group textarea::placeholder {
  color: rgba(255, 249, 245, 0.35);
}

.dev-form .form-group input:focus,
.dev-form .form-group textarea:focus {
  border-color: var(--gold);
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background-color: var(--text);
  color: var(--white);
  padding: 3.5rem 1.75rem;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer-wordmark {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.24em;
}

.footer-subtitle {
  font-size: 0.72rem;
  font-variant: small-caps;
  letter-spacing: 0.32em;
  opacity: 0.55;
}

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

.footer-social a {
  color: var(--white);
  opacity: 0.65;
  display: flex;
  align-items: center;
  transition: opacity var(--ease), color var(--ease);
}

.footer-social a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-legal {
  font-size: 0.8rem;
  opacity: 0.45;
  margin-top: 0.2rem;
}

.footer-credit {
  font-size: 0.76rem;
  opacity: 0.35;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   SCROLL FADE-IN ANIMATION
═══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 960px)
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: rgba(252, 232, 232, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.25rem 1.75rem;
    gap: 0.85rem;
    box-shadow: var(--shadow-md);
  }

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

  .nav-links a {
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-right {
    margin-left: auto;
  }

  .feature-tiles {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  }

  .gallery-grid {
    columns: 2;
  }

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

  .form-row > .form-group {
    margin-bottom: 1.25rem;
  }

  .enquiry-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* ═══════════════════════════════════════════
   SPARKLE PARTICLES
═══════════════════════════════════════════ */
.sparkle-particle {
  position: absolute;
  pointer-events: none;
  color: var(--gold);
  line-height: 1;
  font-family: serif;
  z-index: 10;
  animation: sparkle-fly var(--dur, 700ms) ease-out forwards;
  will-change: transform, opacity;
}

@keyframes sparkle-fly {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0.15) rotate(var(--rot));
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
═══════════════════════════════════════════ */
@media (max-width: 600px) {
  .section {
    padding: 4rem 0;
  }

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

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-grid {
    columns: 1;
  }

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

  .hero-ctas .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .house-shot {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1rem 1.5rem;
  }

  .house-shot-price {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .section-hero {
    padding: calc(var(--nav-height) + 3rem) 1.25rem 4rem;
  }

  .hire-table th,
  .hire-table td {
    padding: 0.7rem 1rem;
  }
}
