@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap");
/* ============================================================
   CHEF DANIE
   Main Stylesheet
============================================================ */


/* ============================================================
   ROOT / BRAND COLORS
============================================================ */

:root {
  --green-deep: #0c1813;
  --green-rich: #13251c;
  --green-soft: #21362a;

  --cream: #f2eee5;
  --cream-light: #f8f5ef;
  --ivory: #ebe5da;

  --gold: #bea46d;
  --gold-light: #d5c096;

  --ink: #11130f;
  --charcoal: #171914;

  --white: #ffffff;

  --border-light: rgba(255, 255, 255, 0.15);
  --border-dark: rgba(20, 25, 20, 0.15);

  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;

  --page-padding: 5vw;
}


/* ============================================================
   RESET
============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--green-deep);
  color: var(--cream);

  font-family: var(--sans);

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}


/* ============================================================
   HEADER
============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 96px;

  padding: 0 var(--page-padding);

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  z-index: 1000;

  border-bottom: 1px solid transparent;

  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    height 0.4s ease,
    backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  height: 78px;

  background: rgba(9, 18, 14, 0.92);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.brand {
  justify-self: start;

  font-size: 15px;
  font-weight: 500;

  letter-spacing: 0.28em;

  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(24px, 3vw, 52px);
}

.main-nav a {
  position: relative;

  padding: 12px 0;

  font-size: 10px;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.17em;

  opacity: 0.88;
}

.main-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 5px;

  width: 0;
  height: 1px;

  background: var(--gold-light);

  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  justify-self: end;

  padding: 15px 23px;

  border: 1px solid rgba(211, 189, 141, 0.72);

  font-size: 10px;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.16em;

  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.header-cta:hover {
  background: var(--gold-light);
  color: var(--green-deep);
}


/* ============================================================
   MOBILE MENU BUTTON
============================================================ */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 0;

  background: transparent;
  border: 0;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 25px;
  height: 1px;

  margin: 6px auto;

  background: var(--cream);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}


/* ============================================================
   HERO
============================================================ */

.hero {
  position: relative;

  min-height: 100svh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--green-deep);
}

.hero-image {
  position: absolute;
  inset: 0;

  background-image:
    url("../assets/images/hero-chef-danie.jpg");

  background-size: cover;
  background-position: center 28%;

  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 10, 7, 0.95) 0%,
      rgba(6, 14, 10, 0.82) 26%,
      rgba(8, 18, 13, 0.38) 53%,
      rgba(8, 15, 11, 0.14) 78%,
      rgba(8, 15, 11, 0.24) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 8, 5, 0.35) 0%,
      transparent 38%,
      rgba(3, 8, 5, 0.35) 100%
    );
}

.hero-content {
  position: relative;

  z-index: 2;

  width: min(650px, 46vw);

  margin-left: 8vw;
  margin-top: 80px;
}

.eyebrow,
.section-kicker {
  margin: 0;

  font-size: 9px;
  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 0.27em;
}

.eyebrow {
  color: rgba(244, 239, 228, 0.78);
}

.hero-rule,
.small-rule {
  width: 28px;
  height: 1px;

  margin: 23px 0 21px;

  background: var(--gold);
}

.hero-title {
  margin: 0;

  max-width: 680px;

  font-family: var(--serif);

  font-size: clamp(68px, 7.1vw, 128px);
  font-weight: 400;

  line-height: 0.95;

  letter-spacing: -0.04em;
}

.hero-description {
  max-width: 390px;

  margin: 30px 0 0;

  font-size: 14px;
  font-weight: 300;

  line-height: 1.8;

  color: rgba(245, 241, 232, 0.78);
}

.hero-actions {
  margin-top: 39px;

  display: flex;
  align-items: center;

  gap: 37px;
}

