/* Little Coupon — light theme, animations, responsive */

:root {
  --bg: #faf8f5;
  --bg-card: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --accent: #e85d04;
  --accent-hover: #d35400;
  --accent-soft: rgba(232, 93, 4, 0.12);
  --border: rgba(26, 26, 26, 0.08);
  --shadow: 0 8px 32px rgba(26, 26, 26, 0.08);
  --shadow-sm: 0 4px 16px rgba(26, 26, 26, 0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 72px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg);
  overflow: hidden;
  pointer-events: none;
}

.bg-mesh::before,
.bg-mesh::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float-blob 22s ease-in-out infinite;
}

.bg-mesh::before {
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  background: linear-gradient(135deg, #ffd6a5, #ff9e6d);
  top: -10%;
  right: -15%;
}

.bg-mesh::after {
  width: min(60vw, 440px);
  height: min(60vw, 440px);
  background: linear-gradient(225deg, #c8e7ff, #a8d8ea);
  bottom: -10%;
  left: -10%;
  animation-delay: -11s;
}

@keyframes float-blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, 6%) scale(1.05);
  }
  66% {
    transform: translate(-3%, -4%) scale(0.98);
  }
}

.bg-mesh__orb {
  position: absolute;
  width: min(40vw, 280px);
  height: min(40vw, 280px);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 214, 165, 0.35), rgba(255, 182, 193, 0.25));
  filter: blur(60px);
  top: 40%;
  left: 30%;
  animation: float-blob 18s ease-in-out infinite;
  animation-delay: -5s;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #fff8f0 0%, #fff 50%, #f0f7ff 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  text-align: center;
  animation: loader-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes loader-pop {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.page-loader__pizza {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: url("../favicon.svg") center/contain no-repeat;
  animation: loader-spin 1.2s ease-in-out infinite;
}

@keyframes loader-spin {
  0%,
  100% {
    transform: rotate(-8deg) scale(1);
  }
  50% {
    transform: rotate(8deg) scale(1.05);
  }
}

.page-loader__text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.js .main-content {
  animation: content-in 0.65s ease 0.15s both;
}

@keyframes content-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  transition: color var(--transition), transform var(--transition);
}

.logo:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

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

.logo__icon {
  width: 40px;
  height: 40px;
  background: url("../favicon.svg") center/contain no-repeat;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 0.1rem;
}

.logo__name {
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.logo__host {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: lowercase;
  transition: color var(--transition);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

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

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  position: relative;
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width var(--transition);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.main-content {
  flex: 1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}

.hero-slider-wrap {
  margin-bottom: 2.5rem;
}

.hero-slider {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 26, 26, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  background: #111;
  min-height: 400px;
}

.hero-slider__track {
  position: relative;
  min-height: 400px;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slider__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-slider__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}

.hero-slider__slide.is-active .hero-slider__bg {
  animation: hero-ken 14s ease-out both;
}

@keyframes hero-ken {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.hero-slider__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      115deg,
      rgba(255, 252, 248, 0.97) 0%,
      rgba(255, 252, 248, 0.88) 32%,
      rgba(255, 252, 248, 0.35) 55%,
      rgba(26, 26, 26, 0.25) 100%
    ),
    linear-gradient(180deg, transparent 55%, rgba(26, 26, 26, 0.45) 100%);
  pointer-events: none;
}

.hero-slider__inner {
  position: relative;
  z-index: 2;
  min-height: 400px;
  max-width: 560px;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2.5rem) 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slider__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-slider__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-slider__desc {
  margin: 0 0 1.35rem;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: var(--text-muted);
  max-width: 26rem;
  line-height: 1.55;
}

.hero-slider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-slider__cta-ghost {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(26, 26, 26, 0.1);
  color: var(--text);
}

.hero-slider__cta-ghost:hover {
  background: #fff;
  color: var(--accent);
}

.hero-slider__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0.65rem 0.75rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

.hero-slider__dots {
  display: flex;
  flex: 1;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
}

.hero-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), width var(--transition);
}

.hero-slider__dot.is-active {
  background: #fff;
  width: 26px;
  border-radius: 6px;
  box-shadow: 0 0 0 2px var(--accent);
}

.hero-slider__prev,
.hero-slider__next {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text);
  transition: background var(--transition), transform var(--transition), color var(--transition);
}

.hero-slider__prev:hover,
.hero-slider__next:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.06);
}

.hero-slider__controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-slider,
  .hero-slider__track,
  .hero-slider__inner {
    min-height: 360px;
  }

  .hero-slider__inner {
    padding-bottom: 4.75rem;
    max-width: none;
  }
}

.intro-panel,
.steps-section,
.faq-mini,
.stat-strip {
  margin-bottom: 2.5rem;
}

.intro-panel {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 1.65rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 720px) {
  .intro-panel {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
    padding: 1.75rem 2rem;
  }
}

.intro-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.intro-panel p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.intro-panel__aside {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-soft), rgba(168, 216, 234, 0.2));
  font-size: 0.9rem;
  color: var(--text);
}

