@charset "UTF-8";
/* ----------------------------------------------------------------------
   oysterdrive_10 public CSS — the compiled output that ships in
   wwwroot/css/oysterdrive.public.css.

   This is the SCSS manifest. The actual rules live in the partials
   under `abstracts/`, `base/`, `components/`, and `pages/`. The order
   of `@use` statements below is the order in which the rules appear
   in the compiled output; CSS cascade depends on this ordering, so
   later partials override earlier ones for conflicting selectors.

   To compile:
       npm run scss:build
       (which runs `sass Styles:wwwroot/css --no-source-map`)

   The compiled `wwwroot/css/oysterdrive.public.css` IS committed to
   git so that local development without Node/Sass installed still
   works. CI also regenerates this file on every build via
   `npm ci && npm run scss:build` inside `oysterdrive_10/Dockerfile`,
   so any drift between the SCSS source and the committed compiled
   file is caught at build time.

   When you add a new partial here, also `@use` it in the order it
   should appear in the cascade. The page-level partials go last.
   ---------------------------------------------------------------------- */
:root {
  --od-sage-wash: #eef0e7;
  --od-paper: #fbfaf6;
  --od-ink: #2c2f27;
  --od-sage: #6b7f5e;
  --od-sage-light: #a8b89a;
  --od-sage-pale: #c9d4ba;
  --od-bench-dark: #1d1f19;
  --od-cream-on-dark: #f3f1e9;
  --od-text-secondary: #54584b;
  --od-text-muted: #6f7365;
  --od-field-border: #d4d6c8;
  --od-hairline: rgba(44, 47, 39, 0.12);
  --od-spirited-text: #8a6a4f;
  --od-spirited-border: #c9b39a;
  --od-draft-text: #a3722e;
  --od-draft-bg: #f5e9d2;
  --od-page-padding: clamp(22px, 4vw, 48px);
  --od-radius-card: 8px;
  --od-radius-panel: 12px;
}

/* ----------------------------------------------------------------------
   Layout primitives live in Bootstrap 5.3. Use `.container`,
   `.container-xxl`, `.row`, `.col-*`, `.g-*`, `.py-*` directly
   in views — don't write a parallel layout system here.

   Brand-specific components (cards, pills, buttons, tiles, recipe
   detail elements) live in `components/`.
   ---------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
}

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

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

button, input, textarea, select {
  font: inherit;
}

body {
  background: var(--od-sage-wash);
  color: var(--od-ink);
  font-family: "Karla", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.od-display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.od-kicker {
  color: var(--od-sage);
  font-family: "Karla", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.od-section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1.08;
  margin: 0;
}
.od-section-title em {
  color: var(--od-sage);
  font-style: italic;
}

.od-muted {
  color: var(--od-text-muted);
}

.od-dek {
  color: var(--od-text-secondary);
  margin: 0;
}

/* ----------------------------------------------------------------------
   Global styles.

   Layout primitives (containers, rows, columns, gutters, spacing,
   display, border) come straight from Bootstrap 5.3 — see
   wwwroot/lib/bootstrap. Use them directly in views:

     <section class="bg-paper border-top border-bottom py-5">
       <div class="container py-3">
         <div class="row g-4">
           <div class="col-12 col-lg-6">…</div>
         </div>
       </div>
     </section>

   Do not override `.container-xxl` in our SCSS: any `--bs-gutter-x`
   value we set there is silently reset by Bootstrap's
   `.row { --bs-gutter-x: 1.5rem }` rule, which means children of
   any `.row` always see 1.5rem of gutter, not the value the
   container tried to set. We hit this exact bug in June 2026.

   The only custom classes below are brand-specific:
     - .bg-paper       : sage-cream background (brand token).
     - .od-page-main   : min-height so short pages don't have a
                         footer glued to the viewport top.
     - .od-page-header : fluid vertical padding for page intro
                         sections (horizontal padding is provided
                         by the `.container` inside).
     - .od-section-title  : overrides the default bottom margin
                            Bootstrap puts on headings.
     - .od-dek         : brand dek (subtitle) typography.
   ---------------------------------------------------------------------- */
