/* ========================================
   SALTY'S YARMOUTH — Beach Bar Style
   Inspired by blue-bar.co.uk
   ======================================== */

/* --- CSS Variables --- */
:root {
  --color-primary: #2596be;
  --color-accent: #6dc3ef;
  --color-dark: #1a1a1a;
  --color-dark-bg: #111111;
  --color-white: #ffffff;
  --color-off-white: #f7f7f7;
  --color-text: #333333;
  --color-text-light: #777777;
  --color-border: rgba(0, 0, 0, 0.1);
  --color-overlay: rgba(0, 0, 0, 0.35);

  --font-primary: 'Arial', 'Helvetica Neue', sans-serif;
  --font-heading: 'Georgia', 'Times New Roman', serif;

  --nav-height: 80px;
  --transition: 0.4s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--color-white);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; }

.section-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 600;
}

/* --- Ken Burns Effect --- */
@keyframes kenburns-1 {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.12) translate(-1.5%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}

@keyframes kenburns-2 {
  0%   { transform: scale(1.05) translate(1%, 0); }
  50%  { transform: scale(1.15) translate(-1%, -1.5%); }
  100% { transform: scale(1.05) translate(1%, 0); }
}

@keyframes kenburns-3 {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.1) translate(1.5%, -0.5%); }
  100% { transform: scale(1) translate(0, 0); }
}

.kenburns img,
.kenburns .hero-bg {
  animation: kenburns-1 20s ease-in-out infinite;
}

/* Hero Ken Burns */
.hero .hero-bg {
  animation: kenburns-2 25s ease-in-out infinite;
}

/* Box grid Ken Burns */
.box-item img {
  animation: kenburns-1 18s ease-in-out infinite;
}

.box-item:nth-child(2) img { animation: kenburns-2 22s ease-in-out infinite; }
.box-item:nth-child(3) img { animation: kenburns-3 20s ease-in-out infinite; }
.box-item:nth-child(4) img { animation: kenburns-1 24s ease-in-out infinite; }

.box-item:hover img {
  animation-play-state: paused;
  transform: scale(1.05);
}

/* Split section Ken Burns */
.split-image img {
  animation: kenburns-3 22s ease-in-out infinite;
}

/* About page image Ken Burns */
.about-image-primary img {
  animation: kenburns-2 20s ease-in-out infinite;
}

/* Gallery Ken Burns */
.gallery-item img {
  animation: kenburns-1 20s ease-in-out infinite;
}

.gallery-item:nth-child(2) img { animation: kenburns-2 22s ease-in-out infinite; }
.gallery-item:nth-child(3) img { animation: kenburns-3 18s ease-in-out infinite; }
.gallery-item:nth-child(4) img { animation: kenburns-1 24s ease-in-out infinite; }
.gallery-item:nth-child(5) img { animation: kenburns-2 20s ease-in-out infinite; }
.gallery-item:nth-child(6) img { animation: kenburns-3 22s ease-in-out infinite; }
.gallery-item:nth-child(7) img { animation: kenburns-1 19s ease-in-out infinite; }
.gallery-item:nth-child(8) img { animation: kenburns-2 21s ease-in-out infinite; }
.gallery-item:nth-child(9) img { animation: kenburns-3 23s ease-in-out infinite; }

.gallery-item:hover img {
  animation-play-state: paused;
  transform: scale(1.08);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero .hero-bg,
  .box-item img,
  .split-image img,
  .about-image-primary img,
  .gallery-item img {
    animation: none;
  }
}

/* --- Loader --- */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-dark-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-boat {
  width: 80px;
  height: 80px;
  animation: spin 2.5s linear infinite;
  margin-bottom: 1.5rem;
}

