*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --emerald-900: #064E3B;
  --emerald-800: #065F46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --cream-50: #FDF8F0;
  --cream-100: #F5F0E8;
  --cream-200: #EDE5D8;
  --cream-300: #E0D5C4;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #7A7A7A;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background-color: var(--cream-50);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: background 0.4s var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(253, 248, 240, 0.96);
  box-shadow: 0 1px 0 rgba(6, 78, 59, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--emerald-900);
}

.nav-logo-mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--emerald-900);
  border-radius: 50%;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s var(--ease-smooth);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--emerald-700);
  transition: width 0.3s var(--ease-out);
}

.nav-menu a:hover {
  color: var(--emerald-800);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--emerald-900);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-smooth);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 0;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  flex: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--emerald-600);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--emerald-800);
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 0;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--emerald-900);
  color: var(--cream-50);
  border: 1px solid var(--emerald-900);
}

.btn-primary:hover {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--emerald-900);
  border: 1px solid var(--emerald-900);
}

.btn-ghost:hover {
  background: var(--emerald-900);
  color: var(--cream-50);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.hero-meta-item {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-right {
  position: relative;
}

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

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 640/800;
  display: block;
}

.hero-image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--emerald-600);
  z-index: -1;
  opacity: 0.3;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  padding: 0 2rem 2rem;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ── DIVIDER ─────────────────────────────────────── */
.divider-section {
  padding: 5rem 2rem;
  background: var(--cream-100);
}

.divider-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--cream-300);
}

.divider-quote {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--emerald-800);
  text-align: center;
  flex: 0 0 auto;
  max-width: 400px;
}

/* ── SECTION COMMON ──────────────────────────────── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
}

/* ── MENU ────────────────────────────────────────── */
.menu-section {
  padding: 7rem 0;
  background: var(--cream-50);
}

.menu-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.menu-section .section-desc {
  margin: 0 auto;
}

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

.menu-card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(6, 78, 59, 0.08);
  border-color: var(--emerald-200, #A7F3D0);
}

.menu-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 480/360;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.menu-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--emerald-900);
  color: var(--cream-50);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
}

.menu-card-content {
  padding: 1.75rem;
}

.menu-card-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 0.625rem;
}

.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.menu-card-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.menu-note {
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--cream-100);
  border-top: 1px solid var(--cream-200);
  border-bottom: 1px solid var(--cream-200);
}

.menu-note p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── ABOUT ───────────────────────────────────────── */
.about-section {
  padding: 7rem 0;
  background: var(--cream-100);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-image-wrap {
  overflow: hidden;
}

.split-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 600/750;
}

.split-content {
  padding: 2rem 0;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-300);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.value-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--emerald-700);
  margin-top: 2px;
}

.value-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── STORY ───────────────────────────────────────── */
.story-section {
  padding: 7rem 0;
  background: var(--cream-50);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.story-text {
  padding: 2rem 0;
}

.story-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.story-image-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.story-img {
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 400/500;
}

.story-img-2 {
  margin-top: 2rem;
}

/* ── VISIT ───────────────────────────────────────── */
.visit-section {
  padding: 7rem 0;
  background: var(--cream-100);
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit-info {
  padding: 2rem 0;
}

.visit-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.visit-detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--emerald-700);
  margin-top: 3px;
}

.visit-detail-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.visit-detail-value {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.visit-detail-value a {
  color: var(--emerald-800);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-smooth);
}

.visit-detail-value a:hover {
  border-bottom-color: var(--emerald-800);
}

.visit-map {
  position: relative;
  overflow: hidden;
}

.visit-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 600/450;
  display: block;
  filter: saturate(0.7) contrast(1.05);
  transition: filter 0.4s var(--ease-smooth);
}

.visit-map:hover img {
  filter: saturate(0.9) contrast(1.05);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald-800);
  transition: gap 0.3s var(--ease-out);
}

.map-link:hover {
  gap: 0.75rem;
}

/* ── CTA ─────────────────────────────────────────── */
.cta-section {
  padding: 7rem 0;
  background: var(--emerald-900);
  color: var(--cream-50);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.cta-text .section-eyebrow {
  color: var(--emerald-400, #34D399);
}

.cta-text .section-title {
  color: var(--cream-50);
}

.cta-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(253, 248, 240, 0.7);
  max-width: 440px;
}

.cta-form-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 248, 240, 0.6);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--cream-50);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  padding: 0.875rem 1rem;
  border-radius: 0;
  transition: border-color 0.3s var(--ease-smooth), background 0.3s var(--ease-smooth);
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(253, 248, 240, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald-400, #34D399);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(253,248,240,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--emerald-900);
  color: var(--cream-50);
}

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

.btn-submit {
  background: var(--cream-50);
  color: var(--emerald-900);
  border: 1px solid var(--cream-50);
}

.btn-submit:hover {
  background: transparent;
  color: var(--cream-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--cream-50);
}

.form-success svg {
  color: #34D399;
  flex-shrink: 0;
}

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

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--text-primary);
  color: var(--cream-100);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(253, 248, 240, 0.3);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--cream-50);
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.5);
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.3s var(--ease-smooth);
}

.footer-links a:hover {
  color: var(--cream-50);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(245, 240, 232, 0.5);
  transition: color 0.3s var(--ease-smooth);
}

.footer-contact a:hover {
  color: var(--cream-50);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.3);
}

.footer-bottom a {
  color: rgba(245, 240, 232, 0.3);
  transition: color 0.3s var(--ease-smooth);
}

.footer-bottom a:hover {
  color: var(--cream-50);
}

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

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

/* ── MOBILE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2rem 2rem 4rem;
  }

  .hero-right {
    order: -1;
  }

  .hero-image-wrap {
    max-height: 45vh;
  }

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

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

  .split-section,
  .story-inner,
  .visit-inner,
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-image-wrap img,
  .story-img img {
    aspect-ratio: 4/3;
  }

  .story-img-2 {
    margin-top: 0;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-inner {
    padding: 0 1.25rem;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-inner {
    padding: 1.5rem 1.25rem 3rem;
  }

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

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

  .hero-actions .btn {
    text-align: center;
  }

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

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

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

  .cta-form-wrap {
    padding: 1.5rem;
  }

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

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

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

  .divider-quote {
    max-width: 100%;
  }
}
