/* ============================================================
   Kopernik Polish Deli — Editorial Style
   Emerald + Cream | Playfair Display + Inter
   ============================================================ */

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

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

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 64px;
  }
}

/* ---------- SECTION TYPOGRAPHY ---------- */
.section-eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: 16px;
}

.section-eyebrow--dark {
  color: #10b981;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #064e3b;
  margin-bottom: 24px;
}

.section-heading--light {
  color: #f0fdf4;
}

.section-body--light {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #d1fae5;
  max-width: 560px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn--primary {
  background: #064e3b;
  color: #f0fdf4;
  border: 2px solid #064e3b;
}

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

.btn--ghost {
  background: transparent;
  color: #f0fdf4;
  border: 2px solid rgba(240, 253, 244, 0.4);
}

.btn--ghost:hover {
  border-color: #f0fdf4;
  background: rgba(240, 253, 244, 0.08);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(254, 253, 248, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(6, 78, 59, 0.08);
}

.nav.scrolled .nav__brand-name {
  color: #064e3b;
}

.nav.scrolled .nav__cta {
  color: #064e3b;
}

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

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

.nav__brand-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0fdf4;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(240, 253, 244, 0.5);
  border-radius: 8px;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.nav.scrolled .nav__brand-mark {
  color: #064e3b;
  border-color: #064e3b;
}

.nav__brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #f0fdf4;
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}

.nav__menu {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav__menu a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(240, 253, 244, 0.85);
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  position: relative;
}

.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #10b981;
  transition: width 0.3s ease;
}

.nav__menu a:hover {
  color: #f0fdf4;
}

.nav__menu a:hover::after {
  width: 100%;
}

.nav__cta {
  background: rgba(240, 253, 244, 0.12) !important;
  border: 1px solid rgba(240, 253, 244, 0.3) !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: rgba(240, 253, 244, 0.2) !important;
  border-color: rgba(240, 253, 244, 0.5) !important;
}

.nav.scrolled .nav__cta {
  background: #064e3b !important;
  border-color: #064e3b !important;
  color: #f0fdf4 !important;
}

/* Mobile toggle */
.nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #f0fdf4;
  transition: background 0.2s ease;
}

.nav__toggle:hover {
  background: rgba(240, 253, 244, 0.1);
}

.nav__toggle-icon {
  width: 22px;
  height: 22px;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon line:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: center;
  x1: "4"; y1: "7"; x2: "20"; y2: "7";
}

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

.nav__toggle[aria-expanded="true"] .nav__toggle-icon line:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: center;
  x1: "4"; y1: "17"; x2: "20"; y2: "17";
}

.nav.scrolled .nav__toggle {
  color: #064e3b;
}

@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    display: flex;
  }
}

/* Mobile menu */
@media (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 78, 59, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav__menu.open {
    transform: translateX(0);
  }

  .nav__menu a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: rgba(240, 253, 244, 0.9);
  }

  .nav__menu a:hover {
    color: #f0fdf4;
  }

  .nav__menu .nav__cta {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    margin-top: 16px;
    text-align: center;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(4, 120, 87, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(16, 185, 129, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(6, 78, 59, 0.6) 0%, transparent 70%),
    linear-gradient(160deg, #022c22 0%, #064e3b 35%, #047857 65%, #059669 100%);
  z-index: 0;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero__eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(110, 231, 183, 0.8);
  margin-bottom: 32px;
}

.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #f0fdf4;
  margin-bottom: 32px;
}

.hero__line--accent {
  font-style: italic;
  font-weight: 500;
  color: #6ee7b7;
}

.hero__sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.1875rem);
  line-height: 1.7;
  color: rgba(240, 253, 244, 0.75);
  max-width: 600px;
  margin: 0 auto 48px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(240, 253, 244, 0.4);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro {
  background: #f0fdf4;
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
}

.intro__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 24px;
  flex-wrap: wrap;
}

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

.intro__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #064e3b;
}

.intro__label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #047857;
  letter-spacing: 0.04em;
}

.intro__divider {
  width: 1px;
  height: 40px;
  background: rgba(6, 78, 59, 0.15);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .intro__inner {
    gap: 24px;
  }
  .intro__divider {
    display: none;
  }
  .intro__item {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 120px 0;
  background: #fefdf8;
}

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

.about__text {
  max-width: 560px;
}

.about__body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 20px;
}

.about__body:last-child {
  margin-bottom: 0;
}

.about__image {
  position: relative;
}

.about__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: #064e3b;
  border-radius: 12px;
  z-index: -1;
  opacity: 0.08;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* ============================================================
   MENU
   ============================================================ */
.menu {
  padding: 120px 0;
  background: #064e3b;
  position: relative;
  overflow: hidden;
}

.menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(4, 120, 87, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.menu__header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.menu__lead {
  margin: 0 auto;
}

.menu__categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.menu__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.menu__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.menu__card-icon {
  width: 48px;
  height: 48px;
  color: #6ee7b7;
  margin-bottom: 20px;
}

.menu__card-icon svg {
  width: 100%;
  height: 100%;
}

.menu__card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0fdf4;
  margin-bottom: 10px;
}

.menu__card-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(240, 253, 244, 0.65);
  margin-bottom: 20px;
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.menu__list-item {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #f0fdf4;
}

.menu__list-note {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(110, 231, 183, 0.7);
  margin-left: 8px;
}

.menu__list li {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.menu__card-note {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(110, 231, 183, 0.5);
}

.menu__disclaimer {
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  color: rgba(110, 231, 183, 0.4);
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu__categories {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 120px 0;
  background: #fefdf8;
}

.process__header {
  text-align: center;
  margin-bottom: 72px;
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.process__step {
  padding: 48px 0;
  border-bottom: 1px solid rgba(6, 78, 59, 0.1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.process__step:first-child {
  border-top: 1px solid rgba(6, 78, 59, 0.1);
}

.process__step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(6, 78, 59, 0.08);
  line-height: 1;
  padding-top: 8px;
}

.process__step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #064e3b;
  margin-bottom: 12px;
}

.process__step-body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #4b5563;
  max-width: 480px;
}

@media (min-width: 768px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 64px;
  }

  .process__step {
    padding: 40px 0;
  }

  .process__step:nth-child(2) {
    border-left: 1px solid rgba(6, 78, 59, 0.1);
  }

  .process__step:nth-child(3) {
    border-bottom: none;
  }

  .process__step:nth-child(4) {
    border-top: 1px solid rgba(6, 78, 59, 0.1);
    border-left: 1px solid rgba(6, 78, 59, 0.1);
  }
}

@media (min-width: 1024px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .process__step {
    border-left: none !important;
    border-bottom: none !important;
    border-top: none !important;
    text-align: center;
    padding: 32px 24px;
  }

  .process__step-num {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  .process__step-title {
    margin-bottom: 12px;
  }

  .process__step-body {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 0 0 120px;
  background: #fefdf8;
}

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

.gallery__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item--large {
  aspect-ratio: 16/9;
}

.gallery__item--tall {
  aspect-ratio: 2/3;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery__item--large {
    grid-column: span 2;
    aspect-ratio: 21/9;
  }

  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 2;
    aspect-ratio: 2/3;
  }
}

/* ============================================================
   VISIT
   ============================================================ */
.visit {
  padding: 120px 0;
  background: #f0fdf4;
}

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

.visit__info {
  max-width: 520px;
}

.visit__details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.visit__detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.visit__detail-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #059669;
  padding-top: 4px;
}

.visit__detail dd {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
}

.visit__detail a {
  color: #047857;
  border-bottom: 1px solid rgba(4, 120, 87, 0.2);
  transition: border-color 0.2s ease;
}

.visit__detail a:hover {
  border-color: #047857;
}

.visit__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(6, 78, 59, 0.12);
}

.visit__map-link {
  display: block;
  position: relative;
}

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

.visit__map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(6, 78, 59, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #f0fdf4;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.3s ease;
}

.visit__map-overlay svg {
  width: 20px;
  height: 20px;
}

.visit__map-link:hover .visit__map-overlay {
  background: rgba(6, 78, 59, 0.8);
}

@media (min-width: 768px) {
  .visit__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(4, 120, 87, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(16, 185, 129, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, #022c22 0%, #064e3b 50%, #047857 100%);
  text-align: center;
}

.cta__inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #f0fdf4;
  margin-bottom: 24px;
}

.cta__body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(240, 253, 244, 0.7);
  margin-bottom: 48px;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #022c22;
  padding: 72px 0 40px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 56px;
}

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

.footer__brand .nav__brand-mark {
  color: #6ee7b7;
  border-color: rgba(110, 231, 183, 0.3);
  width: 48px;
  height: 48px;
  font-size: 1.75rem;
}

.footer__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #f0fdf4;
}

.footer__tagline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: rgba(240, 253, 244, 0.5);
  line-height: 1.6;
}

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

.footer__nav a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(240, 253, 244, 0.6);
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: #6ee7b7;
}

.footer__bottom {
  border-top: 1px solid rgba(240, 253, 244, 0.08);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__bottom p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  color: rgba(240, 253, 244, 0.35);
  line-height: 1.6;
}

.footer__bottom a {
  color: rgba(110, 231, 183, 0.5);
  transition: color 0.2s ease;
}

.footer__bottom a:hover {
  color: #6ee7b7;
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