.loader-boat svg {
  width: 100%;
  height: 100%;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* --- Top Bar --- */
.top-bar {
  background: var(--color-dark-bg);
  padding: 10px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar a {
  color: var(--color-accent);
}

.top-bar a:hover {
  color: var(--color-white);
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-contact {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

.top-bar-social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.top-bar-social a:hover {
  color: var(--color-accent);
}

.top-bar-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- Navigation --- */
.nav {
  background: var(--color-dark-bg);
  position: sticky;
  top: 0;
  z-index: 9999;
  padding: 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  position: relative;
}

.nav-links-left,
.nav-links-right {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links-left a,
.nav-links-right a {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 10px 18px;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links-left a:hover,
.nav-links-right a:hover,
.nav-links-left a.active,
.nav-links-right a.active {
  color: var(--color-accent);
}

.nav-logo {
  margin: 0 clamp(1.5rem, 4vw, 3rem);
  flex-shrink: 0;
}

.nav-logo img {
  height: 55px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-white);
  letter-spacing: 0.03em;
}

.nav-logo-text span {
  color: var(--color-accent);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
  padding: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  padding: 12px 20px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }

.mobile-menu a:hover {
  color: var(--color-dark);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation: kenburns-2 25s ease-in-out infinite;
}

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

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.hero-dot:hover {
  border-color: var(--color-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 750px;
}

.hero-est {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-description {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

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

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

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

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

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

.btn-dark:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* --- Sections --- */
.section {
  padding: clamp(4rem, 8vh, 6rem) 20px;
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 5vh, 4rem);
}

.section-header .section-subtitle {
  margin-bottom: 0.6rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.65);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Image Boxes (Card Grid) --- */
.box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.box-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.box-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.box-item:hover img {
  transform: scale(1.05);
}

.box-item-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transition: background 0.5s ease;
}

.box-item:hover .box-item-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.box-item-overlay h3 {
  color: var(--color-white);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.box-item-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

/* --- About / Text + Image Sections --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.split-text h2 {
  margin-bottom: 1rem;
}

.split-text .section-subtitle {
  margin-bottom: 0.6rem;
  display: block;
}

.split-text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.split-text .btn {
  margin-top: 0.5rem;
}

/* --- Info Bar / Stats --- */
.info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 4vh, 3rem) 20px;
}

.info-item h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}

.info-item p {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* --- Quote Section --- */
.quote-section {
  padding: clamp(4rem, 8vh, 6rem) 20px;
  text-align: center;
  background: var(--color-primary);
  color: var(--color-white);
}

.quote-section blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--color-white);
  max-width: 750px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.quote-section cite {
  font-family: var(--font-primary);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* --- Opening Panel --- */
.opening-panel {
  background: var(--color-off-white);
  border-radius: 16px;
  padding: clamp(2.5rem, 4vw, 4rem);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.opening-panel h3 {
  margin-bottom: 1rem;
}

.opening-panel .opening-date {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.opening-panel p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: var(--color-dark-bg);
  text-align: center;
  padding: clamp(5rem, 10vh, 8rem) 20px clamp(3rem, 6vh, 5rem);
}

.page-header .section-subtitle {
  color: var(--color-accent);
  margin-bottom: 0.6rem;
  display: block;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 0.8rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* --- About Page --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-story-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.about-story-text p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3rem;
  float: left;
  line-height: 1;
  margin-right: 0.4rem;
  margin-top: 0.1rem;
  color: var(--color-primary);
}

.about-image-primary {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(3rem, 5vh, 5rem);
}

.value-card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--color-off-white);
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.value-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.value-card h4 {
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
}

/* --- Food & Drink Menu --- */
.menu-category {
  margin-bottom: clamp(3rem, 5vh, 4rem);
}

.menu-category h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.menu-item:hover {
  padding-left: 0.8rem;
}

.menu-item-info h4 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.menu-item-info p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-primary);
  white-space: nowrap;
  margin-left: 2rem;
}

.menu-note {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--color-off-white);
  border-left: 4px solid var(--color-primary);
}

.menu-note p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  font-style: italic;
}

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

.section-narrow {
  max-width: 900px;
  margin: 0 auto;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
  background: var(--color-off-white);
}

.gallery-item::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-white);
}

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

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

.gallery-item.wide::before {
  padding-top: 50%;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

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

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
}

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

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info {
  padding: clamp(2rem, 3vw, 2.5rem);
  background: var(--color-dark-bg);
  border-radius: 16px;
  color: var(--color-white);
  height: fit-content;
}

.contact-info .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
  display: block;
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.contact-info-item a:hover {
  color: var(--color-accent);
}

.map-embed {
  margin-top: clamp(2rem, 4vh, 3rem);
  aspect-ratio: 21/9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-off-white);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Marquee --- */
.marquee-section {
  padding: clamp(1.5rem, 3vh, 2.5rem) 0;
  background: var(--color-off-white);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--color-text-light);
  opacity: 0.6;
}

.marquee-track .dot {
  color: var(--color-primary);
  font-style: normal;
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Footer --- */
.footer {
  background: var(--color-dark-bg);
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem, 6vh, 5rem) 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 0.8rem;
}

.footer-brand h3 span {
  color: var(--color-accent);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
}

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

.footer-col li {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

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

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--color-accent);
  background: rgba(109, 195, 239, 0.1);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: rgba(255,255,255,0.5);
  transition: fill 0.3s;
}

.footer-social a:hover svg {
  fill: var(--color-accent);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* --- Divider --- */
.divider {
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  margin: 1.5rem 0;
}

/* --- Accent helpers --- */
.accent-font {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-primary);
}

.label {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .box-grid {
    gap: 15px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

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

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

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    justify-content: center;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .top-bar-contact {
    gap: 1rem;
    font-size: 0.75rem;
  }

  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

  .about-story {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

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

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

  .info-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero {
    height: 70vh;
    min-height: 400px;
  }
}

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

  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item.wide::before {
    padding-top: 100%;
  }

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