/* ============================================
   THE LOW TIDE LOUNGE — Styles
   Charcoal + Coral · Vibrant Modern
   ============================================ */

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

:root {
  --charcoal: #1a1a2e;
  --charcoal-deep: #12121f;
  --charcoal-light: #2a2a3e;
  --coral: #FF6B4A;
  --coral-dark: #e8553a;
  --coral-light: #ff8a72;
  --cream: #faf8f5;
  --cream-dark: #f0ece6;
  --white: #ffffff;
  --text: #2a2a3e;
  --text-light: #6b6b80;
  --text-inverse: #e8e8f0;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 26, 46, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.35);
}

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

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(18, 18, 31, 0.97);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--coral);
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-inverse);
  position: relative;
  transition: var(--transition);
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: var(--transition);
}

.nav a:not(.btn):hover {
  color: var(--coral);
}

.nav a:not(.btn):hover::after {
  width: 100%;
}

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* NAV OVERLAY */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--charcoal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.nav-overlay-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.nav-overlay-link:hover {
  color: var(--coral);
}

.nav-overlay-cta {
  margin-top: 16px;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-geometric {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.geo-circle--1 {
  width: 600px;
  height: 600px;
  background: var(--coral);
  top: -200px;
  right: -100px;
}

.geo-circle--2 {
  width: 300px;
  height: 300px;
  background: var(--coral-light);
  bottom: -80px;
  left: 10%;
  opacity: 0.05;
}

.geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 208px solid var(--coral);
  opacity: 0.05;
  top: 15%;
  left: 5%;
  transform: rotate(-15deg);
}

.geo-square {
  position: absolute;
  background: var(--coral);
  opacity: 0.04;
}

.geo-square--1 {
  width: 160px;
  height: 160px;
  top: 60%;
  right: 30%;
  transform: rotate(30deg);
}

.geo-square--2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 10%;
  transform: rotate(45deg);
  opacity: 0.06;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--coral-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.text-coral {
  color: var(--coral);
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-inverse);
  opacity: 0.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-inverse);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* HERO IMAGE */
.hero-right {
  position: relative;
}

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

.hero-img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--coral);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.hero-badge {
  position: absolute;
  bottom: 32px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  color: var(--charcoal);
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--coral);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 24s linear infinite;
  width: max-content;
}

.marquee span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.marquee-dot {
  font-size: 0.6rem !important;
  opacity: 0.6;
}

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

/* ---------- SECTION COMMON ---------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

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

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- MENU ---------- */
.menu {
  padding: 100px 0;
  background: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card-geo {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}

.geo-espresso { background: #8B6914; }
.geo-cocktail { background: var(--coral); }
.geo-eats { background: #4a7c59; }

.menu-card-content {
  position: relative;
  z-index: 1;
  padding: 36px 32px;
}

.menu-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  border-radius: var(--radius);
  margin-bottom: 20px;
  color: var(--white);
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.menu-card-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.menu-card-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-card-items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-dark);
}

.menu-card-items li span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
}

/* ---------- ABOUT ---------- */
.about {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 620px;
}

.about-img-main {
  width: 75%;
  height: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--charcoal);
}

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

.about-geo-accent {
  position: absolute;
  top: -30px;
  right: 30%;
  width: 100px;
  height: 100px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.15;
}

.about-right {
  position: relative;
  z-index: 1;
}

.about-right .section-tag {
  text-align: left;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-inverse);
  opacity: 0.8;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 74, 0.12);
  border-radius: var(--radius);
}

.about-feature strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.9rem;
  color: var(--text-inverse);
  opacity: 0.6;
}

/* ---------- EVENTS ---------- */
.events {
  padding: 100px 0;
  background: var(--cream);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.event-card-img {
  height: 200px;
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.event-card:hover .event-card-img img {
  transform: scale(1.05);
}

.event-card-body {
  padding: 28px 24px;
}

.event-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  background: rgba(255, 107, 74, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.event-card-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 100px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

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

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

/* ---------- VISIT ---------- */
.visit {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.visit::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.04;
  top: -200px;
  left: -200px;
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.visit-desc {
  font-size: 1.05rem;
  color: var(--text-inverse);
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 40px;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.visit-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 74, 0.12);
  border-radius: var(--radius);
}

.visit-info-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 4px;
}

.visit-info-item span,
.visit-info-item a {
  font-size: 0.95rem;
  color: var(--text-inverse);
  opacity: 0.8;
  line-height: 1.6;
}

.visit-info-item a:hover {
  color: var(--coral);
}

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--charcoal-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-inverse);
  opacity: 0.6;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-inverse);
  opacity: 0.35;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: rgba(255, 107, 74, 0.06);
}

.form-group select option {
  background: var(--charcoal);
  color: var(--white);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: var(--radius);
  color: #81c784;
  font-weight: 500;
  margin-top: 16px;
}

.form-success.show {
  display: flex;
}

/* ---------- MAP SECTION ---------- */
.map-section {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) brightness(0.7);
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--charcoal);
  padding: 32px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.map-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.map-card-text strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
}

.map-card-text span {
  font-size: 0.9rem;
  color: var(--text-inverse);
  opacity: 0.6;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--charcoal-deep);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.logo-footer {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-inverse);
  opacity: 0.5;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-inverse);
  opacity: 0.55;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--coral);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-inverse);
  opacity: 0.35;
}

/* ---------- ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .hero-img {
    height: 540px;
  }

  .about-image-stack {
    height: 480px;
  }

  .about-inner {
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .menu-grid,
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-right {
    order: -1;
  }

  .hero-img {
    height: 400px;
  }

  .hero-img-accent {
    display: none;
  }

  .hero-badge {
    right: 16px;
  }

  .hero-stats {
    gap: 24px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-stack {
    height: 400px;
  }

  .about-img-main {
    height: 400px;
    width: 80%;
  }

  .about-img-float {
    width: 55%;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }

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

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

  .visit-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .map-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 28px 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 1.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

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

  .gallery-item {
    height: 220px;
  }
}
