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

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
/* ========= BODY ========= */

.seo-header {
    text-align: center;
    padding: 40px 20px 20px;
}

.seo-header img {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

body {
  margin: 0;

  background: #f8f5f1;

  overflow-x: hidden;

  font-family: 'DM Sans', sans-serif;

  color: #111;
}
 
    /* ========= HERO ========= */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;

  overflow: hidden;

  background: #f8f5f1;

  isolation: isolate;

  border: none;
}

    /* ========= BACKGROUND ========= */

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

  background-image:
  radial-gradient(
    circle at 20% 42%,
    rgba(248,245,241,0.98) 5%,
    rgba(248,245,241,0.95) 14%,
    rgba(248,245,241,0.82) 32%,
    rgba(248,245,241,0.58) 52%,
    rgba(248,245,241,0.28) 72%,
    rgba(248,245,241,0.08) 88%,
    rgba(248,245,241,0) 98%
  ),
  url('/largehero.png');
  
  background-repeat:
    no-repeat,
    no-repeat;

  background-size:
  100%;

  background-position:
   100% 28%;

  z-index: 1;
}

    /* ========= LOGO ========= */

    .hero-logo {
      position: absolute;

      top: 24px;
      left: 50%;

      transform: translateX(-50%);

      width: 250px;
      height: auto;

      z-index: 5;

      opacity: 0.94;
    }

    /* ========= CONTENT ========= */

  .hero-content {
  position: relative;

  z-index: 20;

  max-width: 540px;

  padding-left: 74px;
  padding-top: 260px;
  padding-bottom: 120px;
}
    
    /* ========= KICKER ========= */

    .hero-kicker {
      margin-bottom: 34px;

      font-size: 0.92rem;
      font-weight: 500;

      line-height: 2;

      letter-spacing: 0.22em;

      color: rgba(0,0,0,0.52);

      text-transform: uppercase;
    }

    /* ========= HEADLINE ========= */

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;

      font-size: clamp(3.6rem, 5.5vw, 6rem);

      line-height: 0.9;

      letter-spacing: -0.045em;

      font-weight: 400;

      color: #111;
    }

    /* ========= DESCRIPTION ========= */

    .hero-description {
      margin-top: 38px;

      max-width: 560px;

      font-size: 1.2rem;

      line-height: 1.55;

      color: rgba(0,0,0,0.58);
    }

    /* ========= BUTTON ========= */

    .hero-button {
      display: inline-flex;

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

      margin-top: 42px;

      height: 58px;
      padding: 0 36px;

      border-radius: 999px;

      background: #000;

      color: #fff;

      text-decoration: none;

      font-size: 0.92rem;
      font-weight: 600;

      letter-spacing: 0.14em;

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

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

      opacity: 0.94;
    }

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

@media (max-width: 1100px) {

  .hero-bg {
    background-size: cover;
    background-position: 62% center;
  }

  .hero-logo {
    width: 220px;
    left: 50%;
  }

  .hero-content {
    padding: 220px 34px 90px 34px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 12vw, 5rem);
  }

  .hero-description {
    font-size: 1.12rem;
    }
  }
    
/* ========= FLAVOURS ========= */

.flavours-section {
  background: #f8f5f1;

  padding: 110px 60px 120px;
}
    
/* ========= SECTION LABEL ========= */

.section-label {
  text-align: center;

  font-size: 0.9rem;

  letter-spacing: 0.24em;

  text-transform: uppercase;

  color: rgba(0,0,0,0.42);

  margin-bottom: 18px;
}
    
    /* ========= SECTION TITLE ========= */

.section-title {
  text-align: center;

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(2.4rem, 3.5vw, 3.8rem);

  font-weight: 400;

  line-height: 1;

  letter-spacing: -0.03em;

  color: #111;

  margin-bottom: 60px;
}

/* ========= GRID ========= */

.flavours-grid {
  display: grid;

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

  gap: 22px;
}

/* ========= CARD ========= */

