/* FF Good Food link page */

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

:root {
  --bg: #1b1b1b;
  --bg-deep: #111111;
  --frame-width: 366px;
  --surface: #242424;
  --surface-hover: #292929;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #ffffff;
  --text-soft: #d8d8d8;
  --text-muted: rgba(255, 255, 255, 0.7);
  --accent: #6aaf24;
  --accent-bright: #8fc832;
  --accent-dark: #33570f;
  --shadow: rgba(0, 0, 0, 0.44);
  --bottom-nav-offset: 0px;
  --bottom-nav-height: 112px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

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

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--frame-width);
  min-height: 100dvh;
  padding-bottom: calc(var(--bottom-nav-height) + 24px + env(safe-area-inset-bottom, 0px));
  overflow: hidden;
  background:
    radial-gradient(330px 460px at 102% 92px, rgba(111, 143, 16, 0.72) 0%, rgba(71, 96, 10, 0.42) 35%, rgba(27, 27, 27, 0) 73%),
    var(--bg);
}

main {
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  height: 360px;
  min-height: 360px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  top: -64px;
  right: -120px;
  z-index: 0;
  width: 300px;
  height: 420px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(127, 157, 20, 0.55) 0%, rgba(75, 103, 12, 0.25) 44%, rgba(27, 27, 27, 0) 73%);
}

.hero-visual {
  --hero-translate-x: -50%;
  --hero-parallax-y: 0px;
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1;
  width: 276px;
  height: auto;
  pointer-events: none;
  transform: translate3d(var(--hero-translate-x), var(--hero-parallax-y), 0);
  will-change: transform;
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.telegram-pill {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 33px;
  min-width: 166px;
  padding: 3px 3px 3px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(9, 9, 9, 0.78);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.telegram-pill.header-scrolled {
  border-color: rgba(143, 200, 50, 0.48);
  box-shadow: 0 0 16px rgba(143, 200, 50, 0.2), 0 10px 22px rgba(0, 0, 0, 0.24);
}

.pill-tg-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.pill-tg-icon svg {
  width: 27px;
  height: 27px;
  display: block;
}

.hero-brand {
  position: absolute;
  top: 134px;
  right: 21px;
  z-index: 5;
  width: 166px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 11px;
}

.brand-logo {
  width: 79px;
  height: 79px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.brand-logo img {
  width: 79px;
  height: 79px;
  object-fit: contain;
  display: block;
}

.hero h1 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 45px;
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0;
  color: #ffffff;
  text-align: right;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.64);
}

.section {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intro {
  padding-bottom: 31px;
}

.intro-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.intro-copy p {
  color: var(--text-soft);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0;
}

.intro-copy .intro-sub {
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.tasting {
  padding-bottom: 31px;
}

.tasting-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(143, 200, 50, 0.36);
  border-radius: 8px;
  background: #20221d;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tasting-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--accent-bright);
}

.tasting-card > * {
  position: relative;
}

.tasting-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-bright);
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tasting-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.tasting-lead {
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.48;
}

.planerka-cta {
  display: flex;
  justify-content: stretch;
  margin-top: 18px;
}

.planerka-button {
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--accent-bright) 0%, #6fa51d 100%);
  box-shadow: 0 14px 30px rgba(143, 200, 50, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.26);
  cursor: pointer;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.planerka-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.74);
  outline-offset: 3px;
}

.planerka-button:active {
  transform: translateY(1px);
}

.tasting-list,
.tasting-format ul {
  list-style: none;
}

.tasting-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.tasting-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.tasting-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(143, 200, 50, 0.33);
  border-radius: 50%;
  background: rgba(143, 200, 50, 0.1);
  font-size: 15px;
}

