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

:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2C;
  --burgundy-light: #9A3D4E;
  --blush: #F5E6D3;
  --blush-light: #FFF5F0;
  --blush-dark: #E8CDB5;
  --cream: #FFFDF9;
  --text-dark: #2D1A1E;
  --text-mid: #5C3D44;
  --text-light: #8A6B70;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.08);
  --shadow-md: 0 4px 20px rgba(123, 45, 59, 0.12);
  --shadow-lg: 0 8px 40px rgba(123, 45, 59, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --font-display: 'Frauncie', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --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-dark);
  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;
}

ul {
  list-style: none;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.section-tag-light {
  color: var(--blush);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

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

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

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

.btn-primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  transition: var(--transition);
}

.nav.scrolled .nav-logo {
  color: var(--burgundy);
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--white);
  color: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
}

.nav.scrolled .nav-logo-mark {
  background: var(--burgundy);
  color: var(--white);
}

.nav-logo-text .dot {
  color: var(--burgundy);
}

.nav.scrolled .nav-logo-text .dot {
  color: var(--burgundy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}

.nav.scrolled .nav-links a {
  color: var(--text-mid);
}

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

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav-links a::after {
  background: var(--burgundy);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--white) !important;
  color: var(--burgundy) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav.scrolled .nav-cta {
  background: var(--burgundy) !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav.scrolled .hamburger,
.nav.scrolled .hamburger::before,
.nav.scrolled .hamburger::after {
  background: var(--burgundy);
}

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

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

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

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

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

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(245, 230, 211, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(245, 230, 211, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--white);
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--blush);
  border-radius: 2px;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-accent {
  color: var(--blush);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.hero-trust-item svg {
  color: var(--blush);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 600px;
}

.hero-img-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-img-main {
  width: 85%;
  height: 80%;
  margin-left: auto;
  position: absolute;
  top: 5%;
  right: 0;
}

.hero-img-float {
  position: absolute;
  z-index: 2;
}

.hero-img-left {
  width: 55%;
  bottom: 5%;
  left: 0;
  border: 4px solid var(--burgundy);
}

.hero-img-right {
  width: 50%;
  top: 0;
  right: 5%;
  border: 4px solid var(--burgundy);
}

.hero-badge {
  position: absolute;
  bottom: 30%;
  left: -10px;
  background: var(--white);
  color: var(--burgundy);
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

/* HERO WAVE */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ===== MENU ===== */
.menu {
  background: var(--blush-light);
  padding: 100px 0 120px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-sub {
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

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

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

.menu-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.menu-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--burgundy);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-card-body {
  padding: 28px;
}

.menu-card-body h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.menu-card-body p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.menu-cta {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.menu-cta p {
  color: var(--text-mid);
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

/* ===== ABOUT ===== */
.about {
  background: var(--cream);
  padding: 120px 0;
}

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

.about-visual {
  position: relative;
  height: 600px;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 80%;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

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

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

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

.about-content .section-title {
  margin-bottom: 24px;
}

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

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

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

.about-value-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--blush);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}

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

.about-value span {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== VIBE ===== */
.vibe {
  background: var(--burgundy);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.vibe-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 90%, rgba(245, 230, 211, 0.1) 0%, transparent 40%),
                    radial-gradient(circle at 90% 10%, rgba(245, 230, 211, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.vibe .container {
  position: relative;
  z-index: 1;
}

.vibe-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.vibe-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

.vibe-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vibe-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.vibe-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vibe-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--blush-light);
  padding: 120px 0;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #F5A623;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--burgundy);
}

/* ===== VISIT ===== */
.visit {
  background: var(--cream);
  padding: 120px 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-info .section-title {
  margin-bottom: 16px;
}

.visit-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}

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

.visit-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--blush);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}

.visit-detail strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.visit-detail span,
.visit-detail a {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.visit-detail a:hover {
  color: var(--burgundy);
  text-decoration: underline;
}

.visit-map {
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* HOURS & CONTACT */
.hours-card,
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hours-card h3,
.contact-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hours-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 20px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--blush);
  font-size: 0.95rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--text-dark);
  font-weight: 500;
}

.hours-time {
  color: var(--text-mid);
}

.contact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--blush-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.1);
}

.form-input::placeholder {
  color: var(--text-light);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: var(--blush);
  border-radius: var(--radius-sm);
  color: var(--burgundy);
  font-weight: 500;
  margin-top: 16px;
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--burgundy-deep);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}

.footer-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--white);
  color: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.footer-logo .dot {
  color: var(--blush);
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact li {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .about-visual {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

  .nav-toggle {
    display: block;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero-inner {
    padding-top: 40px;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-visual {
    height: 350px;
  }

  .hero-img-main {
    width: 90%;
    height: 75%;
  }

  .hero-img-left {
    width: 55%;
  }

  .hero-img-right {
    width: 50%;
  }

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

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

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

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

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

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

  .menu-cta {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .hero-visual {
    height: 280px;
  }

  .hero-badge {
    display: none;
  }

  .about-visual {
    height: 300px;
  }

  .about-img-accent {
    width: 60%;
  }
}