.flavour-card {
  padding: 0 18px;

  border-right: 1px solid rgba(0,0,0,0.08);

  display: flex;

  flex-direction: column;

  align-items: center;
}
    .flavour-card img {
  width: 100%;

  max-width: 420px;

  aspect-ratio: 1 / 1;

  object-fit: cover;

  display: block;

  margin: 0 auto 28px;
}

.flavour-card:last-child {
  border-right: none;
}
    @media (max-width: 1100px) {

  .flavours-section {
    padding: 80px 28px 90px;
  }

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

    gap: 54px;
  }

  .flavour-card {
    border-right: none;

    border-bottom: 1px solid rgba(0,0,0,0.08);

    padding: 0 0 54px;
  }

  .flavour-card:last-child {
    border-bottom: none;

    padding-bottom: 0;
  }

  .flavour-card img {
    max-width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;
  }

  .flavour-card p {
    max-width: 100%;
  }

}

/* ========= CARD TITLE ========= */

.flavour-card h3 {
  margin-bottom: 18px;

  text-align: center;

  font-size: 0.92rem;

  font-weight: 600;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  color: #111;
}

/* ========= DESCRIPTION ========= */

.flavour-card p {
  max-width: 280px;

  margin: 0 auto;

  text-align: center;

  font-size: 1.02rem;

  line-height: 1.7;

  color: rgba(0,0,0,0.72);
}
  /* ========= FORMATS ========= */

.formats-section {
  background: #f8f5f1;

  padding:
    40px 60px 140px;
}

/* ========= GRID ========= */

.formats-grid {
  display: grid;

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

  gap: 22px;
}

/* ========= CARD ========= */

.format-card {
  background: #efe9e3;

  display: flex;

  align-items: stretch;

  min-height: 320px;

  overflow: hidden;
}

/* ========= IMAGE ========= */

.format-card img {
  width: 48%;

  object-fit: cover;
}

/* ========= INFO ========= */

.format-info {
  flex: 1;

  padding: 42px 34px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

/* ========= TOP ========= */

.format-top h3 {
  font-size: 1rem;

  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  margin-bottom: 12px;

  color: #111;
}

.format-top span {
  font-size: 1.02rem;

  color: rgba(0,0,0,0.68);
}

/* ========= DIVIDER ========= */

.format-divider {
  width: 72px;
  height: 1px;

  background: rgba(0,0,0,0.16);

  margin:
    34px 0;
}

/* ========= PRICE ========= */


.format-price {
  font-family: 'Cormorant Garamond', serif;

  font-size: 1.35rem;

  font-weight: 400;

  line-height: 1;

  color: #111;
}


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

@media (max-width: 1100px) {

  .formats-section {
    padding:
      20px 28px 90px;
  }

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

    gap: 28px;
  }

  .format-card {
    flex-direction: column;
  }

  .format-card img {
    width: 100%;

    aspect-ratio: 1 / 1;
  }

}

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

@media (max-width: 1100px) {

  .flavours-section {
    padding: 80px 28px 90px;
  }

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

    gap: 54px;
  }

  .flavour-card {
    border-right: none;

    border-bottom: 1px solid rgba(0,0,0,0.08);

    padding: 0 0 54px;
  }

  .flavour-card:last-child {
    border-bottom: none;

    padding-bottom: 0;
  }

  .flavour-card p {
    max-width: 100%;
  }
    }
  
/* ========= ORDER CTA ========= */

.order-cta-section {
  background: #f8f5f1;

  width: 100%;

  padding: 20px 28px 90px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;
}

.order-cta-label {
  font-size: 0.82rem;

  letter-spacing: 0.24em;

  text-transform: uppercase;

  color: rgba(0,0,0,0.42);

  margin-bottom: 14px;
}

.order-cta-section h2 {
  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(2.6rem, 4vw, 4rem);

  font-weight: 400;

  line-height: 1;

  color: #111;

  margin-bottom: 32px;
}

