/* ========== ROOT / RESET ========== */
:root {
  --bg: #fdf6ec;
  --bg-cream: #f5e9d3;
  --bg-card: #ffffff;
  --text: #3d2817;
  --text-soft: #6b5444;
  --text-muted: #a08775;
  --primary: #c87f3d;
  --primary-dark: #a8651f;
  --primary-soft: #f3d9bb;
  --accent: #e85d4e;
  --accent-soft: #ffd8d2;
  --green: #7ba94c;
  --yellow: #f4c542;
  --border: #ebd9c0;
  --shadow-sm: 0 4px 12px rgba(141, 95, 50, 0.08);
  --shadow-md: 0 12px 32px rgba(141, 95, 50, 0.12);
  --shadow-lg: 0 24px 56px rgba(141, 95, 50, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --font-body: 'Quicksand', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(232, 93, 78, 0.05) 0, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(200, 127, 61, 0.06) 0, transparent 35%);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 700;
  color: var(--primary);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-200%);
  width: calc(100% - 32px);
  max-width: 1280px;
  z-index: 1000;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease);
}

.header.visible {
  transform: translateX(-50%) translateY(0);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
}

.logo__cup {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  border-radius: 50%;
  color: var(--primary-dark);
  transform: rotate(-6deg);
  flex-shrink: 0;
}

.logo__cup svg {
  width: 20px;
  height: 20px;
}

.logo__text em {
  font-size: 28px;
  margin-left: -2px;
}

.nav {
  display: none;
  gap: 28px;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 4px 2px;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.3s var(--ease);
}

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

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(200, 127, 61, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 12px 28px rgba(200, 127, 61, 0.45);
  background: var(--primary-dark);
  color: #fff;
}

.btn--ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px) rotate(1deg);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 100px;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.55;
}

.hero__blob--1 {
  top: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: var(--primary-soft);
}

.hero__blob--2 {
  bottom: -120px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: var(--accent-soft);
}

.hero__blob--3 {
  top: 30%;
  right: 20%;
  width: 280px;
  height: 280px;
  background: rgba(244, 197, 66, 0.25);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.7s var(--ease) both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(123, 169, 76, 0.25);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s var(--ease) both;
}

.hero__title-script {
  display: inline-block;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.2em;
  color: var(--primary);
  transform: rotate(-3deg);
  position: relative;
}

.hero__title-script::after {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 8%;
  height: 14px;
  background: var(--yellow);
  opacity: 0.55;
  z-index: -1;
  border-radius: 999px;
  transform: rotate(-1deg);
}

.hero__desc {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 36px;
  animation: fadeUp 0.7s 0.2s var(--ease) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
  animation: fadeUp 0.7s 0.3s var(--ease) both;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  animation: fadeUp 0.7s 0.4s var(--ease) both;
}

.hero__feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
}

.hero__feature-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.hero__cup {
  position: absolute;
  top: 22%;
  right: 6%;
  z-index: 0;
  display: none;
}

@media (min-width: 1100px) {
  .hero__cup {
    display: block;
  }
}

.hero__cup-svg {
  width: 160px;
  height: 160px;
  color: var(--primary);
  transform: rotate(-12deg);
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 12px 24px rgba(141, 95, 50, 0.3));
}

.hero__steam {
  position: absolute;
  width: 6px;
  height: 40px;
  background: linear-gradient(to top, transparent, rgba(141, 95, 50, 0.5));
  border-radius: 4px;
  top: -10px;
}

.hero__steam--1 { left: 30%; animation: steam 2.5s ease-in-out infinite; }
.hero__steam--2 { left: 50%; animation: steam 2.8s ease-in-out 0.4s infinite; }
.hero__steam--3 { left: 70%; animation: steam 2.2s ease-in-out 0.8s infinite; }

/* ========== SECTIONS ========== */
.section {
  padding: 100px 24px;
  position: relative;
}

.section--cream {
  background: var(--bg-cream);
}

.section--cream::before,
.section--cream::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--bg);
  -webkit-mask: radial-gradient(20px at 20px 50%, transparent 99%, #000 100%) -20px / 40px 100%;
          mask: radial-gradient(20px at 20px 50%, transparent 99%, #000 100%) -20px / 40px 100%;
}

.section--cream::before {
  top: -1px;
  transform: rotate(180deg);
}

.section--cream::after {
  bottom: -1px;
}

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

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__label {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 8px;
  transform: rotate(-2deg);
  display: inline-block;
}

.section__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
}

.section__desc {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 520px;
  margin: 16px auto 0;
}

/* ========== FEATURES ========== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-md);
}

.feature-card--1:hover { transform: translateY(-8px) rotate(-2deg); }
.feature-card--2:hover { transform: translateY(-8px) rotate(0); }
.feature-card--3:hover { transform: translateY(-8px) rotate(2deg); }

.feature-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: wiggle 6s ease-in-out infinite;
  transform-origin: center;
}

.feature-card__icon svg {
  width: 36px;
  height: 36px;
}

.feature-card--2 .feature-card__icon {
  background: var(--accent-soft);
  color: var(--accent);
  animation-delay: 1s;
}

.feature-card--3 .feature-card__icon {
  background: rgba(244, 197, 66, 0.3);
  color: #c89e22;
  animation-delay: 2s;
}

.feature-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card__text {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ========== STATS ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.3s var(--ease);
}

.stat:hover {
  transform: scale(1.04);
}

.stat--accent {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.stat__value {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat--accent .stat__value {
  color: #fff;
}

.stat__label {
  font-size: 15px;
  color: var(--text-soft);
}

.stat--accent .stat__label {
  color: rgba(255, 255, 255, 0.9);
}

/* ========== REVIEWS ========== */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.review-card:nth-child(odd) {
  transform: rotate(-0.8deg);
}

