:root {
  --ink: #171713;
  --paper: #fff9ed;
  --cream: #fff3dc;
  --yellow: #f8a91b;
  --yellow-deep: #e9940b;
  --garden-green: #103c16;
  --garden-dark: #071108;
  --charcoal: #11110f;
  --muted: #6d6254;
  --line: rgba(23, 23, 19, 0.18);
  --shadow: 0 24px 80px rgba(7, 17, 8, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #ded7c9;
  color: var(--ink);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.menu-board {
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 50%, rgba(248, 169, 27, 0.08), transparent 24rem),
    var(--paper);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(440px, 1.22fr);
  height: 470px;
  min-height: 470px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 17, 8, 1) 0%, rgba(7, 17, 8, 0.97) 34%, rgba(7, 17, 8, 0.72) 58%, rgba(7, 17, 8, 0.16) 100%),
    var(--garden-dark);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 75%, rgba(248, 169, 27, 0.22), transparent 32%),
    repeating-linear-gradient(125deg, transparent 0 32px, rgba(255, 255, 255, 0.018) 33px 34px);
  content: "";
}

.hero__brand {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 58px 0 58px clamp(32px, 5vw, 76px);
}

.hero__logo {
  width: 92px;
  height: 92px;
  margin-bottom: 28px;
  border: 6px solid var(--paper);
  border-radius: 7px;
  background: white;
  object-fit: contain;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 22px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.8rem, 8vw, 7.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.77;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--yellow);
  font-size: 0.58em;
  letter-spacing: 0.025em;
}

.hero__lead {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 249, 237, 0.84);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero__photo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: end center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.hero__photo img {
  width: min(880px, 112%);
  height: 100%;
  max-width: none;
  margin-right: -4%;
  margin-bottom: 0;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.98) contrast(1.02) drop-shadow(0 30px 22px rgba(0, 0, 0, 0.48));
  transform: rotate(-2deg);
}

.hero__stamp {
  position: absolute;
  right: clamp(24px, 4vw, 62px);
  top: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 114px;
  height: 114px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.hero__stamp::before {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(248, 169, 27, 0.48);
  border-radius: inherit;
  content: "";
}

.hero__stamp strong {
  display: block;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.03em;
}

.hero__stamp span {
  margin: 0;
}

.launch-banner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px clamp(28px, 5vw, 76px);
  border-top: 1px solid rgba(255, 249, 237, 0.15);
  background: var(--yellow);
  color: var(--charcoal);
}

.launch-banner span {
  padding: 6px 9px;
  border: 1px solid rgba(17, 17, 15, 0.24);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-banner strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.launch-banner p {
  justify-self: end;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
}

.intro {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.72fr);
  gap: 50px;
  align-items: end;
  padding: 52px clamp(28px, 5vw, 76px) 28px;
}

.intro h2,
.service-note h2 {
  margin-bottom: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.3rem, 6vw, 6rem);
  letter-spacing: -0.02em;
  line-height: 0.88;
  text-transform: uppercase;
}

.intro > p {
  max-width: 440px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  gap: 20px;
  padding: 12px clamp(28px, 5vw, 76px) 62px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(420px, 1.35fr) minmax(300px, 0.65fr);
  height: 300px;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
}

.product-card:nth-child(even) {
  grid-template-columns: minmax(300px, 0.65fr) minmax(420px, 1.35fr);
}

.product-card:nth-child(even) .product-card__photo {
  grid-column: 2;
}

.product-card:nth-child(even) .product-card__copy {
  grid-column: 1;
  grid-row: 1;
}

.product-card__photo {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.product-card__photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  content: "";
  pointer-events: none;
}

.product-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.product-card:hover .product-card__photo img {
  transform: scale(1.018);
}

.product-card__tag {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-card__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 44px);
}

.product-card__number {
  position: absolute;
  right: 28px;
  top: 18px;
  margin: 0;
  color: rgba(16, 60, 22, 0.1);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 5rem;
  line-height: 1;
}

.product-card h3 {
  position: relative;
  max-width: 330px;
  margin-bottom: 16px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.15rem);
  letter-spacing: -0.015em;
  line-height: 0.9;
  text-transform: uppercase;
}