.order-cta-button {
  display: inline-flex;

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

  height: 58px;

  padding: 0 38px;

  border-radius: 999px;

  background: #000;

  color: #fff;

  text-decoration: none;

  font-size: 0.86rem;

  font-weight: 600;

  letter-spacing: 0.14em;

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

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

  opacity: 0.92;
}

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

.about-section {
background: #f8f5f1;
padding: 40px 60px 120px;
text-align: center;
}

.about-content {
max-width: 760px;
margin: 0 auto;
}

.about-content p {
font-family: 'DM Sans', sans-serif;
font-size: 1.05rem;
line-height: 1.9;
color: rgba(0,0,0,0.68);
margin-bottom: 24px;
}

.about-content p:last-child {
margin-bottom: 0;
}

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

@media (max-width: 1100px) {

.about-section {
padding: 20px 28px 90px;
}

.about-content {
max-width: 100%;
}

.about-content p {
font-size: 1rem;
line-height: 1.85;
}

}

    /* ========= CONTACT ========= */

.contact-section {
  background: #f8f5f1;

  padding: 0 60px 120px;
}

.contact-card {
  background: #efe9e3;

  padding: 42px 52px;

  display: flex;

  align-items: center;

  gap: 48px;

  flex-wrap: wrap;
}

.contact-left {
  display: flex;

  align-items: center;

  gap: 28px;
}

.contact-icon {
  width: 74px;
  height: 74px;

  border-radius: 50%;

  border: 1px solid rgba(0,0,0,0.12);

  display: flex;

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

  font-size: 1.8rem;
}

.contact-label {
  font-size: 0.82rem;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: rgba(0,0,0,0.46);

  margin-bottom: 10px;
}

.contact-left h3 {
  font-family: 'Cormorant Garamond', serif;

  font-size: 1.8rem;

  font-weight: 400;

  line-height: 1.05;

  color: #111;
}
.contact-divider {
  width: 1px;

  height: 90px;

  background: rgba(0,0,0,0.08);
}

/* ========= MIDDLE ========= */

.contact-middle {
  display: flex;

  flex-direction: column;

  gap: 16px;
}

.contact-middle p {
  font-size: 1.02rem;

  line-height: 1.7;

  color: rgba(0,0,0,0.72);
}

/* ========= WHATSAPP ========= */

.whatsapp-link {
  text-decoration: none;

  font-size: 0.9rem;

  letter-spacing: 0.08em;

  color: #111;

  opacity: 0.72;

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

.whatsapp-link:hover {
  opacity: 1;

  transform: translateY(-1px);
}

/* ========= BUTTON ========= */

.maps-button {
  margin-left: auto;
  height: 54px;

  padding: 0 32px;

  border-radius: 999px;

  border: 1px solid rgba(0,0,0,0.16);

  display: inline-flex;

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

  text-decoration: none;

  font-size: 0.82rem;

  letter-spacing: 0.14em;

  color: #111;

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

.maps-button:hover {
  opacity: 0.7;
}

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

@media (max-width: 1100px) {

  .contact-section {
    padding: 0 28px 90px;
  }

  .contact-card {
    padding: 34px 28px;

    gap: 32px;

    flex-direction: column;

    align-items: flex-start;
  }

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

  .maps-button {
    margin-left: 0;

    width: 100%;
  }

}

/* ========= BRAND ========= */

.contact-brand {
  display: flex;

  justify-content: center;

  margin-top: 42px;
}

.contact-brand img {
  width: 210px !important;
  min-width: 210px !important;
  max-width: 210px !important;

  height: auto !important;

  flex: none !important;

  opacity: 0.9;

  display: block;
}
.seo-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 60px;
}

.seo-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 32px;
  text-align: center;
}

.seo-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin: 60px 0 24px;
  text-align: center;
}

.seo-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(0,0,0,0.68);
  margin-bottom: 24px;
  text-align: center;
}

@media (max-width: 1100px) {
  .seo-content {
    padding: 80px 28px;
  }
}