.review-card:nth-child(even) {
  transform: rotate(0.8deg);
}

.review-card:hover {
  transform: translateY(-6px) rotate(0);
  box-shadow: var(--shadow-md);
}

.review-card__quote {
  position: absolute;
  top: -8px;
  left: 24px;
  font-family: var(--font-script);
  font-size: 80px;
  line-height: 1;
  color: var(--primary-soft);
}

.review-card__text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
  margin: 16px 0 24px;
  position: relative;
  z-index: 1;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

.review-card__info {
  flex: 1;
}

.review-card__name {
  font-weight: 700;
  font-size: 15px;
}

.review-card__rating {
  color: var(--yellow);
  font-size: 15px;
  letter-spacing: 1px;
}

/* ========== MENU ========== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.menu-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 18px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-6px) rotate(-2deg);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.menu-card--highlight {
  background: var(--primary-soft);
  border-color: var(--primary);
}

.menu-card__badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-script);
  font-size: 18px;
  padding: 2px 14px;
  border-radius: 999px;
  transform: rotate(8deg);
  box-shadow: 0 4px 12px rgba(232, 93, 78, 0.35);
}

.menu-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease);
}

.menu-card__icon svg {
  width: 32px;
  height: 32px;
}

.menu-card--highlight .menu-card__icon {
  background: #fff;
}

.menu-card:hover .menu-card__icon {
  transform: scale(1.15) rotate(-10deg);
}

.menu-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.menu-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
}

/* ========== LOCATIONS ========== */
.locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .locations {
    grid-template-columns: 340px 1fr;
  }
}

.locations__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 8px;
}

.locations__list::-webkit-scrollbar {
  width: 6px;
}

.locations__list::-webkit-scrollbar-track {
  background: transparent;
}

.locations__list::-webkit-scrollbar-thumb {
  background: var(--primary-soft);
  border-radius: 3px;
}

.location-group {
  margin-bottom: 4px;
}

.location-group__title {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 10px;
  padding-left: 8px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease;
  margin-bottom: 8px;
}

.location-item:hover,
.location-item.active {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateX(4px);
}

.location-item__pin {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.location-item__pin svg {
  width: 20px;
  height: 20px;
}

.location-item:hover .location-item__pin,
.location-item.active .location-item__pin {
  background: var(--primary);
  color: #fff;
}

.location-item__info {
  flex: 1;
}

.location-item__address {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}

.location-item__status {
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}

#map {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.leaflet-container {
  background: var(--bg-cream) !important;
  font-family: var(--font-body) !important;
}

.leaflet-control-zoom a {
  background: #fff !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
  border-radius: 8px !important;
}

.leaflet-control-attribution {
  display: none;
}

.leaflet-popup-content-wrapper {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.leaflet-popup-tip {
  background: #fff;
}

.leaflet-popup-content {
  margin: 14px 18px;
  font-size: 14px;
  font-family: var(--font-body);
}

/* ========== CTA / FORM ========== */
.cta-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta-box::before,
.cta-box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.45;
}

.cta-box::before {
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: var(--primary-soft);
}

.cta-box::after {
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: var(--accent-soft);
}

.cta-box__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  position: relative;
}

.cta-box__desc {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 32px;
  position: relative;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  position: relative;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 540px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding-left: 4px;
}

.form__optional {
  color: var(--text-muted);
  font-weight: 400;
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form__input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}

.form__input::placeholder {
  color: var(--text-muted);
}

.form__submit {
  width: 100%;
  padding: 18px;
  margin-top: 8px;
  font-size: 16px;
}

.form__note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ========== FAQ ========== */
.faq {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.faq-item__question {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__q {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.faq-item__q-icon {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-item__answer {
  padding: 0 26px 22px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--text);
  color: #fff;
  padding: 64px 24px 28px;
  margin-top: 40px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

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

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.footer__logo em {
  color: var(--yellow);
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.footer__column h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: 14px;
}

.footer__column a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.footer__column a:hover {
  color: var(--yellow);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__heart {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
}

.footer__social a:hover {
  background: var(--yellow);
  color: var(--text);
  transform: translateY(-3px) rotate(-6deg);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes float {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-12deg) translateY(-14px); }
}

@keyframes wiggle {
  0%, 92%, 100% { transform: rotate(0); }
  94% { transform: rotate(-12deg); }
  96% { transform: rotate(10deg); }
  98% { transform: rotate(-6deg); }
}

@keyframes steam {
  0% { transform: translateY(0) scaleY(0.5); opacity: 0; }
  30% { opacity: 0.7; }
  100% { transform: translateY(-60px) scaleY(1.2); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