.tasting-format {
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.tasting-format-title {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-bright);
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tasting-format li {
  position: relative;
  padding-left: 15px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.tasting-format li + li {
  margin-top: 8px;
}

.tasting-format li::before {
  content: '';
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-bright);
}

.tasting-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.tasting-action {
  min-width: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(143, 200, 50, 0.46);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.28;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.tasting-action span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label {
  flex: 0 0 auto;
  color: var(--accent);
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.divider {
  flex: 1;
  min-width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.link-card,
.contact-card {
  position: relative;
  overflow: hidden;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.link-card {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 17px;
}

.link-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.link-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.link-text {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.link-title {
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ext-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.42);
}

.contact-card {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 17px;
}

.address-card {
  gap: 12px;
  padding: 0 9px 0 17px;
}

.address-link {
  min-width: 0;
  min-height: 56px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  color: inherit;
  text-decoration: none;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  color: var(--accent);
  display: block;
}

.contact-label {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  overflow: hidden;
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.address-card .contact-value {
  white-space: normal;
}

.copy-address {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.42);
  background: transparent;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.copy-address svg {
  width: 16px;
  height: 16px;
  display: block;
}

.copy-address:hover,
.copy-address:focus-visible,
.copy-address.copied {
  color: var(--accent);
}

.copy-address:focus-visible {
  outline: 1px solid rgba(140, 197, 63, 0.7);
  outline-offset: 2px;
}

.map-preview {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f4f4;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 5px 18px;
}

.trust-logos img {
  width: auto;
  max-width: 96px;
  max-height: 77px;
  object-fit: contain;
  display: block;
}

.call-orbit-section {
  padding: 2px 20px 32px;
  display: flex;
  justify-content: center;
}

.call-orbit {
  position: relative;
  width: 184px;
  height: 184px;
  min-width: 184px;
  min-height: 184px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 50%, rgba(20, 28, 0, 0.95) 0 19%, rgba(42, 55, 0, 0.72) 20%, transparent 30%),
    conic-gradient(from 24deg, rgba(122, 157, 56, 0.82), rgba(152, 195, 54, 0.7), rgba(30, 48, 0, 0.94), rgba(122, 157, 56, 0.7), rgba(76, 114, 17, 0.58), rgba(122, 157, 56, 0.82));
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  text-decoration: none;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 0 72px rgba(0, 0, 0, 0.48), 0 20px 56px rgba(0, 0, 0, 0.32), 0 0 38px rgba(122, 157, 56, 0.18);
  contain: layout paint;
  transform: translateZ(0);
}

.call-orbit:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 0 72px rgba(0, 0, 0, 0.48), 0 0 0 2px rgba(152, 195, 54, 0.6), 0 20px 56px rgba(0, 0, 0, 0.32);
}

.call-orbit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px);
  background-size: 7px 7px;
  opacity: 0.5;
  filter: blur(0.4px);
  animation: dotDrift 24s ease-in-out infinite alternate;
}

.call-orbit::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background:
    radial-gradient(circle, transparent 0 37%, rgba(0, 0, 0, 0.36) 38% 41%, transparent 42%),
    radial-gradient(circle, transparent 0 58%, rgba(122, 157, 56, 0.22) 59% 61%, transparent 62%),
    radial-gradient(circle, transparent 0 74%, rgba(152, 195, 54, 0.18) 75% 77%, transparent 78%);
  box-shadow: 0 0 34px rgba(122, 157, 56, 0.28), 0 0 42px rgba(152, 195, 54, 0.18);
  filter: blur(1.8px);
  animation: callWaves 5.8s ease-in-out infinite;
}

.call-orbit-core {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(20, 28, 0, 0.9);
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.18), 0 0 28px rgba(122, 157, 56, 0.36);
  animation: callIconPulse 2.8s ease-in-out infinite, callButtonBreathe 5.8s ease-in-out infinite;
}

.call-orbit-core svg {
  animation: callIconRing 3.8s ease-in-out infinite;
  transform-origin: center;
}

.footer {
  width: 100%;
  padding: 33px 20px 32px;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-credit {
  color: rgba(143, 200, 50, 0.58);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.bottom-nav {
  position: fixed;
  left: 0;
  bottom: var(--bottom-nav-offset);
  z-index: 100;
  width: 100vw;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 9px max(24px, env(safe-area-inset-left)) calc(24px + env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-right));
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px 8px 0 0;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  will-change: bottom;
}

.nav-item {
  min-height: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--accent-bright);
  background: transparent;
  border: 1px solid var(--accent-bright);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.nav-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.nav-label {
  color: var(--accent-bright);
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

@keyframes dotDrift {
  from {
    transform: rotate(-2deg) scale(1.02);
  }
  to {
    transform: rotate(2deg) scale(1.06);
  }
}

@keyframes callWaves {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.78;
    transform: scale(1.16);
  }
}

@keyframes callButtonBreathe {
  0%,
  100% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes callIconPulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.18), 0 0 24px rgba(122, 157, 56, 0.28);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(122, 157, 56, 0.12), 0 0 36px rgba(152, 195, 54, 0.4);
  }
}

@keyframes callIconRing {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  8% {
    transform: rotate(-8deg) scale(1.04);
  }
  16% {
    transform: rotate(8deg) scale(1.04);
  }
  24% {
    transform: rotate(-5deg) scale(1.02);
  }
  32% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
}