.button {
  min-height: 54px;

  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 42px;

  font-size: 10px;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.16em;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

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

.button-light {
  background: var(--cream);

  color: var(--green-deep);
}

.button-light:hover {
  background: var(--gold-light);
}

.button-arrow {
  font-size: 17px;
}

.text-link,
.gold-link {
  display: inline-flex;
  align-items: center;

  gap: 29px;

  font-size: 9px;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.text-link {
  color: rgba(250, 246, 238, 0.83);
}

.gold-link {
  color: var(--gold-light);
}

.text-link span:last-child,
.gold-link span:last-child {
  font-size: 16px;

  transition: transform 0.3s ease;
}

.text-link:hover span:last-child,
.gold-link:hover span:last-child {
  transform: translateX(5px);
}

.scroll-indicator {
  position: absolute;

  z-index: 3;

  left: 50%;
  bottom: 25px;

  width: 47px;
  height: 47px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;

  font-size: 18px;

  transform: translateX(-50%);
}


/* ============================================================
   TRUSTED BY
============================================================ */

.trusted-strip {
  position: relative;
  z-index: 4;

  background: var(--cream-light);
  color: var(--ink);

  border-bottom: 1px solid var(--border-dark);
}

.trusted-inner {
  width: min(1450px, 92%);
  min-height: 118px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 105px 1fr;

  align-items: center;

  gap: 40px;
}

.trusted-label {
  margin: 0;

  font-size: 8px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.22em;

  white-space: nowrap;
}

.trusted-logos {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));

  align-items: center;

  gap: clamp(14px, 1.7vw, 28px);
}

