/* ============================================================
   THE VIEW ROOFTOP BAR — Main Stylesheet
   Design: Dark modern theme, gold accents, glassmorphism
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Colours */
  --clr-bg: #0a0a0c;
  --clr-surface: #111114;
  --clr-surface-2: #18181d;
  --clr-border: rgba(201, 168, 76, 0.18);
  --clr-gold: #C9A84C;
  --clr-gold-light: #e0c070;
  --clr-gold-dim: rgba(201, 168, 76, 0.12);
  --clr-text: #e8e2d9;
  --clr-text-muted: #8a847c;
  --clr-white: #ffffff;
  --clr-overlay: rgba(8, 8, 10, 0.62);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 76px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.35s var(--ease);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ── Utility Classes ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section-pad {
  padding-block: var(--space-xl);
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--clr-gold);
}

/* ── Typography ───────────────────────────────────────────── */
.display-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1rem;
}

.body-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* ── Divider ──────────────────────────────────────────────── */
.gold-rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  margin: 1.5rem auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-bg);
}

.btn-primary:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid rgba(232, 226, 217, 0.35);
}

.btn-outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
}

.btn-ghost:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
  transform: translateY(-2px);
}

/* ── ════════════════════════════════════════════════════════ */
/* ── NAVIGATION                                              */
/* ── ════════════════════════════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-nav.transparent {
  background: transparent;
}

.site-nav.solid {
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--clr-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--clr-white);
}

.nav-logo-tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.7);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--clr-text);
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: rgba(10, 10, 12, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid var(--clr-border);
  transform: translateY(-110%);
  transition: transform var(--transition);
}

.nav-mobile.open {
  transform: translateY(0);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-mobile-links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.75);
  transition: color var(--transition);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-mobile-links a:last-child {
  border-bottom: none;
}

.nav-mobile-links a:hover {
  color: var(--clr-gold);
}

.nav-mobile-cta {
  margin-top: 2rem;
}

/* ── ════════════════════════════════════════════════════════ */
/* ── HERO                                                    */
/* ── ════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(8, 8, 10, 0.90) 0%,
      rgba(8, 8, 10, 0.35) 50%,
      rgba(8, 8, 10, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(4rem, 10vh, 7rem);
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.65);
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.45);
  writing-mode: vertical-lr;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* ── ════════════════════════════════════════════════════════ */
/* ── SCROLL REVEAL                                           */
/* ── ════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── ════════════════════════════════════════════════════════ */
/* ── HIGHLIGHTS SECTION                                      */
/* ── ════════════════════════════════════════════════════════ */

.highlights {
  background: var(--clr-surface);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--clr-border);
}

.highlight-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.highlight-card:hover img {
  transform: scale(1.06);
}

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.85) 0%, rgba(8, 8, 10, 0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.75rem;
  transition: background var(--transition);
}

.highlight-card:hover .highlight-overlay {
  background: linear-gradient(to top, rgba(8, 8, 10, 0.92) 0%, rgba(8, 8, 10, 0.35) 55%, transparent 100%);
}

.highlight-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.6rem;
}

.highlight-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--clr-white);
  line-height: 1.15;
}

.highlight-desc {
  font-size: 0.82rem;
  color: rgba(232, 226, 217, 0.65);
  margin-top: 0.75rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
}

.highlight-card:hover .highlight-desc {
  max-height: 80px;
  opacity: 1;
}

/* ── ════════════════════════════════════════════════════════ */
/* ── STATEMENT / PULL-QUOTE SECTION                          */
/* ── ════════════════════════════════════════════════════════ */

.statement {
  background: var(--clr-bg);
  padding-block: var(--space-2xl);
  text-align: center;
}

.statement-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--clr-text);
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.4;
}

.statement-quote em {
  color: var(--clr-gold);
  font-style: normal;
}

/* ── ════════════════════════════════════════════════════════ */
/* ── GALLERY STRIP                                           */
/* ── ════════════════════════════════════════════════════════ */

.gallery-strip {
  background: var(--clr-bg);
  padding-bottom: var(--space-xl);
}

.gallery-strip-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

/* ── ════════════════════════════════════════════════════════ */
/* ── ABOUT SECTION (homepage teaser)                         */
/* ── ════════════════════════════════════════════════════════ */

