@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --ink: #1f1d18;
  --muted: #6f6a60;
  --paper: #f7f1e6;
  --cream: #fffaf1;
  --red: #b83b2e;
  --red-dark: #8f2e24;
  --gold: #e1ad48;
  --green: #365745;
  --white: #ffffff;
  --line: rgba(31, 29, 24, 0.14);
  --shadow: 0 24px 70px rgba(55, 39, 24, 0.14);
  --radius: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-tight {
  padding: 28px 0 110px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 em {
  color: #f0c875;
  font-weight: 600;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 22px clamp(20px, 4vw, 70px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.06rem;
}

.brand small {
  opacity: 0.7;
  margin-top: -2px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 0.87rem;
  font-weight: 600;
}

.nav a,
.site-footer a {
  transition: opacity 180ms ease;
}

.nav a:hover,
.site-footer a:hover {
  opacity: 0.65;
}

.header-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 48%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 16, 12, 0.83) 0%, rgba(18, 16, 12, 0.48) 52%, rgba(18, 16, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(18,16,12,0.36), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 820px;
  padding-top: 70px;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}

.hero-badge {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 6vw, 90px);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 22px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 18px;
  background: rgba(22,20,16,0.36);
  backdrop-filter: blur(13px);
}

.hero-badge span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
}

.hero-badge strong {
  font-size: 0.76rem;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8vw;
  align-items: start;
}

.intro-copy {
  max-width: 600px;
  padding-top: 32px;
  color: var(--muted);
}

.intro-copy .lead {
  color: var(--ink);
  font-size: 1.23rem;
  font-weight: 600;
}

.feature-image {
  position: relative;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame.large {
  height: min(65vw, 650px);
  min-height: 440px;
}

.image-frame img,
.ingredients-media img,
.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.feature-card {
  position: absolute;
  right: 7%;
  bottom: 55px;
  width: min(340px, 80%);
  padding: 30px;
  border-radius: 22px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.feature-number {
  display: block;
  margin-bottom: -2px;
  color: #f2cc7c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.25rem;
  line-height: 1;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.78);
}

.services {
  background: var(--paper);
}

.centered {
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.service-card {
  min-height: 275px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.38);
}

.service-card .icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 62px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.award-section {
  padding: 95px 0;
  color: var(--white);
  background: var(--red);
}

.award-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 9vw;
  align-items: end;
}

.award-copy {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.32);
}

.award-copy strong {
  display: block;
  margin-bottom: 9px;
  font-size: 1.05rem;
}

.award-copy p {
  margin-bottom: 20px;
  color: rgba(255,255,255,0.78);
}

.ingredients {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 7vw;
  align-items: center;
}

.ingredients-media {
  height: 680px;
  overflow: hidden;
  border-radius: var(--radius);
}

.ingredients-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 26px 0 30px;
  color: var(--muted);
}

.ingredient-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.ingredient-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 600;
}

.gallery {
  background: var(--paper);
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.gallery-heading > p {
  max-width: 390px;
  margin-bottom: 8px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 320px 320px;
  gap: 18px;
  margin-top: 55px;
}

.gallery-item {
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
}

.gallery-item-tall {
  grid-row: 1 / 3;
}

.gallery-item img {
  transition: transform 550ms cubic-bezier(.2,.7,.2,1);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.contact {
  color: var(--white);
  background: #1e2e27;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-top: 24px;
  color: rgba(255,255,255,0.72);
}

.contact-links {
  display: grid;
  gap: 1px;
  margin-top: 48px;
  background: rgba(255,255,255,0.13);
}

.contact-links a {
  padding: 18px 0;
  background: #1e2e27;
}

.contact-links span,
.contact-links strong {
  display: block;
}

.contact-links span {
  color: rgba(255,255,255,0.52);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-links strong {
  margin-top: 3px;
  font-size: 1rem;
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form label span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  font-weight: 700;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  outline: none;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input {
  height: 49px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 145px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(242,204,124,0.75);
  background: rgba(255,255,255,0.09);
}

.btn-full {
  width: 100%;
  border-radius: 12px;
}

.contact-form small {
  display: block;
  margin-top: 11px;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255,255,255,0.75);
  background: #17231e;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
}

.site-footer > .container > a {
  justify-self: end;
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .intro,
  .award-layout,
  .ingredients,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ingredients-media {
    height: 560px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 470px 280px;
  }

  .gallery-item-tall {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .footer-layout {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .section-tight {
    padding-bottom: 78px;
  }

  .site-header {
    padding: 16px 14px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 0.73rem;
  }

  .brand-mark {
    width: 37px;
  }

  .brand strong {
    font-size: 0.93rem;
  }

  .brand small {
    font-size: 0.61rem;
  }

  .hero,
  .hero-content {
    min-height: 730px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 145px;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .hero-badge {
    right: 14px;
    bottom: 22px;
    left: 14px;
    width: auto;
  }

  .feature-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: -70px auto 0;
  }

  .image-frame.large {
    min-height: 470px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card .icon {
    margin-bottom: 35px;
  }

  .ingredients-media {
    height: 460px;
  }

  .ingredient-list {
    grid-template-columns: 1fr;
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading > p {
    margin-top: 22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 420px 260px 260px;
  }

  .gallery-item-tall {
    grid-column: auto;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .site-footer > .container > a {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}