/* BTC Beef brand and UX layer.
   Loaded after the original template so site-specific styles stay isolated. */

:root {
  --font-default: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-primary: "Oswald", "Arial Narrow", sans-serif;
  --font-secondary: "Inter", system-ui, sans-serif;
  --color-default: #292622;
  --color-primary: #b80f12;
  --color-primary-dark: #8f0b0e;
  --color-secondary: #1f1d1a;
  --color-muted: #69635d;
  --color-surface: #f6f2ec;
  --color-border: #e5ddd3;
  --color-dark: #1d1a18;
  --shadow-soft: 0 18px 55px rgba(42, 33, 28, 0.1);
}

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

body {
  background: #fff;
  color: var(--color-default);
  font-family: var(--font-default);
  line-height: 1.65;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(184, 15, 18, 0.18);
}

a {
  color: var(--color-primary);
}

a:hover {
  color: var(--color-primary-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f0a328;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--color-dark);
  box-shadow: var(--shadow-soft);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

section {
  padding: 88px 0;
  scroll-margin-top: 86px;
}

.section-bg {
  background-color: var(--color-surface);
}

.section-header {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 44px;
}

.section-header .section-kicker {
  margin: 0 0 8px;
  padding: 0;
  color: var(--color-primary);
  font-family: var(--font-default);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-header h2 {
  margin: 0;
  padding: 0;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: none;
}

.section-header h2 span {
  color: var(--color-primary);
}

.section-header .section-intro {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--color-muted);
  font-family: var(--font-default);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

/* Header and navigation */
.header {
  height: 86px;
  border-bottom: 1px solid rgba(44, 37, 32, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(35, 29, 25, 0.04);
  transition: box-shadow 0.25s ease, height 0.25s ease;
}

.header.sticked {
  border-color: rgba(44, 37, 32, 0.1);
  box-shadow: 0 8px 30px rgba(35, 29, 25, 0.09);
}

.header .logo {
  display: inline-flex;
  align-items: center;
}

.header .logo svg {
  width: 216px;
  height: auto;
  max-height: 50px;
}

.header .logo img.site-logo-art {
  width: 216px;
  height: auto;
  max-height: 50px;
  margin-right: 0;
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  margin-left: 24px;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--color-primary);
  box-shadow: 0 8px 22px rgba(184, 15, 18, 0.2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

@media (min-width: 992px) {
  .navbar > ul > li {
    padding-left: 22px;
  }

  .navbar a,
  .navbar a:focus {
    color: #615c57;
    font-family: var(--font-default);
    font-size: 14px;
    font-weight: 600;
  }

  .navbar > ul > li > a::before {
    height: 2px;
    background-color: var(--color-primary);
  }
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--color-secondary);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 991px) {
  .navbar {
    visibility: hidden;
    border-left: 0;
    box-shadow: -20px 0 60px rgba(26, 22, 19, 0.16);
  }

  .navbar ul {
    padding: 86px 22px 24px;
    background: #fff;
  }

  .navbar a,
  .navbar a:focus {
    padding: 15px 10px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-secondary);
    font-family: var(--font-default);
    font-size: 17px;
  }

  .navbar .active,
  .navbar .active:focus {
    border-color: var(--color-primary);
    color: var(--color-primary);
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 9999;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
  }

  .mobile-nav-toggle:hover {
    background: var(--color-surface);
  }

  .mobile-nav-active .navbar {
    visibility: visible;
    right: 0;
  }

  .mobile-nav-active .navbar::before {
    background: rgba(20, 17, 15, 0.58);
  }
}

/* Hero */
.hero {
  min-height: 720px;
  padding: 158px 0 86px;
  background:
    radial-gradient(circle at 10% 10%, rgba(184, 15, 18, 0.08), transparent 32%),
    linear-gradient(135deg, #f8f5f0 0%, #f2ece4 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(184, 15, 18, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero .hero-content,
.hero .hero-media {
  position: relative;
  z-index: 1;
}

.hero .hero-eyebrow {
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 22px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(54px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.hero .hero-lead {
  max-width: 540px;
  margin-bottom: 30px;
  color: #57514b;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  gap: 12px;
}

.hero .btn-book-a-table {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 10px;
  background: var(--color-primary);
  box-shadow: 0 10px 28px rgba(184, 15, 18, 0.24);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero .btn-book-a-table:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 12px 32px rgba(143, 11, 14, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid #cfc4b8;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.btn-secondary-action:hover {
  border-color: #a99d91;
  background: #fff;
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 26px 0 0;
  padding: 0;
  color: #5e5852;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.hero-highlights i {
  margin-right: 5px;
  color: var(--color-primary);
}

.hero-media::before {
  position: absolute;
  inset: 8% -2% -4% 10%;
  border-radius: 24px;
  background: var(--color-primary);
  content: "";
  opacity: 0.1;
  transform: rotate(2deg);
}

.hero-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 24px;
  box-shadow: 0 24px 65px rgba(43, 33, 27, 0.2);
  object-fit: cover;
}

/* About */
.about {
  background: #fff;
}

.about .about-img {
  width: 58.33333333%;
  height: auto;
  min-height: 650px;
  border-radius: 20px;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.about .about-farm-image {
  background-image: url("../img/gallery/gallery-1.webp");
}

.about .content {
  color: var(--color-muted);
  font-size: 16px;
}

.about .about-lead {
  color: var(--color-secondary);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
}

.about .content ul {
  margin: 24px 0;
}

.about .content ul li {
  padding: 0 0 12px 30px;
  color: var(--color-secondary);
  font-weight: 600;
}

.about .content ul i {
  top: -1px;
  color: var(--color-primary);
}

.about-detail-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 14px;
}

/* Why us */
.why-us .why-box {
  height: 100%;
  padding: 38px;
  border-radius: 18px;
  background: linear-gradient(145deg, #b80f12, #941013);
  box-shadow: 0 20px 45px rgba(143, 11, 14, 0.2);
}

.why-us .why-box h3 {
  margin-bottom: 18px;
  font-family: var(--font-primary);
  font-size: 36px;
  line-height: 1.15;
}

.why-us .why-box p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
}

.why-us .why-box .more-btn {
  padding: 10px 20px;
  border-radius: 9px;
  font-weight: 700;
}

.why-us .icon-box {
  height: 100%;
  padding: 34px 26px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(43, 35, 30, 0.04);
}

.why-us .icon-box i {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  background: rgba(184, 15, 18, 0.09);
  font-size: 26px;
}

.why-us .icon-box h4 {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 700;
}

.why-us .icon-box p {
  margin-bottom: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

@media (min-width: 1200px) {
  .why-us .icon-box:hover {
    box-shadow: 0 16px 35px rgba(43, 35, 30, 0.09);
    transform: translateY(-5px);
  }
}

/* Farm gallery */
.why-us {
  padding-bottom: 48px;
}

.gallery {
  padding-top: 48px;
  padding-bottom: 36px;
}

.gallery .swiper-slide a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.gallery .swiper-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery .swiper-slide a:hover img {
  transform: scale(1.04);
}

@media (min-width: 992px) {
  .gallery .swiper-slide-active {
    border: 4px solid var(--color-primary);
    border-radius: 18px;
    padding: 4px;
    transform: scale(1.08);
  }
}

/* Proof points */
.trust-strip {
  padding: 0;
  background: var(--color-dark);
  color: #fff;
}

.trust-strip .row {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  min-height: 150px;
  align-items: center;
  gap: 15px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item i {
  color: #efb047;
  font-size: 28px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 15px;
}

.trust-item span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

/* Cuts */
.menu {
  background: #fff;
}

.cut-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(43, 35, 30, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cut-card:hover {
  box-shadow: 0 16px 38px rgba(43, 35, 30, 0.11);
  transform: translateY(-5px);
}

.cut-card a {
  display: block;
  overflow: hidden;
}

.menu-item .cut-card .menu-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cut-card:hover .menu-img {
  transform: scale(1.035);
}

.cut-card h3 {
  margin: 0;
  padding: 20px 18px 22px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
}

/* Pricing cards */
.pricing .product-card {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 14px 42px rgba(43, 35, 30, 0.08);
}

.pricing .product-card:hover {
  box-shadow: 0 22px 50px rgba(43, 35, 30, 0.14);
  transform: translateY(-6px);
}

.pricing .product-card .member-img::after {
  display: none;
}

.pricing .product-card .member-img img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pricing .product-card .member-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
  text-align: left;
}

.pricing .product-card .product-label {
  margin: 0 0 4px;
  padding: 0;
  color: var(--color-primary);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pricing .product-card h3 {
  margin: 0;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 34px;
  font-weight: 600;
}

.pricing .product-card .product-price {
  margin: 8px 0 22px;
  padding: 0;
  color: var(--color-primary);
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.pricing .product-card .product-price small {
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 600;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 0 0 20px;
  padding: 0;
  color: #4f4944;
  font-size: 14px;
  list-style: none;
}

.product-list li::before {
  margin-right: 7px;
  color: var(--color-primary);
  content: "✓";
  font-weight: 800;
}

.pricing .product-card .product-summary,
.pricing .product-card .product-description,
.pricing .product-card .product-note {
  color: var(--color-muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.pricing .product-card .product-summary,
.pricing .product-card .product-description {
  margin: 0 0 14px;
  padding: 0;
}

.pricing .product-card .product-note {
  margin: 0 0 20px;
  padding: 12px 14px;
  border-radius: 9px;
  background: var(--color-surface);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
}

.product-cta i {
  transition: transform 0.2s ease;
}

.product-cta:hover i {
  transform: translateX(4px);
}

/* Order-to-recipe transition */
.order-to-recipes-bridge {
  position: relative;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(239, 176, 71, 0.16), transparent 30%),
    linear-gradient(120deg, #1d1a18 0%, #34201d 58%, #761013 100%);
  color: #fff;
}

.order-to-recipes-bridge::before {
  position: absolute;
  width: 280px;
  height: 280px;
  top: -190px;
  left: 12%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.order-to-recipes-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  min-height: 210px;
  padding: 42px 0;
}

.order-to-recipes-route {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.54);
}

.order-to-recipes-route span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 24px;
}

.order-to-recipes-copy .section-kicker {
  margin: 0 0 5px;
  color: #efb047;
}

.order-to-recipes-copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-primary);
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.1;
}

.order-to-recipes-copy h2 span {
  color: #ff8b8d;
}

.order-to-recipes-copy > p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.bridge-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 19px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.bridge-link:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-2px);
}

/* Contact and inquiry form */
.contact {
  padding-top: 32px;
  background: var(--color-surface);
}

.contact-panel {
  height: 100%;
  padding: 42px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 95% 5%, rgba(239, 176, 71, 0.18), transparent 34%),
    var(--color-dark);
  box-shadow: var(--shadow-soft);
  color: rgba(255, 255, 255, 0.74);
}

.contact-panel-kicker {
  margin: 0 0 10px;
  color: #efb047;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-panel h3 {
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-method > i {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #efb047;
  font-size: 20px;
}

.contact-method strong,
.contact-method span,
.contact-method a {
  display: block;
}

.contact-method strong {
  color: #fff;
  font-size: 14px;
}

.contact-method span,
.contact-method a {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
}

.contact-method a:hover {
  color: #fff;
}

.contact .php-email-form {
  height: 100%;
  margin: 0;
  padding: 40px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading h3 {
  margin: 0 0 4px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 600;
}

.form-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

.contact .php-email-form .form-group {
  padding-bottom: 0;
}

.contact .php-email-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 700;
}

.contact .php-email-form .optional {
  margin-left: 4px;
  color: #817970;
  font-size: 11px;
  font-weight: 500;
}

.contact .php-email-form input,
.contact .php-email-form select,
.contact .php-email-form textarea {
  min-height: 50px;
  border: 1px solid #d8d0c7;
  border-radius: 9px;
  background: #fff;
  color: var(--color-secondary);
  font-size: 15px;
}

.contact .php-email-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact .php-email-form input:focus,
.contact .php-email-form select:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(184, 15, 18, 0.09);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.form-status {
  margin-top: 18px;
}

.contact .php-email-form .loading,
.contact .php-email-form .error-message,
.contact .php-email-form .sent-message {
  border-radius: 9px;
}

.contact .php-email-form .loading {
  background: var(--color-surface);
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.contact .php-email-form button[type="submit"] {
  flex: 0 0 auto;
  padding: 13px 22px;
  border-radius: 10px;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--color-primary-dark);
}

.contact .php-email-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.66;
}

#form-privacy {
  margin: 0;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.5;
}

/* Footer */
.footer {
  padding: 56px 0 32px;
  background: #171513;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
  color: #fff;
}

.footer .copyright {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.52);
}

.scroll-top {
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--color-primary);
  box-shadow: 0 10px 28px rgba(143, 11, 14, 0.28);
}

.scroll-top:hover {
  background: var(--color-primary-dark);
}

@media (max-width: 991px) {
  .about .about-img {
    width: 100%;
    min-height: 440px;
    height: 440px;
    max-height: none;
  }

  .about .content {
    padding-top: 16px;
  }

  .contact-panel,
  .contact .php-email-form {
    padding: 34px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 66px 0;
  }

  .gallery {
    padding-bottom: 28px;
  }

  .section-header {
    padding-bottom: 34px;
  }

  .section-header h2 {
    font-size: 42px;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 70px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero .hero-lead {
    font-size: 17px;
  }

  .hero-highlights {
    justify-content: center;
  }

  .hero-media img {
    border-radius: 18px;
  }

  .trust-strip .row {
    border: 0;
  }

  .trust-item {
    min-height: 130px;
    padding: 22px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .trust-item i {
    font-size: 24px;
  }

  .trust-item strong {
    font-size: 13px;
  }

  .product-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .header {
    height: 72px;
  }

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

  section {
    scroll-margin-top: 72px;
  }

  .header .logo svg {
    width: 158px;
  }

  .header .logo img.site-logo-art {
    width: 158px;
  }

  .header .btn-book-a-table,
  .header .btn-book-a-table:focus {
    margin-left: 10px;
    padding: 9px 12px;
    font-size: 11px;
  }

  .mobile-nav-toggle {
    width: 40px;
    height: 40px;
    margin-left: 5px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero .btn-book-a-table,
  .hero .btn-secondary-action {
    width: 100%;
  }

  .about .about-img {
    min-height: 300px;
    height: 300px;
  }

  .why-us .why-box,
  .contact-panel,
  .contact .php-email-form {
    padding: 28px;
  }

  .contact-panel h3 {
    font-size: 31px;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact .php-email-form button[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .header .btn-book-a-table {
    display: none;
  }

  .header .logo svg {
    width: 170px;
  }

  .header .logo img.site-logo-art {
    width: 170px;
  }
}

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

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

/* Navigation dropdowns */
.navbar .nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: #615c57;
  font-family: var(--font-default);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.navbar .nav-dropdown-toggle i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.navbar .nav-dropdown-toggle:hover,
.navbar .nav-dropdown-toggle:focus-visible,
.navbar .nav-dropdown-toggle.active {
  color: var(--color-primary);
}

.navbar .dropdown.dropdown-open > ul {
  visibility: visible;
  top: 100%;
  opacity: 1;
}

.navbar .dropdown.dropdown-open > .nav-dropdown-toggle i,
.navbar .nav-dropdown-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* Homepage content previews */
.content-preview,
.stories-preview {
  padding: 88px 0;
}

.content-preview {
  padding-top: 62px;
}

.content-preview-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 980px;
  gap: 18px;
  text-align: center;
}

.content-preview-heading > div {
  width: 100%;
  max-width: 820px;
}

.content-preview-heading h2 {
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 700;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--color-primary-dark);
}

.story-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(36, 29, 25, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-card:hover {
  box-shadow: 0 20px 48px rgba(36, 29, 25, 0.12);
  transform: translateY(-4px);
}

.story-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eee7df;
}

.story-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.story-card:hover .story-card-image img {
  transform: scale(1.035);
}

.story-card-body {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 26px;
}

.story-meta {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card h3 {
  font-family: var(--font-primary);
}

.story-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.story-card h3 a {
  color: var(--color-secondary);
}

.story-card h3 a:hover {
  color: var(--color-primary);
}

.story-card p:last-child {
  margin-bottom: 0;
  color: #6c655f;
}

.blog-preview-heading {
  max-width: 840px;
}

.blog-carousel {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 62px 48px;
}

.blog-carousel .carousel-inner {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(36, 29, 25, 0.13);
}

.blog-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  height: 440px;
  min-height: 420px;
  background: #fff;
}

.blog-slide-media {
  display: block;
  height: 440px;
  min-height: 0;
  overflow: hidden;
  background: #e9e1d8;
}

.blog-slide-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.blog-slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}

.blog-slide-copy h3 {
  margin: 0 0 16px;
  font-family: var(--font-primary);
  font-size: 38px;
  line-height: 1.15;
}

.blog-slide-copy h3 a {
  color: var(--color-secondary);
}

.blog-slide-copy h3 a:hover {
  color: var(--color-primary);
}

.blog-slide-copy > p:not(.story-meta) {
  margin-bottom: 24px;
  color: var(--color-muted);
}

.blog-slide-copy .text-link {
  align-self: flex-start;
}

.blog-carousel .carousel-control-prev,
.blog-carousel .carousel-control-next {
  width: 46px;
  height: 46px;
  top: 50%;
  bottom: auto;
  border: 1px solid rgba(184, 15, 18, 0.18);
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 10px 24px rgba(184, 15, 18, 0.24);
  opacity: 1;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.blog-carousel .carousel-control-prev {
  left: 0;
}

.blog-carousel .carousel-control-next {
  right: 0;
}

.blog-carousel .carousel-control-prev:hover,
.blog-carousel .carousel-control-next:hover {
  background: var(--color-primary-dark);
  transform: translateY(-50%) scale(1.06);
}

.blog-carousel .carousel-control-prev-icon,
.blog-carousel .carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

.blog-carousel .carousel-indicators {
  bottom: 8px;
  gap: 2px;
  margin-bottom: 0;
}

.blog-carousel .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  margin: 0 5px;
  border: 0;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0.28;
}

.blog-carousel .carousel-indicators .active {
  opacity: 1;
  transform: scale(1.18);
}

/* Content pages */
.content-page {
  background: #fff;
}

.subpage-brand {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 6px;
  color: #111;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 0.9;
}

.subpage-brand span {
  color: var(--color-primary);
}

.subpage-brand small {
  grid-column: 1 / -1;
  margin-top: 6px;
  color: #77706a;
  font-family: var(--font-default);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-brand-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: #111;
}

.site-brand-mark img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-brand-divider {
  width: 1px;
  height: 48px;
  margin: 0 12px;
  background: #171717;
}

.site-brand-mark strong {
  color: #111;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.page-hero {
  padding: 178px 0 90px;
  background:
    radial-gradient(circle at 80% 10%, rgba(184, 15, 18, 0.12), transparent 34%),
    linear-gradient(135deg, #f8f5f0, #eee6dc);
}

.page-hero .container {
  max-width: 920px;
  margin-left: auto;
  text-align: center;
}

.page-hero h1 {
  margin: 12px 0 20px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 700;
  line-height: 1.04;
}

.page-hero h1 span,
.content-cta h2 span {
  color: var(--color-primary);
}

.page-hero .container > p:last-of-type {
  max-width: 720px;
  margin: 0 auto;
  color: #655e58;
  font-size: 19px;
}

.recipe-page-hero {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.5), rgba(9, 9, 9, 0.22)),
    url("../img/recipe-hero-smoky-grill.webp") center 58% / cover no-repeat;
}

.recipe-page-hero .section-kicker {
  color: #ffaaac;
}

.recipe-page-hero h1 {
  color: #fff;
  letter-spacing: -0.015em;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.5);
}

.recipe-page-hero h1 span {
  color: #d21f27;
  -webkit-text-stroke: 0;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.72),
    0 0 24px rgba(255, 244, 237, 0.18);
}

.recipe-page-hero .container > p:last-of-type {
  color: rgba(255, 255, 255, 0.82);
}

.recipe-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.recipe-filters a {
  padding: 10px 18px;
  border: 1px solid rgba(184, 15, 18, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 16px rgba(184, 15, 18, 0.14);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.recipe-filters a:hover,
.recipe-filters a:focus-visible {
  border-color: rgba(184, 15, 18, 0.75);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.78),
    0 0 0 6px rgba(184, 15, 18, 0.24),
    0 10px 26px rgba(184, 15, 18, 0.24);
  color: #9f090c;
  transform: translateY(-2px);
}

.recipe-filters a:focus-visible {
  outline: none;
}

.food-safety-note {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(184, 15, 18, 0.14);
  border-radius: 16px;
  background: #fbf7f2;
}

.food-safety-note > i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(184, 15, 18, 0.09);
  color: var(--color-primary);
  font-size: 25px;
}

.food-safety-note h2 {
  margin: 0 0 5px;
  font-family: var(--font-primary);
  font-size: 23px;
}

.food-safety-note p {
  margin: 0;
  color: #665f59;
}

.food-safety-note > div {
  flex: 1;
}

.doneness-note-row {
  display: grid;
  gap: 10px;
}

.doneness-note-row > p:first-child {
  max-width: 820px;
}

.food-safety-note .doneness-reference {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.doneness-reference-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(184, 15, 18, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.doneness-reference span {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doneness-reference strong {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.15;
  white-space: nowrap;
}

.doneness-reference small {
  color: #756d67;
  font-size: 11px;
  white-space: nowrap;
}

.recipe-category {
  padding: 76px 0 22px;
  scroll-margin-top: 88px;
}

.recipe-category + .recipe-category {
  margin-top: 54px;
  border-top: 1px solid var(--color-border);
}

.recipe-category + .food-safety-note {
  margin-top: 54px;
  margin-bottom: 0;
}

.food-safety-note + .recipe-category {
  margin-top: 54px;
  border-top: 1px solid var(--color-border);
}

.recipe-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.recipe-category-heading h2 {
  margin: 6px 0 0;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 44px;
}

.recipe-category-heading h2 span {
  color: var(--color-primary);
}

.recipe-category-heading > p {
  max-width: 460px;
  margin: 0 0 5px;
  color: #6b645e;
  text-align: right;
}

.recipe-subcategory-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 54px 0 24px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

.recipe-subcategory-heading h3 {
  margin: 5px 0 0;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 34px;
}

.recipe-subcategory-heading h3 span {
  color: var(--color-primary);
}

.recipe-subcategory-heading > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: #6b645e;
  text-align: right;
}

.recipe-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.compact-recipe-card {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 13px 38px rgba(36, 29, 25, 0.07);
}

.compact-recipe-card > img {
    width: 100%;
    height: 150px;
    aspect-ratio: auto;
    object-fit: cover;
    background: #eee7df;
}

.compact-recipe-card > img.maple-marinade-photo {
  object-position: center 18%;
}

.compact-recipe-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.compact-recipe-body > h3 {
  margin: 0 0 11px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 25px;
  line-height: 1.18;
}

.compact-recipe-body > p:not(.story-meta) {
  margin-bottom: 18px;
  color: #6b645e;
  font-size: 14px;
}

.compact-recipe-body details {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
}

.compact-recipe-body summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0 0;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.compact-recipe-body summary::-webkit-details-marker {
  display: none;
}

.compact-recipe-body summary::after {
  content: "+";
  font-size: 20px;
  line-height: 1;
}

.compact-recipe-body details[open] summary::after {
  content: "−";
}

.compact-recipe-body details h4 {
  margin: 19px 0 7px;
  font-family: var(--font-primary);
  font-size: 18px;
}

.compact-recipe-body details p,
.compact-recipe-body details ul,
.compact-recipe-body details ol {
  color: #665f59;
  font-size: 14px;
}

.compact-recipe-body details .recipe-ingredients {
  margin: 0;
  padding-left: 20px;
}

.compact-recipe-body details .recipe-ingredients li {
  padding-left: 3px;
  line-height: 1.45;
}

.compact-recipe-body details ol {
  margin-bottom: 0;
  padding-left: 19px;
}

.compact-recipe-body details li + li {
  margin-top: 6px;
}

.photo-credits {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  color: #746d67;
  font-size: 13px;
}

.photo-credits summary {
  color: #5e5751;
  cursor: pointer;
  font-weight: 700;
}

.photo-credits p {
  margin: 14px 0 10px;
}

.photo-credits ul {
  columns: 2;
  margin-bottom: 0;
  padding-left: 18px;
}

.photo-credits li {
  margin-bottom: 5px;
}

.photo-credits a {
  color: var(--color-primary);
}

.recipe-library,
.journal-library {
  padding: 100px 0;
}

.recipe-library {
  padding-top: 44px;
}

.recipe-library > .container > .recipe-category:first-child {
  padding-top: 0;
}

.recipe-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: center;
  padding: 50px 0;
  scroll-margin-top: 100px;
}

.recipe-detail + .recipe-detail {
  border-top: 1px solid var(--color-border);
}

.recipe-detail-reverse .recipe-media {
  order: 2;
}

.recipe-media {
  overflow: hidden;
  border-radius: 22px;
  background: #eee8e2;
  box-shadow: 0 20px 55px rgba(39, 31, 26, 0.12);
}

.recipe-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.recipe-copy h2,
.journal-lead-copy h2,
.content-cta h2 {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 43px;
}

.recipe-lead {
  color: #615a54;
  font-size: 17px;
}

.recipe-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 28px;
}

.recipe-columns h3 {
  font-family: var(--font-primary);
  font-size: 22px;
}

.recipe-columns ul,
.recipe-columns ol {
  padding-left: 20px;
  color: #625b55;
}

.recipe-columns li + li {
  margin-top: 7px;
}

.cook-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--color-primary);
  background: #f8f4ef;
  color: #5d5650;
}

