@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --orange: #ef5a2a;
  --orange-dark: #d94e22;
  --orange-soft: #fdeee6;
  --green: #2f6b4f;
  --green-dark: #224c3a;
  --green-soft: #e8f0eb;
  --ink: #2a2522;
  --muted: #655c56;
  --cream: #f8f3ea;
  --sand: #f2e8d5;
  --surface: #fdf9f3;
  --white: #ffffff;
  --border: #eadfce;
  --shadow: 0 24px 70px rgba(59, 37, 24, 0.12);
  --radius-lg: 36px;
  --radius-md: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(47, 107, 79, 0.35);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 em,
h2 em {
  color: var(--orange);
  font-style: normal;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(253, 249, 243, 0.84);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header[data-scrolled="true"] {
  border-color: rgba(234, 223, 206, 0.85);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(59, 37, 24, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 32px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 124px;
  height: 58px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-instagram) {
  position: relative;
  color: #4f4742;
}

.main-nav > a:not(.nav-instagram)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-instagram {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.nav-instagram:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(59, 37, 24, 0.08);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 150px 0 90px;
  overflow: hidden;
  background: var(--surface);
}

.hero::before {
  position: absolute;
  inset: auto auto -180px -160px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(239, 90, 42, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 120px;
  left: -130px;
  width: 360px;
  height: 360px;
  background: rgba(239, 90, 42, 0.08);
}

.hero-glow-two {
  right: 2%;
  bottom: -160px;
  width: 520px;
  height: 520px;
  background: rgba(47, 107, 79, 0.08);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.83fr);
  align-items: center;
  gap: clamp(58px, 8vw, 110px);
}

.hero-copy {
  padding: 30px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.eyebrow-green {
  color: var(--green);
}

.eyebrow-light {
  color: #ffd7c8;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(56px, 6.4vw, 88px);
  font-weight: 700;
  letter-spacing: -0.065em;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 15px 34px rgba(239, 90, 42, 0.26);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 18px 38px rgba(239, 90, 42, 0.32);
}

.button-quiet {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.66);
  color: var(--green);
}

.button-quiet:hover {
  border-color: rgba(47, 107, 79, 0.28);
  background: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 15px 34px rgba(15, 47, 34, 0.16);
}

.soon-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.soon-line strong {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.soon-line i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-visual {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
}

.hero-frame {
  position: relative;
  height: 590px;
  padding: 12px;
  border: 1px solid rgba(234, 223, 206, 0.95);
  border-radius: 260px 260px 42px 42px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-frame::after {
  position: absolute;
  inset: 30px -24px -28px 44px;
  z-index: -1;
  border-radius: 260px 260px 42px 42px;
  background: var(--orange-soft);
  content: "";
}

.hero-frame img {
  width: 100%;
  height: 100%;
  border-radius: 250px 250px 32px 32px;
  object-fit: cover;
  object-position: 50% 58%;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  padding: 13px 16px;
  border: 1px solid rgba(234, 223, 206, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 42px rgba(59, 37, 24, 0.16);
  backdrop-filter: blur(14px);
}

.floating-card-top {
  top: 25%;
  left: -48px;
}

.floating-card-bottom {
  right: -26px;
  bottom: 13%;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: var(--muted);
  font-size: 10px;
}

.floating-card strong {
  font-size: 14px;
}

.floating-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 20px;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border: 3px solid #c7dfcf;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px var(--green-soft);
}

.intro {
  background: var(--white);
}

.section-heading h2,
.how-copy h2,
.local-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 68px);
}

.intro-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  column-gap: 70px;
  margin-bottom: 58px;
}

.intro-heading .eyebrow {
  grid-column: 1 / -1;
}

.intro-heading h2,
.intro-heading p {
  margin-bottom: 0;
}

.intro-heading > p:last-child,
.heading-row > p,
.how-copy > p,
.faq-heading > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 340px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.feature-card::after {
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 190px;
  height: 190px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.13;
}

.feature-orange {
  background: var(--orange);
  color: var(--white);
}

.feature-green {
  background: var(--green);
  color: var(--white);
}

.feature-sand {
  background: var(--sand);
  color: var(--ink);
}

.feature-number {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.7;
}

.feature-symbol {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 26px;
}

.feature-sand .feature-symbol {
  border-color: rgba(42, 37, 34, 0.12);
  background: rgba(255, 255, 255, 0.5);
  color: var(--orange);
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-size: 25px;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  opacity: 0.84;
}

.how {
  background: var(--cream);
}

.how-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 9vw, 130px);
}

.how-copy {
  position: sticky;
  top: 125px;
  align-self: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

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

.steps li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.steps li:first-child {
  padding-top: 0;
}

.step-number {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 20px;
  background: var(--white);
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 12px 34px rgba(59, 37, 24, 0.08);
}

.steps h3 {
  margin-bottom: 9px;
  font-size: 24px;
}

.steps p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
}

.heading-row {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}

.heading-row h2,
.heading-row > p {
  margin-bottom: 0;
}

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: end;
}

.flavour-card {
  position: relative;
  height: 390px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream);
}

.flavour-card-tall {
  height: 460px;
}

.flavour-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(31, 24, 20, 0.82));
  content: "";
}

.flavour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.flavour-card:hover img {
  transform: scale(1.055);
}

.flavour-card div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: var(--white);
}

.flavour-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.8;
  text-transform: uppercase;
}

.flavour-card h3 {
  margin-bottom: 0;
  font-size: 23px;
}