.home-about {
  background: var(--clr-surface);
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.home-about-image {
  overflow: hidden;
}

.home-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.home-about-grid:hover .home-about-image img {
  transform: scale(1.04);
}

.home-about-text {
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-about-text .body-text {
  margin-top: 1.5rem;
  max-width: 480px;
}

.home-about-text .btn {
  margin-top: 2.5rem;
  align-self: flex-start;
}

/* ── ════════════════════════════════════════════════════════ */
/* ── PAGE HERO (inner pages)                                 */
/* ── ════════════════════════════════════════════════════════ */

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(8, 8, 10, 0.88) 0%,
      rgba(8, 8, 10, 0.3) 60%,
      rgba(8, 8, 10, 0.2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── ════════════════════════════════════════════════════════ */
/* ── ABOUT PAGE                                              */
/* ── ════════════════════════════════════════════════════════ */

.about-story {
  background: var(--clr-bg);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story-text .section-title {
  margin-bottom: 1.5rem;
}

.about-story-text .body-text+.body-text {
  margin-top: 1.25rem;
}

.about-story-image {
  overflow: hidden;
}

.about-story-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.about-story-image:hover img {
  transform: scale(1.04);
}

.about-values {
  background: var(--clr-surface);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.value-card {
  background: var(--clr-surface-2);
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--clr-border);
  transition: border-color var(--transition);
}

.value-card:hover {
  border-top-color: var(--clr-gold);
}

.value-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.about-gallery {
  background: var(--clr-bg);
  padding-bottom: var(--space-xl);
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 3rem;
}

.about-gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.about-gallery-grid img:hover {
  transform: scale(1.03);
}

/* ── ════════════════════════════════════════════════════════ */
/* ── MENU PAGE                                               */
/* ── ════════════════════════════════════════════════════════ */

.menu-intro {
  background: var(--clr-bg);
  text-align: center;
  padding-block: var(--space-lg) 3rem;
}

.menu-section {
  padding-block: var(--space-lg);
  border-top: 1px solid var(--clr-border);
}

.menu-section:first-of-type {
  border-top: none;
}

.menu-sections-wrapper {
  background: var(--clr-bg);
  padding-bottom: var(--space-xl);
}

.menu-section-header {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.menu-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--clr-white);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--clr-text);
}

.menu-item-desc {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-top: 0.2rem;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-gold);
  white-space: nowrap;
}

.menu-image-card {
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.menu-image-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.menu-image-card:hover img {
  transform: scale(1.04);
}

.menu-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 3rem;
}

.menu-two-col img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.8s var(--ease);
}

.menu-two-col img:hover {
  transform: scale(1.04);
}

.menu-disclaimer {
  text-align: center;
  background: var(--clr-surface);
  padding: 1.5rem;
  border: 1px solid var(--clr-border);
  margin-top: 3rem;
}

.menu-disclaimer p {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.06em;
}

/* ── ════════════════════════════════════════════════════════ */
/* ── LOCATION & HOURS PAGE                                   */
/* ── ════════════════════════════════════════════════════════ */

.location-section {
  background: var(--clr-bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 2.5rem;
}

.contact-card-section {
  padding-block: 1.75rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.contact-card-section:last-child {
  border-bottom: none;
}

.contact-card-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
}

.contact-card-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--clr-text);
  line-height: 1.5;
}

.contact-card-value a {
  color: var(--clr-text);
  transition: color var(--transition);
}

.contact-card-value a:hover {
  color: var(--clr-gold);
}

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.7rem 0;
  font-size: 0.88rem;
}

.hours-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 400;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--clr-text);
  font-weight: 400;
}

.hours-table .closed {
  color: rgba(138, 132, 124, 0.45);
  font-style: italic;
}

.hours-table tr.today td {
  color: var(--clr-gold);
}

.map-wrapper {
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}

/* ── ════════════════════════════════════════════════════════ */
/* ── CONTACT / BOOKINGS PAGE                                 */
/* ── ════════════════════════════════════════════════════════ */

.contact-section {
  background: var(--clr-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  padding-top: 0.5rem;
}

.contact-info .section-title {
  margin-bottom: 1.5rem;
}

.contact-info .body-text {
  margin-bottom: 2rem;
}

.contact-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--clr-gold);
  transition: color var(--transition);
  margin-bottom: 2rem;
}

.contact-cta-phone:hover {
  color: var(--clr-gold-light);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.social-link:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: var(--clr-gold-dim);
}

/* Contact form */
.contact-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--clr-bg);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--clr-text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-top: 1rem;
}

/* ── ════════════════════════════════════════════════════════ */
/* ── FOOTER                                                  */
/* ── ════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-lg);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-white);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.footer-brand-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--clr-text);
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.footer-hours-list .closed-day {
  color: rgba(138, 132, 124, 0.4);
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(138, 132, 124, 0.5);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: rgba(138, 132, 124, 0.6);
  font-size: 0.8rem;
  transition: border-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* ── ════════════════════════════════════════════════════════ */
/* ── RESPONSIVE                                              */
/* ── ════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-story-grid {
    gap: 3rem;
  }

  .location-grid {
    gap: 3rem;
  }

  .contact-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  /* Highlights */
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    aspect-ratio: 4/3;
  }

  /* Home-about */
  .home-about-grid {
    grid-template-columns: 1fr;
  }

  .home-about-image {
    height: 300px;
  }

  .home-about-image img {
    height: 300px;
  }

  /* About */
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-story-image img {
    height: 320px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery-grid img {
    height: 280px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  /* Menu */
  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .menu-two-col {
    grid-template-columns: 1fr;
  }

  .menu-two-col img {
    height: 220px;
  }

  .contact-form {
    padding: 2rem;
  }

  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper iframe {
    height: 320px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-section-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}