.content-cta {
  padding: 90px 0;
  text-align: center;
}

.content-cta .container {
  max-width: 760px;
}

.content-cta h2 {
  margin: 8px 0 14px;
}

.content-cta .btn-book-a-table {
  display: inline-block;
  margin-top: 14px;
}

.journal-lead-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  border-radius: 24px;
  background: #211c18;
  box-shadow: 0 20px 60px rgba(29, 23, 20, 0.14);
}

.journal-lead-image img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.journal-lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  color: rgba(255, 255, 255, 0.76);
}

.journal-lead-copy h2 a {
  color: #fff;
}

.journal-lead-copy h2 a:hover {
  color: #ff9b9d;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}

.journal-lead-copy .article-link {
  align-self: flex-start;
  margin-top: 12px;
  color: #ff9b9d;
}

.article-hero {
  padding: 148px 0 0;
  background: #f7f3ee;
}

.article-hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.article-breadcrumbs {
  margin-bottom: 22px;
  color: #756d67;
  font-size: 13px;
}

.article-breadcrumbs a {
  color: var(--color-primary);
  font-weight: 700;
}

.article-hero h1 {
  margin: 10px 0 20px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1.06;
}

.article-deck {
  max-width: 760px;
  margin: 0 auto;
  color: #625b55;
  font-size: 19px;
  line-height: 1.65;
}

.article-meta {
  margin: 20px 0 0;
  color: #817871;
  font-size: 13px;
  font-weight: 600;
}

.article-hero-image {
  overflow: hidden;
  height: clamp(320px, 48vw, 620px);
  margin: 44px 0 0;
  border-radius: 24px 24px 0 0;
  background: #e8e0d7;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 72px 0 92px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 300px);
  justify-content: center;
  gap: 70px;
}

.article-body {
  color: #4f4944;
  font-size: 17px;
  line-height: 1.75;
}

.article-body > p:first-child {
  color: #302b27;
  font-size: 20px;
  line-height: 1.65;
}

.article-body h2 {
  margin: 48px 0 16px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 36px;
  line-height: 1.15;
  scroll-margin-top: 110px;
}

.article-body h3 {
  margin: 30px 0 10px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 25px;
  scroll-margin-top: 110px;
}

.cut-guide td a {
  font-weight: 700;
  text-decoration-color: rgba(184, 15, 18, 0.35);
}

.cut-guide td a:hover,
.cut-guide td a:focus-visible {
  text-decoration-color: currentColor;
}

.article-body li + li {
  margin-top: 10px;
}

.article-body a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-photo {
  margin: 42px 0;
}

.article-photo img {
  width: 100%;
  max-height: 520px;
  border-radius: 18px;
  object-fit: cover;
}

.article-photo figcaption {
  margin-top: 10px;
  color: #817871;
  font-size: 13px;
}

.article-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 38px 0;
}