.bg-paper {
  background: var(--od-paper);
}

.od-page-main {
  min-height: 60vh;
}

.od-page-header {
  padding-block: clamp(2.5rem, 1rem + 4vw, 4rem) clamp(1.5rem, 0.5rem + 2vw, 2.5rem);
}

.od-page-header .od-kicker {
  margin-bottom: 16px;
}

.od-section-title {
  margin-bottom: 0;
}

.od-dek {
  color: var(--od-text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

/* ----------------------------------------------------------------------
   Brand buttons.

   `.od-button--primary` / `.od-button--secondary` are the inline
   pill buttons used on the home hero and elsewhere. They bind to
   Bootstrap's `--bs-btn-*` variables so they work whether the
   markup uses `.btn` or our own `.od-button` class.

   `.od-btn-pill` is the standalone pill button used on /contact
   (form submit) and /about (newsletter submit). The `--ghost`
   modifier is the outline variant.

   `.od-link-underline` is the small uppercase tracked link used
   in the dark band batch rows and the home hero CTA row.
   ---------------------------------------------------------------------- */
.od-button,
.btn-od-primary,
.btn-od-outline {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 42px;
  padding: 12px 20px;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.od-button:hover, .od-button:focus,
.btn-od-primary:hover,
.btn-od-primary:focus,
.btn-od-outline:hover,
.btn-od-outline:focus {
  transform: translateY(-1px);
}

.od-button--primary,
.btn-od-primary {
  --bs-btn-bg: var(--od-ink);
  --bs-btn-border-color: var(--od-ink);
  --bs-btn-color: var(--od-cream-on-dark);
  --bs-btn-hover-bg: var(--od-sage);
  --bs-btn-hover-border-color: var(--od-sage);
  --bs-btn-hover-color: var(--od-cream-on-dark);
  --bs-btn-active-bg: var(--od-sage);
  --bs-btn-active-border-color: var(--od-sage);
  --bs-btn-active-color: var(--od-cream-on-dark);
  background: var(--od-ink);
  border: 1px solid var(--od-ink);
  color: var(--od-cream-on-dark);
}

.od-button--secondary,
.btn-od-outline {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--od-ink);
  --bs-btn-color: var(--od-ink);
  --bs-btn-hover-bg: rgba(44, 47, 39, .06);
  --bs-btn-hover-border-color: var(--od-ink);
  --bs-btn-hover-color: var(--od-ink);
  background: transparent;
  border: 1px solid var(--od-ink);
  color: var(--od-ink);
}

.od-link-underline {
  border-bottom: 1px solid currentColor;
  color: var(--od-sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 2px;
  text-transform: uppercase;
}

/* ----- Standalone pill button ----- */
.od-btn-pill {
  background: var(--od-ink);
  border: none;
  border-radius: 99px;
  color: var(--od-cream-on-dark);
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 14px 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 120ms ease;
}

.od-btn-pill:hover,
.od-btn-pill:focus {
  background: var(--od-sage);
  color: var(--od-cream-on-dark);
}

.od-btn-pill:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.od-btn-pill--ghost {
  background: transparent;
  border: 1px solid var(--od-ink);
  color: var(--od-ink);
}

.od-btn-pill--ghost:hover,
.od-btn-pill--ghost:focus-visible {
  background: var(--od-ink);
  color: #fff;
}

/* Brand-consistent focus rings. The default Bootstrap
   blue is overridden to sage (matches the brand palette)
   for any custom-styled button. The Bootstrap default
   still applies to plain form controls. */
.od-btn-pill:focus-visible,
.od-btn-primary:focus-visible,
.od-btn-secondary:focus-visible,
.od-recipe-stepper__btn:focus-visible,
.od-recipe-related__link:focus-visible {
  outline: 2px solid var(--od-sage);
  outline-offset: 3px;
}

.od-site-header {
  padding-block: 18px 12px;
}

.od-site-nav {
  --bs-navbar-padding-y: 0;
  --bs-navbar-color: var(--od-ink);
  --bs-navbar-hover-color: var(--od-sage);
  --bs-navbar-active-color: var(--od-sage);
}

.od-site-nav__container {
  align-items: center;
}

.od-site-nav__brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  margin-right: 20px;
  min-width: 0;
}

.od-site-nav__icon {
  flex: 0 0 auto;
  height: 38px;
  width: 38px;
}

.od-site-nav__wordmark {
  height: auto;
  max-width: 48vw;
  width: 170px;
}

.od-site-nav__toggler {
  border-color: var(--od-hairline);
  border-radius: 999px;
  padding: 9px 11px;
}
.od-site-nav__toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(107, 127, 94, 0.25);
}

.od-site-nav__collapse {
  padding-top: 18px;
}

.od-site-nav__links {
  gap: 2px;
}

.od-site-nav__link {
  color: var(--od-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 11px 0;
  position: relative;
  text-transform: uppercase;
}
.od-site-nav__link.is-active, .od-site-nav__link:hover, .od-site-nav__link:focus {
  color: var(--od-sage);
}
.od-site-nav__link.is-active::after {
  background: var(--od-sage);
  bottom: 5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 44px;
}

.od-site-nav__signin {
  border: 1px solid var(--od-ink);
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 16px;
  width: fit-content;
}
.od-site-nav__signin:hover, .od-site-nav__signin:focus {
  background: rgba(44, 47, 39, 0.06);
}

@media (min-width: 992px) {
  .od-site-header {
    padding-block: 30px 18px;
  }
  .od-site-nav__collapse {
    padding-top: 0;
  }
  .od-site-nav__links {
    gap: 14px;
  }
  .od-site-nav__link {
    padding: 8px 0;
  }
  .od-site-nav__link.is-active::after {
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
  }
  .od-site-nav__signin {
    margin-left: 6px;
    margin-top: 0;
    padding: 9px 16px;
  }
}
.od-site-footer {
  border-top: 1px solid var(--od-hairline);
  padding: 28px var(--od-page-padding) 34px;
}

.od-site-footer__inner {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr auto;
  margin-inline: auto;
  max-width: 1180px;
}

.od-site-footer__icon {
  height: 34px;
  width: 34px;
}

.od-site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.od-site-footer__links a,
.od-site-footer__copy {
  color: var(--od-text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.od-site-footer__links a:hover {
  color: var(--od-sage);
}

@media (max-width: 760px) {
  .od-site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .od-site-footer__links {
    justify-content: flex-start;
  }
}
/* ----------------------------------------------------------------------
   `.od-recipe-card` is the home-page recipe card (variable image
   height via clamp). `.od-drink-card` is the drinks-list variant:
   tighter spacing and a fixed 4:3 aspect ratio.
   ---------------------------------------------------------------------- */
.od-recipe-card {
  --bs-card-spacer-x: 0;
  --bs-card-spacer-y: 0;
  color: var(--od-ink);
  text-decoration: none;
}
.od-recipe-card:hover, .od-recipe-card:focus {
  color: var(--od-ink);
}
.od-recipe-card:hover .od-recipe-card__image, .od-recipe-card:focus .od-recipe-card__image {
  transform: scale(1.02);
}

.od-recipe-card__media {
  border-radius: var(--od-radius-card);
  height: clamp(210px, 24vw, 260px);
  margin-bottom: 14px;
  overflow: hidden;
}

.od-recipe-card__image {
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
  width: 100%;
}

.od-recipe-card__body {
  padding: 0;
}

.od-recipe-card__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.od-recipe-card__time {
  color: var(--od-text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.od-recipe-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 6px;
}

.od-recipe-card__dek {
  color: var(--od-text-muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

/* ----- Drinks-list variant ----- */
.od-drink-card {
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
}

.od-drink-card__media {
  aspect-ratio: 4/3;
  border-radius: var(--od-radius-card);
  display: block;
  overflow: hidden;
}

.od-drink-card__image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.od-drink-card__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.od-drink-card__time {
  color: var(--od-text-muted);
  font-size: 11px;
}

.od-drink-card__title {
  color: var(--od-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.od-drink-card__title a {
  color: inherit;
  text-decoration: none;
}

.od-drink-card__dek {
  color: var(--od-text-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* ----------------------------------------------------------------------
   `.od-badge` is the small uppercase tag rendered inline next to a
   recipe title. `.od-pill` is the larger rounded interactive
   button used in the drinks filter row.
   ---------------------------------------------------------------------- */
.od-badge {
  --bs-badge-color: var(--od-sage);
  align-items: center;
  background: transparent;
  border: 1px solid var(--od-sage-light);
  border-radius: 999px;
  color: var(--od-sage);
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  padding: 6px 9px 5px;
  text-transform: uppercase;
}

.od-badge--spirited {
  --bs-badge-color: var(--od-spirited-text);
  border-color: var(--od-spirited-border);
  color: var(--od-spirited-text);
}

/* ----- Filter pill (drinks category filter row) ----- */
.od-pill {
  background: transparent;
  border: 1px solid var(--od-ink);
  border-radius: 99px;
  color: var(--od-ink);
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 9px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 120ms ease, color 120ms ease;
}

.od-pill:hover,
.od-pill:focus {
  background: var(--od-ink);
  color: var(--od-cream-on-dark);
}

.od-pill.is-active {
  background: var(--od-ink);
  color: var(--od-cream-on-dark);
}

/* ----------------------------------------------------------------------
   Category tiles.

   `.od-category-tile` is the dashed-border featured tile on the
   home hero (3-up grid above the dark band). The `--featured`
   modifier applies the sage wash background and solid sage border.

   `.od-category-card` is the variant used on /about. Same dashed
   border but slightly different spacing and uses a kicker
   structure (`.od-category-card__name` + `.od-category-card__tagline`).
   ---------------------------------------------------------------------- */
.od-category-tile {
  align-items: center;
  background: transparent;
  border: 1px dashed var(--od-sage-light);
  border-radius: var(--od-radius-card);
  color: var(--od-ink);
  display: flex;
  flex-direction: column;
  min-height: 136px;
  justify-content: center;
  padding: 22px 18px;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.od-category-tile:hover, .od-category-tile:focus {
  background: var(--od-sage-wash);
  color: var(--od-ink);
  transform: translateY(-2px);
}

.od-category-tile--featured {
  background: rgba(238, 240, 231, 0.65);
  border-color: var(--od-sage);
}

.od-category-tile__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 7px;
}

.od-category-tile__meta {
  color: var(--od-text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ----- About-page category card ----- */
.od-category-card {
  background: transparent;
  border: 1px dashed var(--od-sage-light);
  border-radius: var(--od-radius-card);
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  text-decoration: none;
  transition: background 120ms ease, border-color 120ms ease;
}

.od-category-card:hover,
.od-category-card:focus {
  background: rgba(168, 184, 154, 0.12);
  border-color: var(--od-sage);
}

.od-category-card__name {
  color: var(--od-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.od-category-card__tagline {
  color: var(--od-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.od-dark-band {
  background: var(--od-bench-dark);
  border-radius: var(--od-radius-panel);
  color: var(--od-cream-on-dark);
  overflow: hidden;
}

.od-batch-row {
  border-top: 1px solid rgba(243, 241, 233, 0.16);
  display: grid;
  gap: 18px;
  grid-template-columns: 72px 1fr auto;
  padding: 17px 0;
}

.od-batch-row__number {
  color: var(--od-sage-pale);
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.od-batch-row__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 24px;
  line-height: 1.05;
}

.od-batch-row__status {
  color: var(--od-sage-pale);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .od-batch-row {
    grid-template-columns: 1fr;
  }
}
/* ----------------------------------------------------------------------
   Form fields and labels.

   `.od-form-field` is the brand-consistent text input / textarea
   used by /contact (and any future form). It overrides the Bootstrap
   form-control colors so the focus ring is sage and the field
   border is the brand field-border token (not Bootstrap blue).

   `.od-form-label` is the uppercase tracked label that sits above
   each input. Mirrors the eyebrow / kicker style for visual
   consistency across the public site.
   ---------------------------------------------------------------------- */
.od-form-field {
  background: #fff;
  border: 1px solid var(--od-field-border);
  border-radius: var(--od-radius-card);
  color: var(--od-ink);
  font-family: Karla, system-ui, sans-serif;
  font-size: 15px;
  outline: none;
  padding: 13px 16px;
  transition: border-color 120ms ease, box-shadow 120ms ease;
  width: 100%;
}

.od-form-field:focus {
  border-color: var(--od-sage);
  box-shadow: 0 0 0 3px rgba(107, 127, 94, 0.18);
}

.od-form-field.is-invalid {
  border-color: var(--od-draft-text);
}

.od-form-label {
  color: var(--od-text-secondary);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------------
   Contact page (Contact.dc.html) — aside rules and link list.

   `.od-contact-aside` is the right-hand column on /contact: a stack
   of rules separated by hairline borders, each with an uppercase
   sage kicker.

   `.od-contact-link-list` is the small vertical list of external
   links (newsletter signup, Instagram, etc.) that sits inside the
   aside. Sage color, hover goes to ink and underlines.
   ---------------------------------------------------------------------- */
.od-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.od-contact-aside__rule {
  border-top: 1px solid var(--od-hairline);
  padding-top: 24px;
}

.od-contact-aside__heading {
  color: var(--od-sage);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.od-contact-link-list {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  gap: 8px;
}

.od-contact-link-list a {
  color: var(--od-sage);
  font-weight: 600;
  text-decoration: none;
}

.od-contact-link-list a:hover,
.od-contact-link-list a:focus {
  color: var(--od-ink);
  text-decoration: underline;
}

/* ----------------------------------------------------------------------
   Sections shared across the public category/utility pages
   (/drinks, /about, /contact) plus the recipe-detail page
   and the branded error pages.

   This is a catch-all partial for layout primitives that don't
   have a single home: filter rows, banners, recipe-detail
   elements, error pages, and the accessibility skip-link.
   ---------------------------------------------------------------------- */
/* ----- Headlines & page headers ----- */
.od-display-h1 {
  color: var(--od-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.875rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.04;
  margin: 0 0 18px;
}

.od-display-h1 em {
  color: var(--od-sage);
  font-style: italic;
}

/* ----- Page header (vertical padding only — horizontal padding
   is provided by the .container inside) -----
   Defined in base/_global.scss. ----- */
/* ----- Filter row (drinks category filters) ----- */
.od-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .od-filter-row {
    justify-content: flex-end;
  }
}
/* ----- Banner (Contact's TempData thanks / errors) ----- */
.od-banner {
  background: var(--od-paper);
  border-left: 3px solid var(--od-sage);
  border-radius: 6px;
  color: var(--od-ink);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 24px;
  padding: 14px 20px;
}

.od-banner--warning {
  background: #fdf9ef;
  border-left-color: var(--od-draft-text);
}

.od-banner--info {
  background: var(--od-paper);
  border-left-color: var(--od-sage);
}

.od-banner ul {
  margin: 0;
  padding-left: 18px;
}

/* ----- Ethos cards (About page) ----- */
.od-ethos-item {
  border-top: 2px solid var(--od-sage);
  padding-top: 22px;
}

.od-ethos-item__number {
  color: var(--od-sage);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}

.od-ethos-item__title {
  color: var(--od-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 10px;
}

.od-ethos-item__body {
  color: var(--od-text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ----------------------------------------------------------------------
   Recipe detail page (DrinkDetail.dc.html).
   ---------------------------------------------------------------------- */
.od-recipe-breadcrumb {
  /* The breadcrumb sits inside `.container-xxl` so it inherits
     the container's horizontal padding and gutter math. Only
     vertical padding + bottom margin live here. */
  color: var(--od-text-muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-top: 14px;
}

.od-recipe-breadcrumb a {
  color: var(--od-text-muted);
  text-decoration: none;
}

.od-recipe-breadcrumb a:hover,
.od-recipe-breadcrumb a:focus {
  color: var(--od-ink);
}

.od-recipe-breadcrumb__current {
  color: var(--od-ink);
}

.od-recipe-hero-photo {
  border-radius: 12px;
  display: block;
  height: 520px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 991.98px) {
  .od-recipe-hero-photo {
    height: 420px;
  }
}
@media (max-width: 575.98px) {
  .od-recipe-hero-photo {
    height: 320px;
  }
}
.od-recipe-stat-grid {
  border-bottom: 1px solid rgba(44, 47, 39, 0.14);
  border-top: 1px solid rgba(44, 47, 39, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 22px 0;
}

.od-recipe-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.od-recipe-stat__label {
  color: var(--od-text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.od-recipe-stat__value {
  color: var(--od-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.od-recipe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.od-recipe-stepper {
  align-items: center;
  color: var(--od-text-muted);
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.od-recipe-stepper__btn {
  background: transparent;
  border: 1px solid #b9bdaa;
  border-radius: 99px;
  color: var(--od-ink);
  cursor: pointer;
  font: inherit;
  padding: 5px 12px;
}

.od-recipe-stepper__count {
  color: var(--od-ink);
  letter-spacing: 0.06em;
}

.od-recipe-ingredient {
  align-items: flex-start;
  border-bottom: 1px solid rgba(44, 47, 39, 0.1);
  color: var(--od-ink);
  display: flex;
  font-size: 15px;
  gap: 12px;
  padding: 12px 0;
}

.od-recipe-ingredient:last-of-type {
  border-bottom: none;
}

.od-recipe-ingredient input[type=checkbox] {
  accent-color: var(--od-sage);
  flex-shrink: 0;
  height: 17px;
  margin-top: 2px;
  width: 17px;
}

.od-recipe-tip {
  background: var(--od-sage-wash);
  border-radius: 10px;
  padding: 18px 20px;
}

.od-recipe-tip__kicker {
  color: var(--od-sage);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.od-recipe-tip__body {
  color: var(--od-text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.od-recipe-step {
  border-bottom: 1px solid rgba(44, 47, 39, 0.1);
  display: flex;
  gap: 20px;
  padding: 20px 0;
}

.od-recipe-step:last-of-type {
  border-bottom: none;
}

.od-recipe-step__number {
  color: var(--od-sage);
  flex-shrink: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
  width: 44px;
}

.od-recipe-step__body {
  color: var(--od-ink);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.od-recipe-quote {
  background: var(--od-sage-wash);
  border-radius: 12px;
  margin-top: 16px;
  padding: 26px 28px;
}

.od-recipe-quote__kicker {
  color: var(--od-sage);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.od-recipe-quote__body {
  color: var(--od-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

.od-recipe-related {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.od-recipe-related__heading {
  color: var(--od-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  margin: 0;
}

.od-recipe-related__link {
  border-bottom: 1px solid var(--od-ink);
  color: var(--od-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding-bottom: 3px;
  text-decoration: none;
  text-transform: uppercase;
}

.od-recipe-related__link:hover,
.od-recipe-related__link:focus {
  border-bottom-color: var(--od-sage);
  color: var(--od-sage);
}

/* ----- Branded error / 404 page ----- */
.od-error-page {
  padding: 64px 0 96px;
}

.od-error-page__path {
  margin-top: 8px;
}

.od-error-page__dev {
  margin-top: 24px;
  opacity: 0.75;
}

.od-error-page__rid {
  background: rgba(44, 47, 39, 0.06);
  border: 1px solid rgba(44, 47, 39, 0.12);
  border-radius: 4px;
  color: var(--od-ink);
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  padding: 2px 8px;
}

/* ----- Accessibility: skip-to-content link ----- */
.od-skip-link {
  background: var(--od-sage);
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  left: 8px;
  padding: 8px 16px;
  position: absolute;
  text-decoration: none;
  top: -100px;
  transition: top 0.15s ease-in-out;
  z-index: 10000;
}

.od-skip-link:focus,
.od-skip-link:focus-visible {
  outline: 2px solid var(--od-ink);
  outline-offset: 2px;
  top: 8px;
}

.od-home-hero {
  padding: clamp(28px, 4vw, 42px) 0 clamp(56px, 8vw, 82px);
}

.od-home-hero__headline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(2.75rem, 9vw, 3.9rem);
  line-height: 1.04;
  margin: 14px 0 18px;
  max-width: 620px;
}
.od-home-hero__headline em {
  color: var(--od-sage);
  font-style: italic;
}

.od-home-hero__dek {
  color: var(--od-text-secondary);
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 560px;
}

.od-home-collage {
  height: clamp(380px, 42vw, 460px);
  margin-inline: auto;
  max-width: 560px;
  position: relative;
}

.od-home-collage__watermark {
  height: min(64%, 300px);
  left: 50%;
  opacity: 0.1;
  position: absolute;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(64%, 300px);
}

.od-polaroid {
  background: white;
  box-shadow: 0 10px 28px rgba(44, 47, 39, 0.16);
  padding: 10px 10px 38px;
  position: absolute;
  width: min(43vw, 230px);
}

.od-polaroid img {
  border-radius: 4px;
  aspect-ratio: 1/0.96;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.od-polaroid figcaption {
  bottom: 10px;
  color: var(--od-text-muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  left: 14px;
  position: absolute;
}

.od-polaroid--drink {
  left: 8%;
  top: 8%;
  transform: rotate(-4deg);
}

.od-polaroid--bite {
  right: 6%;
  top: 20%;
  transform: rotate(3deg);
}

.od-polaroid--journal {
  bottom: 0;
  left: 30%;
  transform: rotate(-1deg);
}

.od-home-bench {
  padding-block: clamp(50px, 7vw, 68px);
}

.od-home-bench__panel {
  overflow: hidden;
}

.od-home-bench__panel > .row {
  min-height: 420px;
}

.od-home-bench__photo {
  background-image: linear-gradient(90deg, rgba(24, 26, 20, 0.2), rgba(24, 26, 20, 0.08)), var(--bench-photo);
  background-position: center;
  background-size: cover;
  height: 100%;
  min-height: 260px;
}

.od-home-bench__content {
  padding: clamp(32px, 5vw, 54px);
}

.od-home-bench__content .od-kicker {
  color: var(--od-sage-pale);
}

.od-home-bench__content .od-section-title {
  color: var(--od-cream-on-dark);
  margin: 8px 0 24px;
}

.od-home-bench__content .od-link-underline {
  color: var(--od-sage-pale);
  display: inline-flex;
  margin-top: 20px;
}

.od-journal-teaser {
  background: transparent;
  border: 0;
  border-left: 1px solid var(--od-hairline);
  border-radius: 0;
  color: var(--od-ink);
  padding: 0 0 0 22px;
  text-decoration: none;
}
.od-journal-teaser:hover, .od-journal-teaser:focus {
  color: var(--od-ink);
}

.od-journal-teaser__meta {
  color: var(--od-sage);
  font-family: "Karla", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.od-journal-teaser__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(1.55rem, 3vw, 1.7rem);
  line-height: 1.08;
  margin: 0 0 10px;
}

.od-journal-teaser__dek {
  color: var(--od-text-muted);
  font-size: 14px;
  margin: 0;
}

@media (max-width: 575.98px) {
  .od-home-hero {
    padding-top: 22px;
  }
  .od-home-collage {
    display: grid;
    gap: 18px;
    height: auto;
    justify-items: center;
  }
  .od-polaroid {
    margin: 0;
    position: relative;
    width: min(100%, 280px);
  }
  .od-polaroid--drink,
  .od-polaroid--bite,
  .od-polaroid--journal {
    inset: auto;
    transform: none;
  }
  .od-home-collage__watermark {
    display: none;
  }
  .od-journal-teaser {
    padding-left: 16px;
  }
}
/* ----------------------------------------------------------------------
   About page (About.dc.html).

   Owns the polaroid collage, maker photo, and the dark-band
   newsletter signup at the bottom. The polaroids use absolute
   positioning over a `.od-about-hero-collage` container with
   negative rotations and a watermark in the corner.

   `.od-about-newsletter` is the dark-bg CTA strip. The inner row
   holds the copy on the left and a pill input + submit on the
   right; wraps gracefully below the desktop breakpoint.
   ---------------------------------------------------------------------- */
.od-about-hero-collage {
  height: 480px;
  position: relative;
  width: 100%;
}

.od-about-polaroid {
  background: #fbfaf6;
  box-shadow: 0 12px 30px rgba(44, 47, 39, 0.16);
  display: block;
  padding: 10px;
  position: absolute;
}

.od-about-polaroid img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.od-about-polaroid--left {
  height: 300px;
  left: 2%;
  top: 0;
  transform: rotate(-3deg);
  width: 58%;
}

.od-about-polaroid--right {
  bottom: 0;
  height: 280px;
  right: 0;
  transform: rotate(2deg);
  width: 54%;
}

.od-about-watermark {
  max-width: 60%;
  opacity: 0.08;
  pointer-events: none;
  position: absolute;
  right: -20px;
  top: -10px;
  width: 240px;
}

.od-about-maker-photo {
  border-radius: 12px;
  display: block;
  height: 420px;
  object-fit: cover;
  width: 100%;
}

.od-about-newsletter {
  background: var(--od-bench-dark);
  color: var(--od-cream-on-dark);
  padding: 56px var(--od-page-padding);
}

.od-about-newsletter__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.od-about-newsletter__copy {
  max-width: 480px;
}

.od-about-newsletter__kicker {
  color: var(--od-sage-pale);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.od-about-newsletter__headline {
  color: var(--od-cream-on-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}

.od-about-newsletter__form {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.od-about-newsletter__input {
  background: rgba(243, 241, 233, 0.08);
  border: 1px solid rgba(243, 241, 233, 0.3);
  border-radius: 99px;
  color: var(--od-cream-on-dark);
  font-family: Karla, system-ui, sans-serif;
  font-size: 15px;
  outline: none;
  padding: 14px 22px;
  transition: border-color 120ms ease;
  width: 280px;
}

.od-about-newsletter__input::placeholder {
  color: rgba(243, 241, 233, 0.55);
}

.od-about-newsletter__input:focus {
  border-color: var(--od-sage);
}

.od-about-newsletter__submit {
  background: var(--od-sage);
  border: none;
  border-radius: 99px;
  color: var(--od-cream-on-dark);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 14px 26px;
  text-transform: uppercase;
  transition: background 120ms ease;
}

.od-about-newsletter__submit:hover,
.od-about-newsletter__submit:focus {
  background: var(--od-sage-light);
}

@media (max-width: 991.98px) {
  .od-about-hero-collage {
    height: 380px;
  }
  .od-about-polaroid--left {
    height: 240px;
    width: 64%;
  }
  .od-about-polaroid--right {
    height: 220px;
    width: 56%;
  }
}
@media (max-width: 575.98px) {
  .od-about-hero-collage {
    height: 320px;
  }
  .od-about-polaroid--left {
    height: 200px;
    width: 70%;
  }
  .od-about-polaroid--right {
    height: 180px;
    width: 60%;
  }
  .od-about-maker-photo {
    height: 320px;
  }
}