.product-card__copy > p:not(.product-card__number) {
  max-width: 310px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.price {
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
  color: var(--garden-green);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-variant-numeric: tabular-nums;
  line-height: 0.78;
}

.price__currency {
  margin: 5px 6px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.price__amount {
  font-size: 4.8rem;
}

.price__cents {
  margin: 1px 0 0 3px;
  font-size: 1.75rem;
}

.service-note {
  display: grid;
  grid-template-columns: 130px 1fr minmax(280px, 0.7fr);
  gap: 44px;
  align-items: center;
  padding: 56px clamp(28px, 5vw, 76px);
  background:
    repeating-linear-gradient(125deg, transparent 0 32px, rgba(255, 255, 255, 0.018) 33px 34px),
    var(--garden-dark);
  color: var(--paper);
}

.service-note__mark {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 3.4rem;
  transform: rotate(-7deg);
}

.service-note h2 {
  font-size: clamp(2.65rem, 4vw, 4.6rem);
}

.service-note > p {
  margin-bottom: 0;
  color: rgba(255, 249, 237, 0.72);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 28px clamp(28px, 5vw, 76px);
  background: var(--yellow);
  color: var(--charcoal);
}

footer img {
  width: 54px;
  height: 54px;
  border: 3px solid var(--paper);
  border-radius: 5px;
  background: white;
}

footer strong,
footer span {
  display: block;
}

footer strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

footer span,
footer p {
  margin-bottom: 0;
  font-size: 0.8rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 520px;
  }

  .hero__brand {
    justify-content: flex-start;
    min-height: 520px;
    padding-right: 28px;
    padding-top: 40px;
  }

  .hero__logo {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 17vw, 6.8rem);
  }

  .hero__photo {
    display: none;
  }

  .hero__stamp {
    right: 24px;
    top: 36px;
    width: 92px;
    height: 92px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card,
  .product-card:nth-child(even) {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .product-card:nth-child(even) .product-card__photo,
  .product-card:nth-child(even) .product-card__copy {
    grid-column: auto;
    grid-row: auto;
  }

  .product-card__photo {
    aspect-ratio: 4 / 3;
  }

  .product-card__copy {
    min-height: 300px;
  }

  .service-note {
    grid-template-columns: 100px 1fr;
  }

  .service-note__mark {
    width: 92px;
    height: 92px;
    font-size: 2.6rem;
  }

  .service-note > p {
    grid-column: 2;
  }
}

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

  .hero__brand {
    min-height: 430px;
    padding: 28px 22px;
  }

  .hero__logo {
    width: 60px;
    height: 60px;
    border-width: 4px;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 20vw, 5.3rem);
  }

  .hero__lead {
    max-width: 250px;
    font-size: 0.92rem;
  }

  .hero__stamp {
    left: auto;
    right: 16px;
    top: 26px;
    bottom: auto;
    width: 78px;
    height: 78px;
    font-size: 0.58rem;
    transform: rotate(6deg);
  }

  .hero__stamp strong {
    font-size: 1.05rem;
  }

  .hero__stamp span {
    margin: 0;
  }

  .launch-banner {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 16px 22px 18px;
    text-align: center;
  }

  .launch-banner span {
    justify-self: center;
  }

  .launch-banner p {
    justify-self: center;
    max-width: 270px;
  }

  .intro {
    padding: 50px 22px 26px;
  }

  .intro h2 {
    font-size: 3.25rem;
  }

  .product-grid {
    gap: 18px;
    padding: 10px 16px 54px;
  }

  .product-card {
    border-radius: 8px;
  }

  .product-card__copy {
    min-height: 280px;
    padding: 30px 24px;
  }

  .product-card h3 {
    max-width: 245px;
    font-size: 2.65rem;
  }

  .product-card__number {
    right: 20px;
    top: 14px;
    font-size: 4rem;
  }

  .price__amount {
    font-size: 4.25rem;
  }

  .service-note {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 46px 24px;
  }

  .service-note__mark {
    width: 78px;
    height: 78px;
    font-size: 2.2rem;
  }

  .service-note > p {
    grid-column: auto;
  }

  footer {
    grid-template-columns: auto 1fr;
    padding: 22px;
  }

  footer p {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
