@font-face {
  font-family: "PP Migra";
  src: url("./fonts/PPMigra-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "PP Migra";
  src: url("./fonts/PPMigra-BoldItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial Old";
  src: url("./fonts/PPEditorialOldVariable-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial Old";
  src: url("./fonts/PPEditorialOldVariable-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --wine: #4b0308;
  --wine-deep: #300105;
  --cream: #f4ead8;
  --paper: #fffaf0;
  --teal: #009780;
  --orange: #ef7a18;
  --pink: #b21d68;
  --ink: #24120f;
  --line: rgba(75, 3, 8, 0.2);
  --title: "PP Migra", Georgia, serif;
  --body: "PP Editorial Old", Georgia, serif;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.52;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--wine);
  background: var(--paper);
  transform: translateY(-150%);
}

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

.section-shell {
  width: min(calc(100% - 52px), var(--max));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fffdf5;
  background: var(--wine);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 250, 240, 0.7) 0.6px, transparent 0.7px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.hero-art {
  position: absolute;
  inset: -10% -8% -22% 28%;
  width: 88%;
  height: 132%;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
  filter: saturate(1.08) contrast(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(48, 1, 5, 0.34);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - 70px), var(--max));
  min-height: 100svh;
  margin-inline: auto;
  flex-direction: column;
  padding: 33px 0 29px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 31px;
}

.logo {
  object-fit: contain;
}

.logo-cozinha {
  width: clamp(190px, 22vw, 300px);
}

.logo-mpumalanga {
  width: clamp(170px, 19vw, 270px);
}

.brand-line {
  width: min(12vw, 120px);
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
}

.hero-grid {
  display: grid;
  margin: auto 0;
  align-items: end;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(52px, 8.5vw, 143px);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.schedule-heading h2,
.service h2,
.about h2,
.chef-card h3 {
  margin: 0;
  font-family: var(--title);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(4.2rem, 9.2vw, 8.4rem);
  line-height: 0.78;
}

.hero h1 em,
.intro h2 em,
.schedule-heading h2 em,
.service h2 em,
.about h2 em {
  color: var(--orange);
  font-style: italic;
}

.hero h1 em,
.hero .eyebrow,
.hero-subtitle,
.date-kicker,
.date-number span,
.date-month,
.date-place,
.scroll-cue {
  color: #fffdf5;
}

.hero-subtitle {
  max-width: 680px;
  margin: 35px 0 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 540;
  line-height: 1.12;
}

.hero-actions,
.service-actions {
  display: flex;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 11px 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-light {
  color: var(--wine);
  background: var(--paper);
}

.hero .button-light {
  color: #fffdf5;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(75, 3, 8, 0.12);
  backdrop-filter: blur(8px);
}

.date-card {
  padding: clamp(31px, 3.3vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 2px;
  background: rgba(75, 3, 8, 0.68);
  backdrop-filter: blur(12px);
}

.date-kicker,
.date-month,
.date-place {
  margin: 0;
}

.date-kicker {
  color: #fffdf5;
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.date-number {
  display: flex;
  margin: 10px 0 0;
  align-items: center;
  gap: 14px;
  font-family: var(--title);
  font-size: clamp(4.8rem, 8vw, 7.4rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.date-number span {
  color: #fffdf5;
  font-family: var(--body);
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 0;
}

.date-month {
  color: #fffdf5;
  font-family: var(--title);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.date-card hr {
  margin: 31px 0 26px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.date-place {
  font-size: 1rem;
  line-height: 1.35;
}

.scroll-cue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fffdf5;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.section-nav {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  min-height: 64px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  align-items: stretch;
  gap: 37px;
  overflow-x: auto;
  color: var(--wine);
  background: rgba(244, 234, 216, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  font-size: 0.77rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.section-nav a:hover {
  color: var(--pink);
}

.intro,
.about {
  display: grid;
  padding-top: clamp(100px, 11vw, 165px);
  padding-bottom: clamp(100px, 11vw, 165px);
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(44px, 7.5vw, 121px);
}

.section-label {
  color: var(--wine);
}

.section-label span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 750;
}

.section-label p {
  margin: 15px 0 0;
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label-light {
  color: #fffaf0;
}

.intro h2,
.schedule-heading h2,
.service h2,
.about h2 {
  max-width: 980px;
  font-size: clamp(3.25rem, 6.2vw, 6.7rem);
  line-height: 0.9;
}

.intro-lead {
  max-width: 980px;
  margin: 55px 0 46px;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  font-weight: 520;
  line-height: 1.2;
}

.intro-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.intro-columns p,
.about article > p {
  margin: 0;
}

.legal-note {
  margin: 48px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: rgba(36, 18, 15, 0.68);
  font-size: 0.88rem;
}

.schedule {
  color: var(--paper);
  background: var(--wine);
}

.schedule-heading {
  display: grid;
  padding-top: clamp(100px, 11vw, 165px);
  padding-bottom: 88px;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(44px, 7.5vw, 121px);
}

.schedule-heading h2 em {
  color: #ef9a55;
}

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

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

.day {
  margin-bottom: 62px;
  padding: clamp(33px, 5.5vw, 79px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 2px;
}

.day-sunday {
  margin-bottom: 0;
  transform: translateY(1px);
}

.day-heading {
  display: flex;
  margin-bottom: 46px;
  padding-bottom: 35px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 2px solid var(--wine);
}

.day-week {
  margin: 0 0 4px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.day-heading h3 {
  margin: 0;
  color: var(--wine);
  font-family: var(--title);
  font-size: clamp(4rem, 7.5vw, 7.4rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.day-heading h3 span {
  font-size: 0.36em;
  letter-spacing: -0.02em;
}

.day-hours {
  margin: 0;
  padding: 9px 16px;
  color: #fff;
  background: var(--wine);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 730;
  letter-spacing: 0.06em;
}

.schedule-group {
  display: grid;
  padding: 35px 0;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: clamp(31px, 5.5vw, 84px);
  border-bottom: 1px solid var(--line);
}

.group-title p {
  margin: 12px 0 0;
  color: rgba(36, 18, 15, 0.64);
  font-size: 0.94rem;
  line-height: 1.25;
}

.group-tag {
  display: inline-flex;
  padding: 6px 11px 5px;
  color: #fff;
  border-radius: 999px;
  font-size: 0.71rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.tag-pink {
  background: var(--pink);
}

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

.tag-teal {
  background: var(--teal);
}

.event-row {
  display: grid;
  padding: 0 0 24px;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
}

.event-row:last-child {
  padding-bottom: 0;
}

.event-row time {
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.015em;
}

.event-row p {
  margin: -4px 0 0;
  font-size: 1.06rem;
  line-height: 1.36;
}

.event-row strong {
  color: var(--wine);
  font-weight: 790;
}

.event-row small {
  color: rgba(36, 18, 15, 0.64);
  font-size: 0.84em;
}

.fair-callout {
  display: grid;
  margin: 42px 0 15px;
  padding: clamp(26px, 4.4vw, 53px);
  align-items: center;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  gap: 33px;
  color: #fff;
  background: var(--pink);
}

.fair-callout-orange {
  background: var(--orange);
}

.fair-time {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.fair-callout h4,
.music-callout h4 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.fair-callout div p {
  margin: 8px 0 0;
  line-height: 1.3;
}

.music-callout {
  display: grid;
  margin-top: 46px;
  padding: clamp(31px, 5.5vw, 64px);
  color: #fff;
  background: var(--wine);
  grid-template-columns: 0.48fr 0.42fr 1fr;
  gap: 24px;
  align-items: end;
}

.music-callout-teal {
  background: var(--teal);
}

.music-callout > span {
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.music-callout time {
  color: #f7a9c9;
  font-weight: 780;
}

.music-callout h4 {
  grid-row: span 2;
}

.music-callout p {
  grid-column: 2;
  margin: 0;
  font-size: 0.9rem;
}

.service {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
}

.service-art {
  position: absolute;
  right: -20%;
  bottom: -28%;
  width: 72%;
  opacity: 0.38;
  mix-blend-mode: multiply;
}

.service-inner {
  position: relative;
  z-index: 1;
  display: grid;
  padding-top: clamp(100px, 11vw, 165px);
  padding-bottom: clamp(100px, 11vw, 165px);
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(44px, 7.5vw, 121px);
}

.service h2 em {
  color: var(--wine);
}

.service-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.service-item {
  min-height: 187px;
  padding: 29px;
  border-right: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.service-item span {
  display: block;
  margin-bottom: 15px;
  color: #bde7dd;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-item p {
  margin: 0;
  max-width: 430px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 560;
  line-height: 1.22;
}

.text-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 720;
  text-underline-offset: 5px;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(46px, 7.5vw, 110px);
}

.about h2 {
  margin-bottom: 42px;
}

.about article > .eyebrow {
  margin-bottom: clamp(32px, 3vw, 42px);
}

.about h2 em {
  color: var(--teal);
}

.about article > p:not(.eyebrow) {
  font-size: 1.1rem;
}

.about-links {
  display: flex;
  margin-top: 37px;
  flex-wrap: wrap;
  gap: 22px;
}

.about-links a {
  color: var(--wine);
  font-weight: 760;
  text-underline-offset: 5px;
}

.chef-card {
  align-self: start;
  padding: clamp(31px, 4.4vw, 51px);
  color: #fff;
  background: var(--wine);
}

.chef-card h3 {
  margin-bottom: 31px;
  color: #f9a9ca;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.92;
}

.chef-card p:last-child {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}

.footer {
  color: #fff;
  background: var(--wine-deep);
}

.footer-inner {
  display: grid;
  min-height: 253px;
  padding-top: 53px;
  padding-bottom: 53px;
  align-items: center;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 40px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 29px;
}

.footer-logos img:first-child {
  width: 190px;
}

.footer-logos img:last-child {
  width: 170px;
}

.footer p {
  margin: 0;
  color: #f4bfd5;
  font-family: var(--title);
  font-size: 1.4rem;
  line-height: 1.1;
}

.footer > a,
.footer-inner > a {
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.support-strip {
  padding: clamp(24px, 3.5vw, 52px) max(18px, calc((100vw - 1380px) / 2));
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.support-strip img {
  width: 100%;
  max-width: 1380px;
  margin-inline: auto;
}

@media (max-width: 980px) {
  .hero-art {
    inset: 6% -28% -12% 18%;
    width: 118%;
    height: 112%;
    opacity: 0.62;
  }

  .hero-shade {
    background: rgba(48, 1, 5, 0.42);
  }

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

  .date-card {
    width: min(100%, 500px);
  }

  .intro,
  .schedule-heading,
  .service-inner,
  .about {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 48px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-logos {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

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

  .section-shell,
  .hero-inner {
    width: min(calc(100% - 36px), var(--max));
  }

  .hero-inner {
    padding-top: 24px;
  }

  .brand-row {
    gap: 15px;
    justify-content: space-between;
  }

  .brand-line {
    display: none;
  }

  .logo-cozinha {
    width: 48%;
  }

  .logo-mpumalanga {
    width: 43%;
  }

  .hero-grid {
    margin-top: 88px;
    margin-bottom: 66px;
  }

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

  .hero-subtitle {
    font-size: 1.35rem;
  }

  .date-card {
    background: rgba(75, 3, 8, 0.78);
  }

  .section-nav {
    min-height: 56px;
    padding-inline: 16px;
    gap: 26px;
  }

  .intro,
  .schedule-heading,
  .service-inner,
  .about {
    padding-top: 90px;
    padding-bottom: 90px;
    grid-template-columns: 1fr;
    gap: 37px;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 13px;
  }

  .section-label p {
    margin: 0;
  }

  .intro h2,
  .schedule-heading h2,
  .service h2,
  .about h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .intro-lead {
    margin-top: 37px;
    font-size: 1.45rem;
  }

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

  .day {
    width: 100%;
    padding: 37px 18px;
    border-radius: 0;
  }

  .day-heading {
    padding-inline: 0;
  }

  .day-heading h3 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .schedule-group {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .event-row {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 15px;
  }

  .event-row p {
    font-size: 1rem;
  }

  .fair-callout {
    grid-template-columns: 1fr;
  }

  .music-callout {
    grid-template-columns: 1fr 1fr;
  }

  .music-callout h4 {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .music-callout p {
    grid-column: 1 / -1;
  }

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

  .service-item {
    min-height: 0;
  }

  .service-art {
    right: -55%;
    width: 150%;
  }

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

  .footer-logos {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .support-strip {
    padding: 24px 12px;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .service-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .day-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .event-row p {
    margin-top: 0;
  }

  .footer-logos img:first-child,
  .footer-logos img:last-child {
    width: min(100%, 210px);
  }
}

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

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