.article-photo-grid img {
  width: 100%;
  height: 210px;
  border-radius: 14px;
  object-fit: cover;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 112px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #f8f4ef;
}

.article-aside h2 {
  margin: 0 0 14px;
  font-family: var(--font-primary);
  font-size: 24px;
}

.article-aside ul {
  margin: 0;
  padding-left: 19px;
  color: #625b55;
  font-size: 14px;
}

.article-aside li + li {
  margin-top: 9px;
}

.article-aside .btn-book-a-table {
  display: inline-block;
  margin-top: 22px;
}

.article-callout {
  margin: 38px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--color-primary);
  background: #f8f4ef;
  color: #443e39;
}

.cut-guide {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  font-size: 15px;
}

.cut-guide th,
.cut-guide td {
  padding: 15px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.cut-guide th {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 18px;
}

.journal-lead-copy h2 {
  color: #fff;
}

.draft-label {
  align-self: flex-start;
  margin-top: 10px;
  padding: 7px 11px;
  border-radius: 8px;
  background: rgba(184, 15, 18, 0.09);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.journal-lead-copy .draft-label {
  background: rgba(255, 255, 255, 0.1);
  color: #ff9b9d;
}

.content-footer {
  padding: 30px 0;
}

.content-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.content-footer a {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 991px) {
  .navbar .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--color-secondary);
    font-size: 17px;
  }

  .navbar .dropdown > ul {
    position: static;
    display: none;
    visibility: visible;
    width: auto;
    margin: 0 8px 8px;
    padding: 4px 0 4px 14px;
    border: 0;
    border-left: 2px solid rgba(184, 15, 18, 0.16);
    box-shadow: none;
    opacity: 1;
  }

  .navbar .dropdown.dropdown-open > ul {
    display: block;
  }

  .navbar .dropdown > ul a {
    padding: 11px 14px;
    font-size: 15px;
  }

  .content-preview-heading {
    align-items: center;
  }

  .order-to-recipes-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .bridge-link {
    grid-column: 2;
    justify-self: start;
  }

  .blog-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 300px minmax(0, 1fr);
    height: 620px;
  }

  .blog-slide-media,
  .blog-slide-media img {
    min-height: 300px;
    height: 300px;
  }

  .blog-slide-copy {
    padding: 40px 48px 48px;
  }

  .recipe-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recipe-detail,
  .journal-lead-card {
    grid-template-columns: 1fr;
  }

  .recipe-detail-reverse .recipe-media {
    order: initial;
  }

  .journal-lead-image img {
    min-height: 360px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 767px) {
  .stories-preview,
  .recipe-library,
  .journal-library {
    padding: 70px 0;
  }

  .content-preview {
    padding: 54px 0 70px;
  }

  .recipe-library {
    padding-top: 36px;
  }

  .content-preview-heading h2 {
    white-space: normal;
  }

  .order-to-recipes-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 38px 0;
    text-align: center;
  }

  .order-to-recipes-route {
    justify-content: center;
  }

  .bridge-link {
    grid-column: 1;
    justify-self: center;
  }

  .blog-carousel {
    padding: 0 0 44px;
  }

  .blog-slide-media,
  .blog-slide-media img {
    min-height: 230px;
    height: 230px;
  }

  .blog-slide {
    grid-template-rows: 230px minmax(0, 1fr);
    height: 590px;
  }

  .blog-slide-copy {
    padding: 30px;
  }

  .blog-slide-copy h3 {
    font-size: 31px;
  }

  .blog-carousel .carousel-control-prev,
  .blog-carousel .carousel-control-next {
    width: 42px;
    height: 42px;
    top: 115px;
  }

  .blog-carousel .carousel-control-prev {
    left: 12px;
  }

  .blog-carousel .carousel-control-next {
    right: 12px;
  }

  .journal-lead-copy {
    padding: 34px;
  }

  .page-hero {
    padding: 138px 0 70px;
  }

  .page-hero h1 {
    font-size: 48px;
  }

  .recipe-category {
    padding-top: 58px;
  }

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

  .recipe-category-heading > p,
  .recipe-subcategory-heading > p {
    text-align: left;
  }

  .recipe-subcategory-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 42px;
    padding-top: 24px;
  }

  .recipe-card-grid {
    grid-template-columns: 1fr;
  }

  .compact-recipe-card > img {
    height: 170px;
  }

  .compact-recipe-body > p:not(.story-meta) {
    min-height: auto;
  }

  .photo-credits ul {
    columns: 1;
  }

  .recipe-detail {
    gap: 30px;
    padding: 38px 0;
  }

  .recipe-copy h2,
  .journal-lead-copy h2,
  .content-cta h2 {
    font-size: 35px;
  }

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

  .article-hero {
    padding-top: 126px;
  }

  .article-content {
    padding: 54px 0 72px;
  }

  .article-photo-grid {
    grid-template-columns: 1fr;
  }

  .article-photo-grid img {
    height: 240px;
  }

  .cut-guide {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 767px) {
  .food-safety-note {
    align-items: flex-start;
  }

  .food-safety-note .doneness-reference {
    grid-template-columns: 1fr;
  }

  .doneness-reference-card {
    display: grid;
    grid-template-columns: minmax(108px, 1fr) auto auto;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .subpage-brand {
    font-size: 24px;
  }

  .site-brand-mark img {
    width: 42px;
    height: 42px;
  }

  .site-brand-divider {
    height: 38px;
    margin: 0 9px;
  }

  .site-brand-mark strong {
    font-size: 24px;
  }

  .food-safety-note {
    align-items: flex-start;
    padding: 20px;
  }

  .doneness-note-row {
    gap: 10px;
  }
}

/* FAQ page */
.faq-hero {
  position: relative;
  overflow: hidden;
  padding: 152px 0 76px;
  background:
    radial-gradient(circle at 14% 18%, rgba(184, 15, 18, 0.1), transparent 32%),
    linear-gradient(135deg, #fbf8f4 0%, #f1e9df 100%);
}

.faq-hero::after {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(184, 15, 18, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(184, 15, 18, 0.035),
    0 0 0 92px rgba(184, 15, 18, 0.025);
  content: "";
  pointer-events: none;
}

.faq-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.faq-hero-copy {
  max-width: 690px;
}

.faq-hero-copy h1 {
  max-width: 680px;
  margin: 12px 0 22px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(50px, 6.5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.faq-hero-copy h1 span {
  color: var(--color-primary);
}

.faq-hero-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 0;
  color: #625b55;
  font-size: 19px;
  line-height: 1.75;
}

.faq-hero-media {
  position: relative;
  margin: 0;
}

.faq-hero-media::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(184, 15, 18, 0.2);
  border-radius: 26px;
  content: "";
}

.faq-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  box-shadow: 0 24px 62px rgba(44, 31, 21, 0.2);
  object-fit: cover;
}

.faq-hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(20, 16, 13, 0.76);
  backdrop-filter: blur(9px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.faq-hero-media figcaption i {
  color: #ff8588;
}

.faq-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.faq-jump-links a {
  padding: 10px 15px;
  border: 1px solid rgba(184, 15, 18, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 6px 18px rgba(77, 51, 34, 0.06);
  color: #862126;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-jump-links a:hover,
.faq-jump-links a:focus-visible {
  border-color: rgba(184, 15, 18, 0.55);
  background: #fff;
  box-shadow: 0 10px 24px rgba(143, 11, 14, 0.14);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.faq-content {
  padding: 28px 0 56px;
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(230px, 270px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 4vw, 56px);
}

.faq-sidebar {
  position: sticky;
  top: 112px;
  padding: 30px;
  border: 1px solid #e8ddd3;
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    #f8f2ec;
  box-shadow: 0 18px 46px rgba(47, 33, 24, 0.08);
}

.faq-sidebar h2 {
  margin: 8px 0 24px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 31px;
  line-height: 1.15;
}

.faq-sidebar ul {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.faq-sidebar li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #68605a;
  font-size: 13px;
  line-height: 1.55;
}

.faq-sidebar li i {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(184, 15, 18, 0.09);
  color: var(--color-primary);
  font-size: 17px;
}

.faq-sidebar li span {
  display: grid;
  gap: 2px;
}

.faq-sidebar li strong {
  color: #2c2825;
  font-size: 14px;
}

.faq-sidebar .btn-book-a-table {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

.faq-group {
  scroll-margin-top: 112px;
  padding: 0;
  margin-bottom: 36px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group-heading {
  margin-bottom: 14px;
}

.faq-group-heading h2 {
  margin: 8px 0 0;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

.faq-group-heading h2 span {
  color: var(--color-primary);
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid #e8ded6;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(46, 31, 21, 0.045);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.faq-item[open] {
  border-color: rgba(184, 15, 18, 0.28);
  box-shadow: 0 14px 36px rgba(71, 42, 24, 0.08);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 16px 58px 16px 22px;
  color: #25211e;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(184, 15, 18, 0.08);
  color: var(--color-primary);
  content: "+";
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--color-primary);
}

.faq-item summary:focus-visible {
  border-radius: 14px;
  outline: 3px solid rgba(184, 15, 18, 0.18);
  outline-offset: 2px;
}

.faq-item[open] summary::after {
  background: var(--color-primary);
  color: #fff;
  content: "–";
}

.faq-answer {
  margin: 0 24px;
  padding: 0 38px 24px 0;
  border-top: 1px solid #eee5de;
  color: #655e58;
  line-height: 1.75;
}

.faq-answer p {
  margin: 17px 0 0;
}

.faq-answer ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  margin: 17px 0 0;
  padding-left: 20px;
}

.faq-answer a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(184, 15, 18, 0.3);
  text-underline-offset: 3px;
}

.faq-answer a:hover,
.faq-answer a:focus-visible {
  color: #85080b;
  text-decoration-color: currentColor;
}

.faq-contact-cta {
  padding: 72px 0;
  background:
    radial-gradient(circle at 82% 30%, rgba(184, 15, 18, 0.25), transparent 30%),
    linear-gradient(135deg, #1b1714, #2c221d);
}

.faq-contact-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.faq-contact-cta .section-kicker {
  color: #ff9ea1;
}

.faq-contact-cta h2 {
  margin: 8px 0 14px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.05;
}

.faq-contact-cta h2 span {
  color: #ef4046;
}

.faq-contact-cta p:not(.section-kicker) {
  max-width: 730px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.faq-contact-actions {
  display: grid;
  flex: 0 0 auto;
  justify-items: center;
  gap: 14px;
}

.faq-contact-actions .btn-book-a-table {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  color: #fff;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.faq-contact-actions .btn-book-a-table:hover,
.faq-contact-actions .btn-book-a-table:focus-visible {
  color: #fff;
  background: var(--color-primary-dark);
}

.faq-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.faq-email-link:hover,
.faq-email-link:focus-visible {
  color: #fff;
}

@media (max-width: 991px) {
  .faq-hero {
    padding-top: 130px;
  }

  .faq-hero-grid {
    grid-template-columns: 1fr;
  }

  .faq-hero-copy {
    max-width: 760px;
  }

  .faq-hero-media {
    max-width: 760px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-sidebar ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-sidebar .btn-book-a-table {
    width: auto;
  }

  .faq-contact-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-contact-actions {
    justify-items: start;
  }
}

@media (max-width: 767px) {
  .faq-hero {
    padding: 116px 0 58px;
  }

  .faq-hero-copy h1 {
    font-size: clamp(44px, 14vw, 60px);
  }

  .faq-hero-copy > p:not(.section-kicker) {
    font-size: 17px;
  }

  .faq-hero-media::before {
    inset: 12px -10px -12px 10px;
  }

  .faq-content {
    padding: 58px 0 68px;
  }

  .faq-layout {
    gap: 54px;
  }

  .faq-sidebar ul {
    grid-template-columns: 1fr;
  }

  .faq-group {
    margin-bottom: 32px;
  }

  .faq-answer ul {
    grid-template-columns: 1fr;
  }

  .faq-contact-cta {
    padding: 58px 0;
  }
}

@media (max-width: 575px) {
  .faq-jump-links {
    gap: 8px;
  }

  .faq-jump-links a {
    padding: 9px 12px;
  }

  .faq-sidebar {
    padding: 24px;
  }

  .faq-item summary {
    min-height: 66px;
    padding: 18px 54px 18px 19px;
    font-size: 17px;
  }

  .faq-item summary::after {
    right: 17px;
  }

  .faq-answer {
    margin: 0 19px;
    padding-right: 0;
  }
}


/* Mobile navigation interaction */
@media (max-width: 991px) {
  .navbar ul {
    list-style: none;
  }

  .navbar ul li {
    margin: 6px 0;
    list-style: none;
  }

  .navbar a,
  .navbar a:focus {
    position: relative;
    padding: 14px 16px;
    border-bottom: 0;
    border-radius: 12px;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  .navbar a:hover,
  .navbar a:focus-visible {
    background: rgba(184, 15, 18, 0.06);
    box-shadow: 0 0 0 1px rgba(184, 15, 18, 0.14), 0 10px 28px rgba(143, 11, 14, 0.13);
    color: var(--color-primary);
    transform: translateX(3px);
  }

  .navbar .active,
  .navbar .active:focus {
    border-color: transparent;
    background: rgba(184, 15, 18, 0.08);
    box-shadow: inset 3px 0 0 var(--color-primary), 0 8px 24px rgba(143, 11, 14, 0.1);
    color: var(--color-primary);
  }
}