.animate-in.visible {
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (hover: hover) and (pointer: fine) {
  .telegram-pill:hover,
  .link-card:hover,
  .contact-card:hover,
  .planerka-button:hover,
  .tasting-action:hover,
  .nav-item:hover {
    transform: translateY(-1px);
  }

  .link-card:hover,
  .contact-card:hover {
    background: var(--surface-hover);
    border-color: var(--line-strong);
  }

  .tasting-action:hover {
    border-color: var(--accent-bright);
    background: rgba(143, 200, 50, 0.1);
  }

  .planerka-button:hover {
    box-shadow: 0 18px 38px rgba(143, 200, 50, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: brightness(1.04);
  }

  .nav-item:hover {
    background: rgba(143, 200, 50, 0.09);
    box-shadow: 0 0 22px rgba(143, 200, 50, 0.17);
  }
}

@media (min-width: 760px) {
  :root {
    --frame-width: 100vw;
  }

  body {
    display: block;
    background:
      radial-gradient(680px 720px at 18% -8%, rgba(130, 160, 46, 0.86) 0%, rgba(104, 132, 38, 0.42) 38%, rgba(27, 27, 27, 0) 72%),
      var(--bg);
  }

  .bg-base {
    background:
      radial-gradient(740px 780px at 18% -10%, rgba(130, 160, 46, 0.62) 0%, rgba(104, 132, 38, 0.28) 40%, rgba(27, 27, 27, 0) 74%),
      var(--bg);
  }

  .page {
    width: 100%;
    max-width: none;
    background:
      radial-gradient(760px 840px at 17% -6%, rgba(135, 166, 50, 0.64) 0%, rgba(92, 119, 31, 0.34) 38%, rgba(27, 27, 27, 0) 72%),
      radial-gradient(680px 760px at 74% 18%, rgba(71, 96, 10, 0.42) 0%, rgba(27, 27, 27, 0) 70%),
      var(--bg);
  }

  .hero {
    width: min(100%, 1440px);
    height: clamp(720px, 68vw, 930px);
    min-height: 720px;
    margin: 0 auto;
    overflow: visible;
  }

  .hero::before {
    top: -190px;
    left: 135px;
    right: auto;
    width: 310px;
    height: 560px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(164, 194, 85, 0.62) 0%, rgba(126, 156, 55, 0.38) 42%, rgba(27, 27, 27, 0) 74%);
  }

  .hero-visual {
    --hero-translate-x: 0px;
    top: clamp(56px, 7vw, 108px);
    right: clamp(32px, 4vw, 56px);
    left: auto;
    width: min(43vw, 640px);
    height: auto;
    z-index: 1;
  }

  .hero-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .telegram-pill {
    top: 54px;
    right: clamp(44px, 5vw, 72px);
    min-width: 0;
    min-height: 43px;
    padding: 4px 5px 4px 18px;
    gap: 10px;
    font-size: 16px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
  }

  .pill-tg-icon,
  .pill-tg-icon svg {
    width: 34px;
    height: 34px;
  }

  .hero-brand {
    top: 58px;
    left: clamp(56px, 6vw, 84px);
    right: auto;
    width: auto;
    max-width: min(64vw, 820px);
    align-items: flex-start;
    gap: clamp(86px, 11vw, 150px);
  }

  .brand-logo,
  .brand-logo img {
    width: 96px;
    height: 96px;
  }

  .hero h1 {
    width: max-content;
    max-width: min(60vw, 820px);
    font-size: clamp(78px, 7.4vw, 118px);
    line-height: 0.86;
    text-align: left;
  }

  .section {
    z-index: 3;
    width: min(100%, 1120px);
    margin: 0 auto;
    padding-inline: 56px;
  }

  .intro {
    z-index: 4;
    margin-top: 0;
    padding-bottom: 56px;
  }

  .intro-copy {
    max-width: 760px;
  }

  .intro-copy p {
    font-size: clamp(28px, 3.1vw, 44px);
    line-height: 1.24;
  }

  .intro-copy .intro-sub {
    max-width: 620px;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.45;
  }

  .tasting {
    padding-bottom: 56px;
  }

  .tasting-card {
    max-width: 860px;
    padding: 30px;
  }

  .tasting-card h3 {
    max-width: 650px;
    font-size: clamp(34px, 3.6vw, 48px);
  }

  .tasting-lead {
    max-width: 680px;
    font-size: 18px;
  }

  .planerka-cta {
    justify-content: flex-start;
  }

  .planerka-button {
    width: auto;
    min-width: 280px;
    padding-inline: 28px;
  }

  .tasting-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .tasting-list li {
    font-size: 15px;
  }

  .tasting-format li {
    font-size: 14px;
  }

  .tasting-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .link-card {
    min-height: 82px;
  }

  .contact-card {
    min-height: 66px;
  }

  .map-preview {
    display: none;
  }

  .trust-logos {
    padding-top: 20px;
    padding-bottom: 32px;
  }

  .trust-logos img {
    max-width: 140px;
    max-height: 92px;
  }

  .bottom-nav {
    display: none;
  }
}

@media (max-width: 370px) {
  .hero {
    height: 360px;
    min-height: 360px;
  }

  .hero-visual {
    top: 5px;
    left: 0;
    width: 276px;
    height: auto;
  }

  .hero-visual img {
    width: 100%;
  }

  .telegram-pill {
    right: 20px;
    min-width: 166px;
    max-width: calc(100% - 40px);
    font-size: 13px;
  }

  .hero-brand {
    top: 134px;
    right: 21px;
    width: 166px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .intro-copy p {
    font-size: 21px;
  }

  .section {
    padding-inline: 18px;
  }

  .bottom-nav {
    gap: 10px;
    padding-inline: 18px;
  }

  .nav-label {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