.intro-panel__aside strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.stat-strip__item {
  text-align: center;
  padding: 1.1rem 0.75rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.stat-strip__value {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-strip__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.steps-section {
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.steps-section h2 {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
}

.steps-grid {
  display: grid;
  gap: 1.25rem;
}

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

.step-card {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
}

.step-card__num {
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.step-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.reviews-section {
  margin-bottom: 2.5rem;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(165deg, #fff 0%, #fff9f4 45%, #f4fbff 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.reviews-section__intro {
  margin-bottom: 1.25rem;
}

.reviews-section__intro .section-title {
  margin-bottom: 0.5rem;
}

.reviews-section__lead {
  margin: 0;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.reviews-slider {
  position: relative;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(26, 26, 26, 0.06);
}

.reviews-slider__viewport {
  overflow: hidden;
  width: 100%;
}

.reviews-slider__strip {
  display: flex;
  width: 200%;
  transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.reviews-slider__page {
  flex: 0 0 50%;
  box-sizing: border-box;
  display: flex;
  gap: 0.85rem;
  padding: 1rem 0.65rem 0.85rem;
  align-items: stretch;
}

.reviews-slider__card {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 1rem 0.85rem 1rem 0.75rem;
  background: linear-gradient(180deg, #fffdfb 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.04);
  display: flex;
  flex-direction: column;
}

.reviews-slider__quote {
  margin: 0;
  padding: 0 0 0 0.65rem;
  border-left: 3px solid var(--accent);
  flex: 1;
}

.reviews-slider__quote p {
  margin: 0;
  font-size: clamp(0.82rem, 1.65vw, 0.95rem);
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
}

.reviews-slider__cite {
  margin: 0.75rem 0 0;
  padding-left: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  font-style: normal;
}

@media (max-width: 720px) {
  .reviews-slider__page {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.85rem 0.5rem;
  }

  .reviews-slider__card {
    flex: none;
    width: 100%;
  }
}

.reviews-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.65rem 1rem 1rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.65);
}

.reviews-slider__dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.reviews-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(26, 26, 26, 0.18);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}

.reviews-slider__dot.is-active {
  background: var(--accent);
  width: 22px;
  border-radius: 5px;
  transform: none;
}

.reviews-slider__prev,
.reviews-slider__next {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.reviews-slider__prev:hover,
.reviews-slider__next:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.06);
}

.reviews-section__note {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.reviews-section__note a {
  color: var(--accent);
  font-weight: 600;
}

.faq-mini {
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.faq-mini h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.faq-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.section-title {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.pizza-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: card-rise 0.7s ease both;
}

.pizza-card:nth-child(1) { animation-delay: 0.05s; }
.pizza-card:nth-child(2) { animation-delay: 0.1s; }
.pizza-card:nth-child(3) { animation-delay: 0.15s; }
.pizza-card:nth-child(4) { animation-delay: 0.2s; }

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.pizza-card__img {
  height: 140px;
  background-size: cover;
  background-position: center;
}

.pizza-card__body {
  padding: 1.25rem;
}

.pizza-card__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.pizza-card__body p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

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

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--ghost {
  background: var(--accent-soft);
  color: var(--accent);
}

.btn--ghost:hover {
  background: rgba(232, 93, 4, 0.2);
}

.coming-soon {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.08), rgba(168, 216, 234, 0.2));
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

.coming-soon p {
  margin: 0;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.coming-soon a {
  color: var(--accent);
  font-weight: 700;
}

.page-hero {
  margin-bottom: 2rem;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.03em;
}

.page-hero .lead {
  margin: 0;
  color: var(--text-muted);
  max-width: 640px;
}

.prose {
  max-width: 720px;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text);
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}

.chain-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .chain-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.chain-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}

.chain-about {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.chain-about h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.chain-about p {
  margin: 0;
  color: var(--text-muted);
}

.chain-about a {
  color: var(--accent);
  font-weight: 600;
}

.coupon-list {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coupon-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}

.coupon-item:hover {
  border-color: rgba(232, 93, 4, 0.35);
}

.coupon-item__info strong {
  display: block;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.coupon-item__info span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
}

@media (min-width: 900px) {
  .contact-grid--split {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
    max-width: 960px;
  }
}

.contact-card {
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
}

.contact-form-wrap {
  background: var(--bg-card);
  padding: 1.5rem 1.5rem 1.65rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.contact-form__hint {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

@media (min-width: 520px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(232, 93, 4, 0.55);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

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

.form-field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-field--check input {
  width: auto;
  margin-top: 0.2rem;
}

.form-field--check label {
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1.45;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.form-success {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(45, 106, 79, 0.12);
  color: #1b4332;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.adv-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.adv-card:hover {
  transform: translateY(-2px);
}

.adv-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.adv-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.adv-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.site-footer {
  margin-top: auto;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem 2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-brand {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 360px;
  margin: 0;
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

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

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 320px;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
  }

  .site-nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a::after {
    display: none;
  }

}

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

  html {
    scroll-behavior: auto;
  }

  .js .main-content {
    animation: none;
  }

  .hero-slider__slide.is-active .hero-slider__bg {
    animation: none;
    transform: scale(1);
  }

  .reviews-slider__strip {
    transition: none;
  }
}