.local {
  padding-top: 72px;
}

.local-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 590px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green-dark);
  color: var(--white);
}

.local-copy {
  align-self: center;
  padding: clamp(44px, 7vw, 84px);
}

.local-copy h2 em {
  color: #ff9a77;
}

.local-copy > p {
  max-width: 480px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.local-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.07) 0 2px, transparent 3px) 0 0 / 30px 30px,
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(239, 90, 42, 0.15));
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-ring-one { width: 210px; height: 210px; }
.map-ring-two { width: 380px; height: 380px; }
.map-ring-three { width: 560px; height: 560px; }

.map-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 10px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: var(--orange);
  background-clip: padding-box;
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.place {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.place-one {
  top: 23%;
  right: 12%;
}

.place-two {
  bottom: 22%;
  left: 10%;
}

.place i {
  width: 10px;
  height: 10px;
  border: 3px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: #ff9a77;
  box-shadow: 0 0 0 5px rgba(255, 154, 119, 0.12);
}

.place small,
.place strong {
  display: block;
}

.place small {
  font-size: 10px;
  opacity: 0.62;
}

.place strong {
  font-size: 14px;
}

.for-whom {
  background: var(--white);
}

.centered {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

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

.audience-card {
  position: relative;
  min-height: 380px;
  padding: clamp(34px, 5vw, 60px);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.audience-card::after {
  position: absolute;
  right: -90px;
  bottom: -140px;
  width: 350px;
  height: 350px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.1;
}

.audience-customer {
  background: var(--orange-soft);
  color: var(--ink);
}

.audience-producer {
  background: var(--green-soft);
  color: var(--green-dark);
}

.audience-label {
  display: inline-flex;
  margin-bottom: 70px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-card h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(28px, 3.5vw, 42px);
}

.audience-card p {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 8vw, 120px);
}

.faq-heading {
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  font-size: 20px;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 620px;
  margin: -5px 54px 24px 0;
  color: var(--muted);
}

.faq-list details p a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -240px;
  left: -140px;
  width: 520px;
  height: 520px;
}

.final-cta::after {
  right: -100px;
  bottom: -240px;
  width: 470px;
  height: 470px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-bottom: 22px;
}

.final-cta h2 em {
  color: #ffe1d5;
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.site-footer {
  padding: 70px 0 26px;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.55fr 0.85fr 1.1fr;
  align-items: center;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-brand img {
  width: 142px;
  height: 74px;
  padding: 3px 7px;
  border-radius: 12px;
  background: var(--cream);
  object-fit: contain;
}

.footer-inner > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #ff9a77;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.75fr;
    gap: 52px;
  }

  .hero-frame {
    height: 520px;
  }

  .floating-card-top {
    left: -30px;
  }

  .floating-card-bottom {
    right: -8px;
  }

  .feature-card {
    min-height: 360px;
  }

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

  .flavour-card,
  .flavour-card-tall {
    height: 420px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 84px 0;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .main-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 20px;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(59, 37, 24, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 6px;
    border-bottom: 1px solid var(--border);
  }

  .main-nav > a:not(.nav-instagram)::after {
    display: none;
  }

  .main-nav .nav-instagram {
    margin-top: 14px;
    border-bottom: 0;
    text-align: center;
  }

  .hero {
    padding-top: 122px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 620px);
    justify-self: center;
  }

  .hero-frame {
    height: 620px;
  }

  .intro-heading,
  .heading-row,
  .how-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-heading,
  .heading-row {
    gap: 24px;
  }

  .how-grid,
  .faq-grid {
    gap: 52px;
  }

  .how-copy {
    position: static;
  }

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

  .feature-card {
    min-height: 300px;
  }

  .feature-symbol {
    margin-bottom: 52px;
  }

  .local-card {
    grid-template-columns: 1fr;
  }

  .local-map {
    min-height: 460px;
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 108px;
    height: 52px;
  }

  .main-nav {
    inset-block-start: 70px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 72px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .soon-line {
    gap: 9px;
  }

  .hero-frame {
    height: 470px;
    border-radius: 190px 190px 32px 32px;
  }

  .hero-frame img {
    border-radius: 180px 180px 22px 22px;
  }

  .hero-frame::after {
    inset: 24px -12px -18px 24px;
    border-radius: 190px 190px 32px 32px;
  }

  .floating-card {
    min-width: 0;
    padding: 10px 12px;
  }

  .floating-card-top {
    top: 30%;
    left: -6px;
  }

  .floating-card-bottom {
    right: -3px;
    bottom: 9%;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .how-copy h2,
  .local-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: clamp(39px, 11vw, 52px);
  }

  .feature-card {
    min-height: 320px;
    padding: 24px;
  }

  .steps li {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .steps h3 {
    font-size: 21px;
  }

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

  .flavour-card,
  .flavour-card-tall {
    height: 390px;
  }

  .local {
    padding-top: 20px;
  }

  .local-card {
    width: min(calc(100% - 20px), var(--container));
    border-radius: 26px;
  }

  .local-copy {
    padding: 46px 28px;
  }

  .local-map {
    min-height: 390px;
  }

  .place-one {
    top: 16%;
    right: 5%;
  }

  .place-two {
    bottom: 15%;
    left: 5%;
  }

  .audience-card {
    min-height: 380px;
    padding: 34px 26px;
    border-radius: 26px;
  }

  .audience-label {
    margin-bottom: 62px;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .final-cta {
    padding: 84px 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

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