.trusted-logo {
  width: 100%;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo::after {
  display: none;
}

.trusted-logo img {
  display: block;

  width: 100%;
  height: 27px;

  object-fit: contain;

  filter: grayscale(1) brightness(0);

  opacity: 0.82;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.trusted-logo:hover img {
  opacity: 1;

  transform: translateY(-2px);
}


/* ============================================================
   ABOUT
============================================================ */

.about-section {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 100% 50%,
      rgba(81, 105, 79, 0.23),
      transparent 26%
    ),
    var(--green-rich);

  color: var(--cream);

  border-bottom: 1px solid rgba(194, 167, 106, 0.35);
}

.about-decoration {
  position: absolute;

  top: 0;
  right: 0;

  width: 32%;
  height: 100%;

  opacity: 0.13;

  background-image:
    url("../assets/images/about-detail-chef-danie.jpg");

  background-size: cover;
  background-position: center;

  mix-blend-mode: luminosity;
}

.about-inner {
  position: relative;

  z-index: 2;

  width: min(1450px, 84%);

  margin: 0 auto;

  padding: 86px 0;

  display: grid;
  grid-template-columns: 0.8fr 1px 1.1fr;

  gap: clamp(50px, 7vw, 120px);

  align-items: center;
}

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

.about-heading h2 {
  margin: 0;

  font-family: var(--serif);

  font-size: clamp(42px, 4.3vw, 76px);
  font-weight: 400;

  line-height: 1.03;

  letter-spacing: -0.03em;
}

.about-divider {
  width: 1px;
  height: 145px;

  background: rgba(240, 232, 217, 0.2);
}

.about-copy {
  max-width: 590px;
}

.about-lead {
  margin: 0;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(17px, 1.35vw, 23px);

  line-height: 1.7;

  font-weight: 300;

  letter-spacing: 0.01em;

  color: rgba(247, 243, 235, 0.86);
}

.about-role {
  margin: 27px 0;

  font-family: var(--serif);

  font-size: 16px;
  font-style: italic;

  color: rgba(240, 234, 222, 0.7);
}


/* ============================================================
   FEATURE CARDS
============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  min-height: 410px;
}

.feature-card {
  position: relative;

  min-height: 410px;

  overflow: hidden;

  border-right: 1px solid rgba(207, 180, 116, 0.48);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card img {
  position: absolute;
  inset: 0;

  height: 100%;

  object-fit: cover;

  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.feature-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(5, 12, 8, 0.15) 0%,
      rgba(5, 12, 8, 0.82) 83%
    ),
    linear-gradient(
      90deg,
      rgba(5, 12, 8, 0.6),
      transparent
    );

  transition: background 0.4s ease;
}

.feature-content {
  position: absolute;

  z-index: 2;

  left: 0;
  bottom: 0;

  width: 100%;

  padding: 42px 13% 47px;
}

.feature-number {
  font-family: var(--serif);

  font-size: 14px;

  color: var(--gold-light);
}

.feature-line {
  width: 25px;
  height: 1px;

  margin: 15px 0 25px;

  background: var(--gold);
}

.feature-content h3 {
  margin: 0 0 15px;

  font-family: var(--serif);

  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;

  line-height: 1.1;
}

.feature-content p {
  max-width: 270px;

  margin: 0;

  font-size: 12px;
  font-weight: 300;

  line-height: 1.7;

  color: rgba(247, 242, 231, 0.76);
}

.feature-arrow {
  display: inline-block;

  margin-top: 26px;

  font-size: 22px;

  transition: transform 0.3s ease;
}

.feature-card:hover img {
  transform: scale(1.045);
}

.feature-card:hover .feature-arrow {
  transform: translateX(8px);
}


/* ============================================================
   AFFILIATE SECTION
============================================================ */

.affiliate-section {
  padding: 120px var(--page-padding) 130px;

  background: var(--cream-light);
  color: var(--ink);
}

.affiliate-header {
  width: min(1450px, 100%);

  margin: 0 auto 68px;

  display: grid;
  grid-template-columns: 1fr 0.75fr;

  gap: 10vw;

  align-items: end;
}

.dark-kicker {
  color: #6f795f;
}

.affiliate-header h2 {
  margin: 18px 0 0;

  font-family: var(--serif);

  font-size: clamp(52px, 5vw, 88px);
  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.04em;
}

.affiliate-intro {
  max-width: 450px;
}

.affiliate-intro p {
  margin: 0 0 17px;

  font-family: var(--serif);

  font-size: 20px;

  line-height: 1.55;

  color: rgba(17, 19, 15, 0.76);
}

.affiliate-intro small {
  font-size: 9px;

  text-transform: uppercase;
  letter-spacing: 0.14em;

  color: rgba(17, 19, 15, 0.45);
}

.affiliate-grid {
  width: min(1450px, 100%);

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

.affiliate-item {
  display: block;
}

.affiliate-image {
  position: relative;

  aspect-ratio: 0.9;

  overflow: hidden;

  background: #ddd9cf;
}

.affiliate-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.affiliate-item:hover .affiliate-image img {
  transform: scale(1.035);
}

.affiliate-meta {
  padding: 22px 0;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 20px;

  border-bottom: 1px solid rgba(17, 19, 15, 0.18);
}

.affiliate-category {
  display: block;

  margin-bottom: 8px;

  font-size: 8px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.19em;

  color: #6f795f;
}

.affiliate-meta h3 {
  margin: 0;

  font-family: var(--serif);

  font-size: 23px;
  font-weight: 400;
}

.affiliate-arrow {
  padding-top: 10px;

  font-size: 18px;

  transition: transform 0.3s ease;
}

.affiliate-item:hover .affiliate-arrow {
  transform: translate(4px, -4px);
}


/* ============================================================
   NEWSLETTER
============================================================ */

.newsletter-section {
  background: var(--green-rich);
  color: var(--cream);

  border-top: 1px solid rgba(190, 164, 109, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  padding: 64px var(--page-padding);
}

.newsletter-inner {
  width: min(1350px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr minmax(420px, 0.8fr);

  align-items: center;

  gap: 90px;
}

.newsletter-kicker {
  margin: 0 0 13px;

  color: var(--gold-light);

  font-size: 8px;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.newsletter-copy h2 {
  margin: 0;

  font-family: var(--serif);

  font-size: clamp(38px, 3.5vw, 58px);
  font-weight: 400;

  line-height: 1;

  letter-spacing: -0.03em;
}

.newsletter-description {
  max-width: 470px;

  margin: 15px 0 0;

  font-size: 11px;
  font-weight: 300;

  line-height: 1.7;

  color: rgba(242, 238, 229, 0.62);
}


/* FORM */

.newsletter-form {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr auto;

  align-items: center;

  border-bottom: 1px solid rgba(213, 192, 150, 0.65);
}

.newsletter-form input {
  width: 100%;

  padding: 19px 0;

  background: transparent;
  border: 0;
  outline: 0;

  color: var(--cream);

  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;

  letter-spacing: 0.03em;
}

.newsletter-form input::placeholder {
  color: rgba(242, 238, 229, 0.47);
}

.newsletter-form button {
  padding: 19px 0 19px 30px;

  display: flex;
  align-items: center;

  gap: 27px;

  background: transparent;
  border: 0;

  color: var(--cream);

  cursor: pointer;

  font-size: 9px;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.19em;
}

.newsletter-arrow {
  color: var(--gold-light);

  font-size: 17px;

  transition: transform 0.3s ease;
}

.newsletter-form button:hover .newsletter-arrow {
  transform: translateX(5px);
}


/* ACCESSIBILITY */

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}


/* ============================================================
   FOOTER
============================================================ */

.footer {
  min-height: 118px;

  padding: 0 var(--page-padding);

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 30px;

  background: #09120e;

  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  font-size: 13px;
  font-weight: 500;

  letter-spacing: 0.26em;
}

.footer-links {
  display: flex;

  gap: 34px;
}

.footer-links a,
.footer-copyright {
  font-size: 8px;

  text-transform: uppercase;
  letter-spacing: 0.16em;

  color: rgba(246, 241, 231, 0.55);
}

.footer-copyright {
  justify-self: end;
}


/* ============================================================
   SCROLL REVEALS
============================================================ */

.reveal {
  opacity: 0;

  transform: translateY(22px);

  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

  :root {
    --page-padding: 6vw;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    gap: 22px;
  }

  .hero-content {
    width: 54vw;
    margin-left: 7vw;
  }

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

  .feature-card:nth-child(2) {
    border-right: 0;
  }

  .feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(207, 180, 116, 0.48);
  }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 760px) {

  :root {
    --page-padding: 24px;
  }


  /* HEADER */

  .site-header,
  .site-header.scrolled {
    height: 74px;

    grid-template-columns: 1fr auto;

    background: rgba(8, 17, 13, 0.92);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .brand {
    font-size: 12px;
  }

  .menu-toggle {
    display: block;

    position: relative;

    z-index: 1002;
  }

  .menu-toggle.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;

    top: 0;
    right: 0;

    width: 100%;
    height: 100svh;

    padding: 120px 32px 50px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 0;

    background: var(--green-deep);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;

    padding: 19px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    font-family: var(--serif);

    font-size: 28px;
    font-weight: 400;

    text-transform: none;
    letter-spacing: -0.01em;
  }


  /* HERO */

  .hero {
    min-height: 830px;

    align-items: flex-end;
  }

  .hero-image {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(6, 15, 10, 0.08) 0%,
        rgba(6, 15, 10, 0.2) 38%,
        rgba(5, 13, 9, 0.96) 75%,
        rgba(5, 13, 9, 1) 100%
      );
  }

  .hero-content {
    width: 100%;

    margin: 0;

    padding: 0 25px 85px;
  }

  .hero-title {
    font-size: clamp(58px, 18vw, 79px);
  }

  .hero-description {
    max-width: 320px;

    font-size: 12px;
  }

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

    gap: 25px;
  }

  .scroll-indicator {
    display: none;
  }


 /* TRUST */

.trusted-inner {
  width: 100%;
  min-height: auto;

  padding: 28px 20px 32px;

  display: block;
}

.trusted-label {
  margin: 0 0 24px;

  text-align: center;

  font-size: 7px;
  letter-spacing: 0.24em;
}

.trusted-logos {
  width: min(390px, 100%);

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  align-items: center;

  gap: 20px 16px;

  overflow: visible;

  padding: 0;
}

.trusted-logo {
  width: 100%;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo img {
  width: 100%;
  height: 21px;

  object-fit: contain;

  filter: grayscale(1) brightness(0);

  opacity: 0.78;
}
  /* ABOUT */

  .about-inner {
    width: calc(100% - 48px);

    padding: 75px 0;

    display: block;
  }

  .about-decoration {
    width: 65%;

    opacity: 0.07;
  }

  .about-divider {
    width: 100%;
    height: 1px;

    margin: 45px 0;

    background: rgba(240, 232, 217, 0.18);
  }

  .about-heading h2 {
    font-size: 51px;
  }


  /* FEATURE CARDS */

  .feature-grid {
    display: block;
  }

  .feature-card {
    display: block;

    min-height: 460px;

    border-right: 0;
    border-bottom: 1px solid rgba(207, 180, 116, 0.48);
  }


  /* AFFILIATES */

  .affiliate-section {
    padding: 90px 24px 100px;
  }

  .affiliate-header {
    display: block;

    margin-bottom: 48px;
  }

  .affiliate-header h2 {
    font-size: 54px;
  }

  .affiliate-intro {
    margin-top: 36px;
  }

  .affiliate-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  /* CONTACT */

  .contact-section {
    padding: 110px 24px;
  }

  .contact-inner h2 {
    font-size: 56px;
  }

  .contact-actions {
    flex-direction: column;

    gap: 27px;
  }


  /* FOOTER */

  .footer {
    padding: 45px 24px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 25px;
  }

  .footer-copyright {
    justify-self: auto;
  }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
/* ============================================================
   FROM THE KITCHEN — DISH ROTATOR
============================================================ */

.kitchen-gallery {
  width: 100%;
}


.kitchen-gallery-label {
  margin: 0 0 18px;

  color: #707a67;

  font-size: 8px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.25em;
}


.dish-rotator {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 5;

  overflow: hidden;

  background: #ddd8cd;

  pointer-events: none;
  user-select: none;
}


.dish-slide {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  opacity: 0;

  transform: scale(1.015);

  transition:
    opacity 1.2s ease,
    transform 6s ease;

  pointer-events: none;
}


.dish-slide.active {
  opacity: 1;

  transform: scale(1);
}


/* MOBILE */

@media (max-width: 760px) {

  .dish-rotator {
    aspect-ratio: 4 / 4.8;
  }

}
/* ============================================================
   NOTES FROM CHEF DANIE
   BOOK + NEWSLETTER
============================================================ */

.newsletter-section {
  padding:
    70px
    var(--page-padding);

  background: var(--green-rich);

  color: var(--cream);

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* ============================================================
   MAIN LAYOUT
============================================================ */

.newsletter-inner {
  width: min(1380px, 100%);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    235px
    minmax(330px, 0.8fr)
    minmax(420px, 1.2fr);

  align-items: center;

  gap: 5.5vw;
}


/* ============================================================
   BOOK
============================================================ */

.newsletter-book {
  width: 100%;
}


.newsletter-book-link {
  position: relative;

  display: block;

  width: 100%;

  overflow: hidden;

  cursor: pointer;
}


.newsletter-book-link img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: cover;

  transition:
    transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1),
    filter 0.4s ease;
}


/* HOVER OVERLAY */

.newsletter-book-hover {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  padding: 20px;

  background:
    linear-gradient(
      180deg,
      transparent 42%,
      rgba(5, 12, 8, 0.82)
    );

  opacity: 0;

  transition: opacity 0.35s ease;
}


.newsletter-book-hover span:first-child {
  color: var(--cream);

  font-family: var(--sans);

  font-size: 8px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.18em;
}


.newsletter-book-hover span:last-child {
  color: var(--gold-light);

  font-size: 19px;

  transition: transform 0.3s ease;
}


.newsletter-book-link:hover img {
  transform: scale(1.03);

  filter: brightness(0.85);
}


.newsletter-book-link:hover
.newsletter-book-hover {
  opacity: 1;
}


.newsletter-book-link:hover
.newsletter-book-hover span:last-child {
  transform: translate(4px, -4px);
}


/* ============================================================
   NOTES COPY
============================================================ */

.newsletter-copy {
  width: 100%;

  min-width: 0;
}


.newsletter-kicker {
  margin:
    0
    0
    18px;

  color: var(--gold-light);

  font-family: var(--sans);

  font-size: 8px;

  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 0.24em;
}


.newsletter-copy h2 {
  margin: 0;

  font-family: var(--serif);

  font-size: clamp(
    48px,
    4.1vw,
    67px
  );

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.025em;

  white-space: nowrap;
}


.newsletter-description {
  max-width: 390px;

  margin:
    17px
    0
    0;

  color: rgba(242, 238, 229, 0.5);

  font-family: var(--sans);

  font-size: 10px;

  font-weight: 300;

  line-height: 1.7;
}


/* ============================================================
   EMAIL FORM
============================================================ */

.newsletter-form {
  width: 100%;

  display: flex;

  align-items: center;

  margin: 0;

  border-bottom:
    1px solid
    rgba(213, 192, 150, 0.68);
}


.newsletter-form input {
  flex: 1;

  min-width: 0;

  padding:
    18px
    0;

  background: transparent;

  color: var(--cream);

  border: 0;

  outline: 0;

  font-family: var(--sans);

  font-size: 11px;

  border-radius: 0;
}


.newsletter-form input::placeholder {
  color: rgba(242, 238, 229, 0.38);
}


.newsletter-form button {
  flex: 0 0 auto;

  display: flex;

  align-items: center;

  gap: 30px;

  padding:
    18px
    0
    18px
    25px;

  background: transparent;

  color: var(--cream);

  border: 0;

  cursor: pointer;

  font-family: var(--sans);

  font-size: 8px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.18em;
}


.newsletter-arrow {
  color: var(--gold-light);

  font-size: 18px;

  transition: transform 0.3s ease;
}


.newsletter-form button:hover
.newsletter-arrow {
  transform: translateX(5px);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

  .newsletter-inner {
    grid-template-columns:
      190px
      1fr;

    gap:
      45px
      55px;
  }


  .newsletter-form {
    grid-column: 2;

    margin-top: -8px;
  }


  .newsletter-copy h2 {
    white-space: normal;
  }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 760px) {

  .newsletter-section {
    padding:
      65px
      24px;
  }


  .newsletter-inner {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 0;
  }


  .newsletter-book {
    width: min(
      220px,
      65vw
    );

    margin:
      0
      auto
      55px;
  }


  .newsletter-book-hover {
    opacity: 1;
  }


  .newsletter-copy {
    width: 100%;
  }


  .newsletter-copy h2 {
    white-space: normal;

    font-size: 50px;
  }


  .newsletter-description {
    max-width: 330px;
  }


  .newsletter-form {
    width: 100%;

    margin-top: 38px;
  }

}
/* ============================================================
   NEWSLETTER REFINEMENTS
============================================================ */


/* MOVE STAY AT THE TABLE CLOSER TO BOOK */

.newsletter-inner {
  grid-template-columns:
    235px
    minmax(360px, 0.9fr)
    minmax(420px, 1.15fr);

  gap: 3.5vw;
}


/* ============================================================
   BOOK COLUMN
============================================================ */

.newsletter-book-column {
  width: 100%;
}


/* BOOK CTA */

.newsletter-book-heading {
  margin-bottom: 22px;
}


.newsletter-book-heading p {
  margin: 0 0 8px;

  color: var(--gold-light);

  font-family: var(--sans);

  font-size: 7px;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.23em;
}


.newsletter-book-heading h3 {
  margin: 0;

  color: var(--cream);

  font-family: var(--serif);

  font-size: 22px;
  font-weight: 400;

  line-height: 1.15;

  letter-spacing: -0.015em;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

  .newsletter-inner {
    grid-template-columns:
      190px
      1fr;

    gap:
      45px
      45px;
  }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 760px) {

  .newsletter-book-column {
    width: min(220px, 65vw);

    margin:
      0
      auto
      55px;
  }


  .newsletter-book {
    width: 100%;

    margin: 0;
  }


  .newsletter-book-heading {
    margin-bottom: 18px;

    text-align: left;
  }


  .newsletter-book-heading h3 {
    font-size: 21px;
  }

}
/* ============================================================
   CHEF DANIE NAV LOGO
============================================================ */

.brand-logo {
  display: flex;
  align-items: center;

  width: 130px;
  height: 68px;

  padding: 0;

  overflow: visible;
}


.brand-logo img {
  display: block;

  width: 130px;
  height: auto;

  max-width: none;
  max-height: 68px;

  object-fit: contain;

  transition:
    width 0.3s ease,
    max-height 0.3s ease;
}


/* ============================================================
   CHEF DANIE NAV LOGO
============================================================ */

.brand-logo {
  display: flex;
  align-items: center;

  width: 150px;
  height: 72px;

  padding: 0;

  overflow: visible;
}


.brand-logo img {
  display: block;

  width: 150px;
  height: auto;

  max-width: none;
  max-height: 72px;

  object-fit: contain;

  transition:
    width 0.3s ease,
    max-height 0.3s ease;
}


/* ============================================================
   SCROLLED NAV LOGO
============================================================ */

.site-header.scrolled .brand-logo {
  width: 130px;
  height: 62px;
}


.site-header.scrolled .brand-logo img {
  width: 130px;
  max-height: 62px;
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 760px) {

  .brand-logo {
    width: 120px;
    height: 58px;
  }


  .brand-logo img {
    width: 120px;
    max-height: 58px;
  }


  .site-header.scrolled .brand-logo {
    width: 110px;
    height: 52px;
  }


  .site-header.scrolled .brand-logo img {
    width: 110px;
    max-height: 52px;
  }

}
/* ============================================================
   FOOTER — SOCIAL ICON UPDATE
============================================================ */

.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-social-link {
  width: 18px;
  height: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: rgba(242, 238, 229, 0.58);

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-social-link:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}


/* INSTAGRAM */

.footer-social-link svg {
  width: 17px;
  height: 17px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.footer-social-link .social-dot {
  fill: currentColor;
  stroke: none;
}


/* THREADS */

.footer-threads {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}


/* X */

.footer-x {
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1;
}


/* KEEP FOOTER BALANCED */

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

.footer-copyright {
  justify-self: end;
}


/* MOBILE */

@media (max-width: 760px) {

  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-socials {
    gap: 22px;
  }

  .footer-copyright {
    text-align: center;
  }

}
/* ============================================================
   CHEF DANIE — MOBILE EDITORIAL NAV
============================================================ */

@media (max-width: 760px) {

  /* ----------------------------------------------------------
     MENU / CLOSE BUTTON
  ---------------------------------------------------------- */

  .menu-toggle {
    width: auto;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 0;

    background: transparent;
    border: 0;

    color: var(--cream);

    cursor: pointer;

    z-index: 1002;
  }


  /* Hide old hamburger / X lines */

  .menu-toggle span {
    display: none !important;
  }


  /* MENU text */

  .menu-toggle::after {
    content: "MENU";

    font-family: var(--sans);
    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.24em;
    text-transform: uppercase;

    color: var(--cream);

    transition:
      color 0.25s ease,
      opacity 0.25s ease;
  }


  /* CLOSE text */

  .menu-toggle[aria-expanded="true"]::after {
    content: "CLOSE";
  }


  /* ----------------------------------------------------------
     IVORY NAV PANEL
  ---------------------------------------------------------- */

  .main-nav {
    position: fixed !important;

    inset: 0 !important;

    width: 100%;
    height: 100dvh;

    box-sizing: border-box;

    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    padding:
      128px
      30px
      34px;

    background:
      var(--cream-light);

    z-index: 999;

    opacity: 0;

    visibility: hidden;
    pointer-events: none;

    transform:
      translateY(100%);

    transition:
      transform 0.65s cubic-bezier(.22, 1, .36, 1),
      opacity 0.35s ease,
      visibility 0s linear 0.65s;
  }


  /* OPEN PANEL */

  .menu-toggle[aria-expanded="true"] + .main-nav {
    opacity: 1;

    visibility: visible;
    pointer-events: auto;

    transform:
      translateY(0);

    transition:
      transform 0.65s cubic-bezier(.22, 1, .36, 1),
      opacity 0.35s ease;
  }


  /* ----------------------------------------------------------
     NAVIGATION LINKS
  ---------------------------------------------------------- */

  .main-nav > a {
    position: relative;

    display: block;

    width: auto;

    margin: 0 0 21px;
    padding: 0 !important;

    border: 0 !important;

    font-family: var(--serif);
    font-size: clamp(34px, 10vw, 46px);
    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -0.025em;

    text-transform: none;

    color: var(--green-deep) !important;

    opacity: 0;

    transform:
      translateY(24px);

    transition:
      opacity 0.5s ease,
      transform 0.5s ease,
      color 0.25s ease;
  }


  /* Remove old menu divider / underline effects */

  .main-nav > a::after {
    display: none !important;
  }


  /* LINKS ANIMATE IN */

  .menu-toggle[aria-expanded="true"]
  + .main-nav
  > a {
    opacity: 1;

    transform:
      translateY(0);
  }


  .menu-toggle[aria-expanded="true"]
  + .main-nav
  > a:nth-child(1) {
    transition-delay: 0.12s;
  }

  .menu-toggle[aria-expanded="true"]
  + .main-nav
  > a:nth-child(2) {
    transition-delay: 0.17s;
  }

  .menu-toggle[aria-expanded="true"]
  + .main-nav
  > a:nth-child(3) {
    transition-delay: 0.22s;
  }

  .menu-toggle[aria-expanded="true"]
  + .main-nav
  > a:nth-child(4) {
    transition-delay: 0.27s;
  }

  .menu-toggle[aria-expanded="true"]
  + .main-nav
  > a:nth-child(5) {
    transition-delay: 0.32s;
  }


  /* ----------------------------------------------------------
     ACTIVE PAGE
  ---------------------------------------------------------- */

  .main-nav > a.nav-active {
    padding-left: 25px !important;
  }

  .main-nav > a.nav-active::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 13px;
    height: 1px;

    background:
      var(--gold);

    transform:
      translateY(-50%);
  }


  /* ----------------------------------------------------------
     HOVER / TAP
  ---------------------------------------------------------- */

  .main-nav > a:hover,
  .main-nav > a:focus-visible {
    color:
      var(--gold) !important;
  }


  /* ----------------------------------------------------------
     MOBILE SOCIAL ROW
  ---------------------------------------------------------- */

  .mobile-nav-socials {
    display: flex;
    align-items: center;

    gap: 22px;

    margin-top: auto;
    padding-top: 38px;

    border-top:
      1px solid
      rgba(19, 37, 28, 0.13);

    width: 100%;
  }


  .mobile-nav-socials a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    padding: 0 !important;
    margin: 0 !important;

    color:
      rgba(19, 37, 28, 0.62) !important;

    opacity: 1 !important;

    transform: none !important;

    transition:
      color 0.25s ease,
      transform 0.25s ease !important;
  }


  .mobile-nav-socials a:hover {
    color:
      var(--gold) !important;

    transform:
      translateY(-2px) !important;
  }


  .mobile-nav-socials svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.4;
  }


  .mobile-nav-threads {
    font-family:
      Arial,
      sans-serif;

    font-size: 16px;
  }


  .mobile-nav-x {
    font-family:
      Arial,
      sans-serif;

    font-size: 16px;
  }


  /* Hide desktop CTA inside mobile header */

  .header-cta {
    display: none;
  }


  /* Prevent page scrolling while menu is open */

  body:has(
    .menu-toggle[aria-expanded="true"]
  ) {
    overflow: hidden;
  }

}
/* ============================================================
   CHEF DANIE MOBILE NAV — HEADER FIX
============================================================ */

@media (max-width: 760px) {

  /* Keep the ivory menu BELOW the dark header */
  .main-nav {
    inset: 82px 0 auto 0 !important;

    height: calc(100dvh - 82px);

    padding-top: 55px;
  }


  /* Keep MENU / CLOSE visible inside dark header */
  .menu-toggle,
  .menu-toggle[aria-expanded="true"] {
    position: relative;
    z-index: 1100;
  }


  .menu-toggle::after,
  .menu-toggle[aria-expanded="true"]::after {
    color: var(--cream) !important;
    opacity: 1 !important;
  }


  /* Make sure logo stays above menu panel too */
  .brand-logo {
    position: relative;
    z-index: 1100;
  }


  /* Header stays above ivory panel */
  .site-header {
    z-index: 1050;
  }

}
@media (max-width: 760px) {

  .main-nav {
    background: var(--green-rich) !important;
  }

  .main-nav > a {
    color: var(--cream) !important;
  }

  .main-nav > a:hover,
  .main-nav > a:focus-visible {
    color: var(--gold-light) !important;
  }

  .main-nav > a.nav-active::before {
    background: var(--gold-light);
  }

}