:root {
  --red: #c31c28;
  --red-deep: #9f1420;
  --orange: #ec6d16;
  --green: #2f8f46;
  --gold: #f4b83e;
  --ink: #242424;
  --muted: #6c625d;
  --soft: #fff7ed;
  --white: #ffffff;
  --line: rgba(36, 36, 36, 0.14);
  --shadow: 0 20px 60px rgba(36, 36, 36, 0.12);
  --title: "Outfit", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  letter-spacing: 0;
}

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

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

.motion-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .scroll-reveal.reveal-left {
  transform: translateX(-24px);
}

.motion-ready .scroll-reveal.reveal-right {
  transform: translateX(24px);
}

.motion-ready .scroll-reveal.reveal-scale {
  transform: translateY(18px) scale(0.96);
}

.motion-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.motion-ready .hero-content {
  animation: heroTextIn 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-ready .hero-gallery {
  animation: heroVisualIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateX(24px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(108px, 14vw, 150px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  padding: 12px 0;
}

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

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-action svg,
.button svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  stroke-width: 2.4;
}

.header-action {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 6vw, 74px);
  min-height: calc(86svh - 78px);
  padding: clamp(42px, 6vw, 76px) clamp(20px, 6vw, 88px);
  overflow: hidden;
  background: var(--soft);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--title);
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4.9vw, 4.45rem);
  line-height: 0.95;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.hero-copy {
  width: min(520px, 100%);
  margin-bottom: 26px;
  color: #423b37;
  font-size: clamp(1rem, 1.55vw, 1.14rem);
  line-height: 1.52;
}

.hero-gallery {
  position: relative;
  z-index: 2;
  min-height: clamp(330px, 42vw, 470px);
}

.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 10% -12% 2% 18%;
  border-radius: 8px;
  background: var(--orange);
  transform: rotate(4deg);
}

.hero-photo-main,
.hero-photo-small {
  position: absolute;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-photo-main {
  inset: 0 8% 8% 2%;
  width: 72%;
  height: 82%;
}

.hero-photo-small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 44%;
  border: 8px solid var(--soft);
}

.hero-badge {
  position: absolute;
  left: 0;
  bottom: 13%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--red);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.hero-badge svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.6;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(195, 28, 40, 0.22);
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button-light {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.button:hover,
.header-action:hover {
  transform: translateY(-1px);
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--white);
}

.event-strip div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 24px clamp(18px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.event-strip svg {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
  color: var(--gold);
  stroke-width: 2.4;
}

.event-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-strip strong {
  display: block;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.18;
}

.section {
  padding: clamp(62px, 9vw, 118px) clamp(20px, 6vw, 88px);
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}

.intro-copy p:not(.section-kicker),
.tasting-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.75;
}

.intro-photo {
  width: 100%;
  height: clamp(260px, 35vw, 420px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.products {
  background: var(--soft);
}

.section-heading {
  max-width: 770px;
  margin-bottom: clamp(28px, 5vw, 50px);
}

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

.product-card {
  min-height: 270px;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.product-card svg {
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  stroke-width: 2.2;
}

.product-card p {
  margin-bottom: 0;
  line-height: 1.6;
}

.product-red {
  background: var(--red);
}

.product-orange {
  background: var(--orange);
}

.product-green {
  background: var(--green);
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.steps article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps svg {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  color: var(--orange);
  stroke-width: 2.25;
}

.steps span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-family: var(--title);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 800;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tasting {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: center;
  background: var(--gold);
}

.tasting-photo {
  width: 100%;
  height: clamp(300px, 42vw, 520px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.tasting .section-kicker {
  color: var(--red-deep);
}

.tasting-copy p {
  color: rgba(36, 36, 36, 0.76);
}

.tasting-list {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  min-height: auto;
  margin: 6px 0 0;
  padding: 30px 0 8px;
  list-style: none;
}

.tasting-list::before {
  content: none;
}

.tasting-list li {
  --step-color: var(--orange);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "number copy icon";
  column-gap: 16px;
  align-self: start;
  align-items: center;
  min-height: 126px;
  padding: 20px;
  border: 1px solid rgba(36, 36, 36, 0.13);
  border-top: 5px solid var(--step-color);
  border-radius: 8px;
  background: #fff3dc;
  box-shadow: 0 18px 38px rgba(36, 36, 36, 0.11);
}

.tasting-list li:nth-child(1) {
  --step-color: var(--red);
  grid-column: 1 / span 1;
  grid-row: 1;
}

.tasting-list li:nth-child(2) {
  --step-color: var(--orange);
  grid-column: 2 / span 1;
  grid-row: 1;
}

.tasting-list li:nth-child(3) {
  --step-color: var(--green);
  grid-column: 3 / span 1;
  grid-row: 1;
}

.tasting-list li:nth-child(4) {
  --step-color: var(--orange);
  grid-column: 3 / span 1;
  grid-row: 2;
}

.tasting-list li:nth-child(5) {
  --step-color: var(--red);
  grid-column: 2 / span 1;
  grid-row: 2;
}

.tasting-list li span {
  position: relative;
  z-index: 1;
  display: grid;
  grid-area: number;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(36, 36, 36, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--step-color);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 4px rgba(36, 36, 36, 0.04);
}

.tasting-list li svg {
  grid-area: icon;
  justify-self: end;
  width: 34px;
  height: 34px;
  color: var(--step-color);
  stroke-width: 2.25;
}

.tasting-list li div {
  grid-area: copy;
}

.tasting-list li strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.08;
}

.tasting-list li small {
  color: rgba(36, 36, 36, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--red-deep);
  color: var(--white);
}

.contact .section-kicker {
  color: var(--gold);
}

.contact h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(2.05rem, 3.8vw, 3.35rem);
  line-height: 1.05;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 88px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .event-strip,
  .product-grid,
  .steps,
  .intro-grid,
  .tasting,
  .contact {
    grid-template-columns: 1fr;
  }

  .event-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .steps article {
    min-height: auto;
  }

  .steps span,
  .product-card svg {
    margin-bottom: 22px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .tasting-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
    padding: 8px 0 0 64px;
  }

  .tasting-list::before {
    inset: 20px auto 20px 21px;
    width: 2px;
    background: rgba(36, 36, 36, 0.22);
  }

  .tasting-list li,
  .tasting-list li:nth-child(1),
  .tasting-list li:nth-child(2),
  .tasting-list li:nth-child(3),
  .tasting-list li:nth-child(4),
  .tasting-list li:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr auto;
    grid-template-areas: "copy icon";
    align-self: stretch;
  }

  .tasting-list li span {
    position: absolute;
    left: -64px;
    top: 22px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    gap: 12px;
  }

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

  .header-action {
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.7rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }

  .product-card {
    min-height: 230px;
  }

  .hero-gallery {
    min-height: 340px;
  }

  .hero-photo-main {
    inset: 0 12% 8% 0;
    width: 76%;
    height: 80%;
  }

  .hero-photo-small {
    width: 52%;
    height: 42%;
  }

  .footer {
    flex-direction: column;
  }
}

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

  .motion-ready .scroll-reveal,
  .motion-ready .hero-content,
  .motion-ready .hero-gallery {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
