
@font-face {
  font-family: "P052 Editorial";
  src: url("../fonts/p052-roman.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "P052 Editorial";
  src: url("../fonts/p052-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nimbus Sans MG";
  src: url("../fonts/nimbus-sans-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nimbus Sans MG";
  src: url("../fonts/nimbus-sans-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --paper: #f6f0e7;
  --paper-soft: #faf7f0;
  --parchment: #e4d3bc;
  --ink: #202126;
  --muted: #68645f;
  --navy: #294b74;
  --navy-deep: #131f2a;
  --rust: #8f5137;
  --gold: #c8aa7e;
  --border: #d5c1a4;
  --white: #fffdf8;
  --serif: "P052 Editorial", "Palatino Linotype", Georgia, serif;
  --sans: "Nimbus Sans MG", Arial, sans-serif;
  --content: min(89.1vw, 1280px);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 22%, rgb(116 80 42 / 0.035) 0 0.7px, transparent 0.9px) 0 0 / 7px 7px,
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #d88342;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-180%);
  background: var(--navy-deep);
  color: white;
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: relative;
  z-index: 50;
  background: rgb(250 247 240 / 0.98);
  border-bottom: 16px solid transparent;
  border-image: repeating-linear-gradient(90deg, #d2b994 0 4px, #f7efe2 4px 8px, #ad8b62 8px 9px, #f7efe2 9px 13px) 16;
}

.header-inner {
  width: calc(100% - 42px);
  max-width: 1390px;
  height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto 42px;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--navy-deep);
}

.brand > img {
  width: 180px;
  height: auto;
}

.brand__words {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 0.78;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.brand__tag {
  margin-top: 7px;
  font-size: 6.8px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(19px, 3vw, 47px);
}

.primary-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(19px, 3vw, 47px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--rust);
  transition: right 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  right: 0;
}

.header-search-button,
.menu-toggle {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.header-search-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

.header-search-button span,
.search-form__icon {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.header-search-button span::after,
.search-form__icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1.7px;
  right: -5px;
  bottom: -2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.header-search-drawer {
  position: absolute;
  top: calc(100% - 16px);
  right: 24px;
  width: min(480px, calc(100vw - 48px));
  padding: 14px;
  background: var(--paper-soft);
  border: 1px solid var(--border);
  box-shadow: 0 16px 35px rgb(21 28 35 / 0.16);
}

.hero {
  position: relative;
  aspect-ratio: 432 / 175;
  min-height: 350px;
  overflow: visible;
  isolation: isolate;
  background: #c7c9c4;
}

.hero__media,
.hero__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media > img {
  object-fit: cover;
  object-position: center center;
}

.hero__shade {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(250 247 240 / 0.56) 0%, rgb(250 247 240 / 0.28) 45%, rgb(18 24 29 / 0.03) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(920px, 94vw);
  margin: 0 auto;
  padding: clamp(28px, 4.1vw, 74px) 0 30px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--rust);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: none;
}

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5.35vw, 88px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.018em;
  text-shadow: 0 1px 10px rgb(255 255 255 / 0.48);
}

.hero__lede {
  margin: 12px auto 17px;
  font-size: clamp(13px, 1.45vw, 20px);
  line-height: 1.42;
  text-shadow: 0 1px 8px rgb(255 255 255 / 0.8);
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 13px;
}

.hero__actions .button {
  min-width: clamp(180px, 18.75vw, 355px);
  min-height: clamp(46px, 4.2vw, 80px);
  font-size: clamp(12px, 1.15vw, 21px);
}

.hero .search-panel {
  width: min(46.88vw, 890px);
  min-width: min(405px, calc(100vw - 44px));
}

.hero .search-form {
  height: clamp(48px, 5.3vw, 82px);
}

.hero .search-form input {
  font-size: clamp(14px, 1.35vw, 24px);
}

.hero .search-form__icon {
  width: clamp(16px, 1.55vw, 27px);
  height: clamp(16px, 1.55vw, 27px);
  margin-left: clamp(17px, 2vw, 34px);
}

.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  border: 1px solid rgb(255 255 255 / 0.7);
  border-radius: 1px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  transition: filter 150ms ease, transform 150ms ease;
}

.button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.button--terracotta {
  background: var(--rust);
}

.button--blue {
  background: var(--navy);
}

.search-panel {
  position: relative;
  width: min(405px, calc(100vw - 44px));
  margin: 25px auto 0;
  text-align: left;
}

.search-panel--compact {
  width: 100%;
  margin: 0;
}

.search-form {
  position: relative;
  height: 46px;
  display: flex;
  align-items: center;
  background: rgb(255 253 248 / 0.97);
  border: 1px solid rgb(206 191 166 / 0.84);
  border-radius: 2px;
  box-shadow: 0 4px 12px rgb(44 35 25 / 0.08);
}

.search-form__icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-left: 17px;
  color: #c9b696;
}

.search-form input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0 15px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.search-form input::placeholder {
  color: #817c75;
  opacity: 1;
}

.search-form__clear {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #6a655e;
  cursor: pointer;
  font-size: 21px;
}

.search-results {
  position: absolute;
  z-index: 60;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  max-height: 300px;
  overflow: auto;
  background: var(--paper-soft);
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgb(25 28 29 / 0.18);
}

.search-result {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 13px;
  border-bottom: 1px solid rgb(213 193 164 / 0.55);
}

.search-result:last-child {
  border-bottom: 0;
}

.search-result:hover {
  background: #efe4d4;
}

.search-result strong,
.search-result small {
  display: block;
}

.search-result strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.search-result small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.search-result em {
  color: var(--rust);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-results > p {
  margin: 0;
  padding: 18px;
  font-size: 13px;
}

.search-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.search-chips a {
  padding: 6px 17px 5px;
  border: 1px solid rgb(192 174 146 / 0.5);
  border-radius: 5px;
  background: rgb(247 239 226 / 0.94);
  box-shadow: 0 1px 2px rgb(43 35 27 / 0.08);
  font-size: 11px;
}

.hero .search-chips {
  gap: clamp(10px, 1.35vw, 24px);
  margin-top: clamp(8px, 1vw, 16px);
}

.hero .search-chips a {
  padding: clamp(6px, 0.65vw, 11px) clamp(16px, 1.5vw, 28px);
  font-size: clamp(11px, 0.9vw, 16px);
}

.paper-section,
.newsletter {
  position: relative;
  background:
    radial-gradient(circle at 32% 61%, rgb(113 82 46 / 0.05) 0 0.6px, transparent 0.8px) 0 0 / 8px 8px,
    var(--paper-soft);
}

.content-shell {
  width: var(--content);
  margin: 0 auto;
}

.section-title {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2.1vw, 30px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.section-title > span {
  position: relative;
  width: 31px;
  height: 1px;
  background: var(--gold);
}

.section-title > span::before,
.section-title > span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
  background: var(--paper-soft);
}

.section-title > span:first-child::before {
  left: -1px;
}

.section-title > span:first-child::after {
  right: -1px;
}

.section-title > span:last-child::before {
  left: -1px;
}

.section-title > span:last-child::after {
  right: -1px;
}

.paths-section {
  min-height: 247px;
}

.paths-section .section-title {
  height: 44px;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
}

.path-card {
  min-height: 185px;
  display: grid;
  grid-template-columns: 57% 43%;
  padding: 5px;
  background: var(--paper-soft);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 4px var(--paper-soft), inset 0 0 0 5px rgb(213 193 164 / 0.5);
}

.path-card__image {
  min-height: 173px;
  overflow: hidden;
}

.path-card__image > picture,
.path-card__image img {
  width: 100%;
  height: 100%;
}

.path-card__image > picture {
  display: block;
}

.path-card__image img {
  object-fit: cover;
}

.path-card__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 13px 14px 9px;
  text-align: center;
}

.ornament-icon {
  color: #ad8d60;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}

.path-card h3,
.destination-card h3,
.kitchen-card h3,
.guide-product h3,
.stay-card h2 {
  font-family: var(--serif);
  font-weight: 400;
}

.path-card h3 {
  margin: 5px 0 7px;
  font-size: clamp(16px, 1.8vw, 24px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.path-card p {
  margin: 0;
  color: #4f4d49;
  font-size: clamp(10px, 1.1vw, 14px);
  line-height: 1.42;
}

.path-card strong {
  margin-top: 13px;
  color: var(--navy);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.destinations-section {
  min-height: 257px;
  padding-bottom: 15px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.destination-card {
  overflow: hidden;
  background: var(--paper-soft);
  border: 1px solid var(--border);
  transition: border-color 150ms ease, transform 150ms ease;
}

.destination-card:hover {
  border-color: var(--rust);
  transform: translateY(-2px);
}

.destination-card > picture,
.destination-card > picture > img {
  width: 100%;
  aspect-ratio: 1.36 / 1;
}

.destination-card > picture {
  display: block;
  overflow: hidden;
}

.destination-card > picture > img {
  height: 100%;
  object-fit: cover;
}

.destination-card__copy {
  padding: 8px 9px 9px;
}

.destination-card h3 {
  margin: 0 0 3px;
  font-size: clamp(15px, 1.55vw, 21px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.destination-card p {
  min-height: 23px;
  margin: 0 0 9px;
  color: #5e5952;
  font-family: var(--serif);
  font-size: clamp(9px, 0.95vw, 13px);
}

.destination-card__copy > div,
.kitchen-card__copy > div {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4f4a45;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.destination-card__copy strong,
.kitchen-card__copy strong {
  color: var(--navy);
}

.stay-banner {
  position: relative;
  aspect-ratio: 144 / 31;
  min-height: 186px;
  overflow: hidden;
  background: #65869b;
}

.stay-banner > picture,
.stay-banner > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stay-banner > picture > img {
  object-fit: cover;
  object-position: center center;
}

.stay-card {
  position: absolute;
  z-index: 2;
  top: 8%;
  bottom: 8%;
  left: max(4.6vw, calc((100vw - 1440px) / 2 + 32px));
  width: clamp(290px, 32.7vw, 620px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(22px, 3vw, 56px);
  background:
    radial-gradient(circle at 17% 31%, rgb(120 87 54 / 0.06) 0 0.6px, transparent 0.8px) 0 0 / 7px 7px,
    rgb(250 247 240 / 0.96);
  border: 1px solid rgb(210 190 159 / 0.75);
  box-shadow: 0 12px 35px rgb(30 35 37 / 0.08);
}

.stay-card .eyebrow {
  display: none;
}

.stay-card h2 {
  margin: 1px 0 8px;
  font-size: clamp(30px, 2.4vw, 48px);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-transform: uppercase;
}

.stay-card p:not(.eyebrow) {
  max-width: 430px;
  margin: 0 0 clamp(16px, 1.7vw, 30px);
  font-family: var(--serif);
  font-size: clamp(15px, 1.55vw, 27px);
  line-height: 1.35;
}

.stay-card .button {
  width: fit-content;
  min-height: clamp(40px, 3.7vw, 64px);
  padding: 0 clamp(20px, 2.4vw, 42px);
  font-size: clamp(10px, 1vw, 17px);
}

.kitchen-section {
  min-height: 202px;
  padding-bottom: 12px;
}

.kitchen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.kitchen-card {
  min-height: 143px;
  display: grid;
  grid-template-columns: 46.5% 53.5%;
  background: var(--paper-soft);
  border: 1px solid var(--border);
  transition: border-color 150ms ease;
}

.kitchen-card:hover {
  border-color: var(--rust);
}

.kitchen-card > picture,
.kitchen-card > picture > img {
  width: 100%;
  height: 100%;
  min-height: 141px;
}

.kitchen-card > picture {
  display: block;
  overflow: hidden;
}

.kitchen-card > picture > img {
  object-fit: cover;
}

.kitchen-card__copy {
  display: flex;
  flex-direction: column;
  padding: 11px 12px 9px;
}

.kitchen-card h3 {
  margin: 0 0 8px;
  font-size: clamp(14px, 1.55vw, 21px);
  line-height: 1.12;
}

.kitchen-card p {
  margin: 0;
  color: #5e5952;
  font-family: var(--serif);
  font-size: clamp(8px, 0.9vw, 12px);
  line-height: 1.35;
}

.kitchen-card__copy > div {
  margin-top: auto;
}

.guides-section {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.94%, rgb(166 132 92 / 0.35) 49.95% 50.05%, transparent 50.06%),
    radial-gradient(circle at 21% 32%, rgb(122 83 44 / 0.065) 0 0.7px, transparent 0.9px) 0 0 / 7px 7px,
    var(--parchment);
}

.guides-section::before,
.guides-section::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgb(156 119 78 / 0.12);
  transform: rotate(45deg);
}

.guides-section::before {
  left: -125px;
  top: 42px;
}

.guides-section::after {
  right: -125px;
  top: 42px;
}

.guides-section .section-title > span::before,
.guides-section .section-title > span::after {
  background: var(--parchment);
}

.guides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.guide-product {
  min-width: 0;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  min-height: 159px;
}

.guide-product__image {
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-product__image img {
  max-width: 90%;
  max-height: 145px;
  object-fit: contain;
}

.guide-product__copy {
  padding: 10px 17px 12px 0;
}

.guide-product__copy .eyebrow {
  display: none;
}

.guide-product h3 {
  margin: 0 0 8px;
  font-size: clamp(16px, 1.75vw, 24px);
  line-height: 1.02;
  text-transform: uppercase;
}

.guide-product p:not(.eyebrow) {
  margin: 0;
  color: #4d4841;
  font-family: var(--serif);
  font-size: clamp(9px, 1.02vw, 14px);
  line-height: 1.3;
}

.guide-product__copy > a {
  display: inline-block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.newsletter {
  min-height: 95px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.newsletter__seal {
  position: absolute;
  left: 5%;
  top: 5px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(169 133 84 / 0.4);
  border-radius: 50%;
  color: rgb(147 109 61 / 0.58);
  font-family: var(--serif);
  font-size: 8px;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-10deg);
}

.newsletter__seal::before,
.newsletter__seal::after {
  content: "✧";
  position: absolute;
  color: rgb(147 109 61 / 0.45);
}

.newsletter__seal::before { top: 7px; }
.newsletter__seal::after { bottom: 7px; }

.newsletter__content {
  width: min(500px, 86vw);
  padding: 3px 0 10px;
  text-align: center;
}

.newsletter .section-title {
  height: 36px;
}

.newsletter .section-title h2 {
  font-size: clamp(18px, 2vw, 28px);
}

.newsletter__content > p {
  margin: -1px 0 7px;
  font-family: var(--serif);
  font-size: 11px;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 122px;
  gap: 3px;
}

.newsletter input {
  min-width: 0;
  height: 29px;
  padding: 0 11px;
  border: 1px solid #9b948b;
  border-radius: 0;
  background: rgb(255 255 255 / 0.55);
  color: var(--ink);
  font-size: 10px;
}

.newsletter .button {
  min-height: 29px;
  height: 29px;
  border: 0;
  font-size: 9px;
}

.newsletter__success {
  color: var(--navy);
  font-weight: 700;
}

.site-footer {
  position: relative;
  min-height: 177px;
  padding-top: 16px;
  color: #f7f1e5;
  background: var(--navy-deep);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 16px;
  background: repeating-linear-gradient(90deg, #22394a 0 4px, #8e7659 4px 5px, #182936 5px 10px, #3b4e58 10px 14px);
  border-bottom: 1px solid rgb(188 155 112 / 0.36);
}

.footer-inner {
  width: var(--content);
  margin: 0 auto;
  padding-top: 12px;
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 0.9fr);
  gap: 28px;
}

.brand--inverse {
  color: #f7f1e5;
}

.footer-brand .brand > img {
  width: 166px;
  height: auto;
}

.footer-brand .brand__name {
  font-size: 18px;
}

.footer-brand .brand__tag {
  font-size: 5.2px;
}

.footer-brand > p {
  max-width: 170px;
  margin: 5px 0 7px;
  color: #d8d5cf;
  font-family: var(--serif);
  font-size: 9px;
  line-height: 1.28;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a,
.social-links span {
  color: #d4ad72;
  font-family: var(--sans);
  font-size: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.footer-column h2 {
  margin: 4px 0 6px;
  color: #f5ecdf;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: #d6d3cd;
  font-family: var(--serif);
  font-size: 9px;
  line-height: 1.25;
}

.footer-column a:hover {
  color: #e2bb81;
}

.footer-bottom {
  width: var(--content);
  margin: 11px auto 0;
  padding-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #bcbab6;
  font-size: 7px;
}

.footer-bottom > div {
  display: flex;
  gap: 21px;
}

@media (min-width: 1200px) {
  .header-inner {
    height: 96px;
  }

  .path-card {
    min-height: 250px;
  }

  .path-card__image {
    min-height: 238px;
  }

  .destination-card__copy {
    padding: 13px 14px;
  }

  .kitchen-card,
  .kitchen-card > picture,
  .kitchen-card > picture > img {
    min-height: 196px;
  }

  .guides-section {
    min-height: 290px;
  }

  .guide-product {
    min-height: 240px;
  }

  .guide-product__image {
    height: 220px;
  }

  .guide-product__image img {
    max-height: 210px;
  }

  .newsletter {
    min-height: 128px;
  }

  .site-footer {
    min-height: 230px;
  }

  .footer-column a,
  .footer-column span,
  .footer-brand > p {
    font-size: 12px;
  }

  .footer-column h2 {
    font-size: 14px;
  }
}

@media (max-width: 799px) {
  :root {
    --content: min(91vw, 680px);
  }

  .site-header {
    border-bottom-width: 10px;
  }

  .header-inner {
    width: calc(100% - 28px);
    height: 72px;
    grid-template-columns: 1fr 40px 40px;
    gap: 3px;
  }

  .brand > img {
    width: 145px;
    height: auto;
  }

  .brand__name {
    font-size: 19px;
  }

  .brand__tag {
    margin-top: 5px;
    font-size: 5.2px;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .header-search-button {
    grid-column: 3;
    grid-row: 1;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 10px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 18px;
    background: var(--paper-soft);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 26px rgb(20 25 29 / 0.14);
  }

  .primary-nav__list {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav--open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px 4px;
    font-size: 12px;
    border-bottom: 1px solid rgb(213 193 164 / 0.45);
  }

  .header-search-drawer {
    top: calc(100% - 10px);
    right: 12px;
    width: calc(100vw - 24px);
  }

  .hero {
    aspect-ratio: auto;
    min-height: 520px;
  }

  .hero__media > img {
    object-position: 52% center;
  }

  .hero__shade {
    display: block;
    background: linear-gradient(180deg, rgb(250 247 240 / 0.88) 0%, rgb(249 243 234 / 0.5) 52%, rgb(19 24 27 / 0.04) 100%);
  }

  .hero__content {
    padding-top: 48px;
  }

  .hero__title {
    font-size: clamp(42px, 12vw, 65px);
    line-height: 0.98;
  }

  .hero__lede {
    max-width: 420px;
    margin-top: 17px;
    font-size: 15px;
  }

  .hero__actions {
    width: min(405px, calc(100vw - 44px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    padding: 0 12px;
  }

  .search-panel {
    margin-top: 22px;
  }

  .search-chips {
    width: min(405px, calc(100vw - 44px));
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 2px 0 5px;
  }

  .section-title {
    height: 58px;
  }

  .section-title h2 {
    font-size: 21px;
  }

  .path-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }

  .path-grid {
    gap: 14px;
    padding-bottom: 20px;
  }

  .path-card {
    min-height: 220px;
  }

  .path-card__image {
    min-height: 208px;
  }

  .path-card p {
    font-size: 12px;
  }

  .destinations-section {
    padding-bottom: 20px;
  }

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

  .destination-card h3 {
    font-size: 18px;
  }

  .destination-card p {
    font-size: 11px;
  }

  .stay-banner {
    aspect-ratio: auto;
    min-height: 430px;
  }

  .stay-card {
    top: auto;
    right: 22px;
    bottom: 22px;
    left: 22px;
    width: auto;
    min-height: 230px;
    padding: 28px;
  }

  .stay-card h2 {
    white-space: normal;
  }

  .kitchen-section {
    padding-bottom: 20px;
  }

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

  .kitchen-card {
    min-height: 150px;
  }

  .kitchen-card > picture,
  .kitchen-card > picture > img {
    min-height: 148px;
  }

  .kitchen-card h3 {
    font-size: 19px;
  }

  .kitchen-card p {
    font-size: 11px;
  }

  .guides-section {
    background:
      linear-gradient(180deg, transparent 49.94%, rgb(166 132 92 / 0.35) 49.95% 50.05%, transparent 50.06%),
      radial-gradient(circle at 21% 32%, rgb(122 83 44 / 0.065) 0 0.7px, transparent 0.9px) 0 0 / 7px 7px,
      var(--parchment);
  }

  .guide-product {
    min-height: 205px;
    grid-template-columns: 45% 55%;
  }

  .guide-product__image {
    height: 190px;
  }

  .guide-product__image img {
    max-height: 180px;
  }

  .guide-product h3 {
    font-size: 20px;
  }

  .guide-product p:not(.eyebrow) {
    font-size: 12px;
  }

  .newsletter {
    min-height: 150px;
  }

  .newsletter__seal {
    left: -22px;
    opacity: 0.65;
  }

  .newsletter__content {
    padding: 12px 0 18px;
  }

  .newsletter .section-title {
    height: 46px;
  }

  .newsletter__content > p {
    font-size: 12px;
  }

  .newsletter form {
    grid-template-columns: 1fr 112px;
  }

  .newsletter input,
  .newsletter .button {
    height: 38px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 36px;
    padding-top: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand > p {
    max-width: 330px;
    font-size: 12px;
  }

  .footer-column h2 {
    font-size: 14px;
  }

  .footer-column a,
  .footer-column span {
    font-size: 12px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .brand__words {
    max-width: 130px;
  }

  .hero {
    min-height: 560px;
  }

  .hero__content {
    padding-top: 54px;
  }

  .desktop-only {
    display: none;
  }

  .hero__actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .button {
    min-height: 43px;
  }

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

  .path-card__image {
    min-height: 205px;
  }

  .path-card__copy {
    min-height: 184px;
    padding: 22px;
  }

  .path-card h3 {
    font-size: 22px;
  }

  .destination-grid {
    display: flex;
    width: 100vw;
    margin-left: calc((100vw - var(--content)) / -2);
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 calc((100vw - var(--content)) / 2) 13px;
  }

  .destination-card {
    flex: 0 0 73vw;
    scroll-snap-align: center;
  }

  .stay-card {
    top: 145px;
  }

  .guide-product {
    grid-template-columns: 42% 58%;
  }

  .guide-product__copy {
    padding-right: 5px;
  }

  .guide-product h3 {
    font-size: 17px;
  }

  .guide-product p:not(.eyebrow) {
    font-size: 10px;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 9px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Editorial routes */
.inner-header {
  position: relative;
  z-index: 20;
  background: var(--paper-soft);
  border-bottom: 12px solid transparent;
  border-image: repeating-linear-gradient(90deg, #d2b994 0 4px, #f7efe2 4px 8px, #ad8b62 8px 9px, #f7efe2 9px 13px) 12;
}

.inner-header__content {
  width: min(92vw, 1240px);
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr 44px;
  align-items: center;
  gap: 25px;
}

.inner-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--navy-deep);
}

.inner-brand img {
  width: 180px;
  height: auto;
}

.inner-brand > span {
  display: flex;
  flex-direction: column;
}

.inner-brand strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inner-brand small {
  margin-top: 7px;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.inner-header nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(20px, 3.1vw, 48px);
}

.inner-header nav a {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inner-search-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

.inner-search-link span {
  position: relative;
  width: 17px;
  height: 17px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.inner-search-link span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1.7px;
  right: -5px;
  bottom: -2px;
  background: currentColor;
  transform: rotate(45deg);
}

.inner-main {
  min-height: 70vh;
  background:
    radial-gradient(circle at 21% 32%, rgb(122 83 44 / 0.04) 0 0.7px, transparent 0.9px) 0 0 / 8px 8px,
    var(--paper-soft);
}

.breadcrumbs {
  width: min(89.1vw, 1180px);
  min-height: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #746e66;
  font-size: 10px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--navy);
}

.breadcrumbs b {
  margin-left: 8px;
  font-weight: 400;
}

.editorial-page {
  padding-bottom: 70px;
}

.editorial-hero {
  width: min(89.1vw, 1180px);
  min-height: 330px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background: var(--parchment);
  border: 1px solid var(--border);
}

.editorial-hero--with-image {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 47%);
  place-items: stretch;
}

.editorial-hero > div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(36px, 6vw, 86px);
  background:
    radial-gradient(circle at 18% 22%, rgb(116 80 42 / 0.045) 0 0.7px, transparent 0.9px) 0 0 / 7px 7px,
    var(--parchment);
}

.editorial-hero h1,
.search-page h1 {
  max-width: 740px;
  margin: 0 0 17px;
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 74px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.025em;
}

.editorial-hero > div > p:last-child {
  max-width: 660px;
  margin: 0;
  color: #4c4842;
  font-family: var(--serif);
  font-size: clamp(17px, 1.65vw, 23px);
  line-height: 1.4;
}

.editorial-media,
.editorial-media > img {
  width: 100%;
  height: 100%;
}

.editorial-media {
  min-height: 330px;
  display: block;
  overflow: hidden;
  background: #d7c4a9;
}

.editorial-media > img {
  display: block;
  min-height: 330px;
  object-fit: cover;
}

.editorial-media--contain {
  padding: clamp(18px, 2.5vw, 38px);
  background:
    radial-gradient(circle at 18% 22%, rgb(116 80 42 / 0.045) 0 0.7px, transparent 0.9px) 0 0 / 7px 7px,
    #eee0cc;
}

.editorial-media--contain > img {
  min-height: 0;
  object-fit: contain;
}

.editorial-body {
  width: min(760px, 80vw);
  margin: 0 auto;
  padding: 58px 0 38px;
}

.editorial-intro {
  margin: 0 0 42px;
  padding-left: 24px;
  border-left: 3px solid var(--rust);
  font-family: var(--serif);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.38;
}

.editorial-body section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.editorial-body section h2,
.related-section h2,
.editorial-cta h2,
.search-page__results h2 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.04;
}

.editorial-body section p {
  margin: 0;
  color: #4d4944;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
}

.related-section {
  width: min(89.1vw, 1180px);
  margin: 0 auto 35px;
  padding: clamp(30px, 4.2vw, 58px);
  background: var(--paper);
  border: 1px solid var(--border);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.related-links a {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 19px;
  color: var(--navy);
  border: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 17px;
}

.related-links a:hover {
  background: #eee1d0;
  border-color: var(--rust);
}

.related-links span {
  color: var(--rust);
}

.editorial-cta {
  width: min(89.1vw, 1180px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 55px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  color: #f8f1e8;
  background: var(--navy-deep);
}

.editorial-cta h2 {
  max-width: 680px;
  margin: 0;
}

.editorial-cta .button {
  flex: 0 0 auto;
}

.inner-footer {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px 70px;
  padding: 48px max(5.45vw, calc((100vw - 1280px) / 2));
  color: #f7f1e5;
  background: var(--navy-deep);
  border-top: 14px solid #233846;
}

.inner-footer .inner-brand {
  color: #f7f1e5;
}

.inner-footer .inner-brand img {
  width: 180px;
  height: auto;
}

.inner-footer > div > p {
  max-width: 430px;
  color: #d3d0ca;
  font-family: var(--serif);
  font-size: 14px;
}

.inner-footer nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 38px;
}

.inner-footer nav a {
  color: #dedad2;
  font-family: var(--serif);
  font-size: 14px;
}

.inner-footer > small {
  color: #aeadab;
  font-size: 10px;
}

.search-page {
  padding-bottom: 80px;
}

.search-page__intro,
.search-page__results {
  width: min(89.1vw, 1000px);
  margin: 0 auto;
}

.search-page__intro {
  padding: clamp(45px, 7vw, 95px);
  background: var(--parchment);
  border: 1px solid var(--border);
}

.search-page__intro form {
  max-width: 660px;
  display: grid;
  grid-template-columns: 1fr 130px;
  margin-top: 30px;
}

.search-page__intro input {
  min-width: 0;
  height: 48px;
  padding: 0 17px;
  border: 1px solid var(--border);
  background: var(--paper-soft);
}

.search-page__intro .button {
  height: 48px;
}

.search-page__results {
  padding: 52px 0;
}

.inner-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.inner-link-grid > a {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--border);
}

.inner-link-grid small {
  color: var(--rust);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inner-link-grid strong {
  margin: 7px 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.inner-link-grid span {
  color: #625d56;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.4;
}

.no-results {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px solid var(--border);
}

.no-results a {
  color: var(--navy);
  text-decoration: underline;
}

@media (max-width: 820px) {
  .inner-header__content {
    grid-template-columns: 1fr 42px;
  }

  .inner-header nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 0 16px;
  }

  .inner-header nav a {
    white-space: nowrap;
  }

  .editorial-hero--with-image {
    grid-template-columns: 1fr;
  }

  .editorial-media,
  .editorial-media > img {
    min-height: 280px;
    max-height: 430px;
  }

  .editorial-body {
    width: min(89.1vw, 760px);
  }

  .related-links {
    grid-template-columns: 1fr;
  }

  .editorial-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 540px) {
  .inner-header nav {
    gap: 24px;
  }

  .breadcrumbs {
    font-size: 8px;
  }

  .editorial-hero > div,
  .search-page__intro {
    padding: 32px 24px;
  }

  .editorial-hero h1,
  .search-page h1 {
    font-size: 42px;
  }

  .editorial-body {
    padding-top: 38px;
  }

  .editorial-intro {
    font-size: 21px;
  }

  .editorial-body section p {
    font-size: 16px;
  }

  .search-page__intro form {
    grid-template-columns: 1fr;
  }

  .inner-link-grid {
    grid-template-columns: 1fr;
  }

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

/* WordPress content and commerce integration */
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after {
  right: 0;
}

.site-header .sub-menu {
  display: none;
}

.entry-content > :first-child {
  margin-top: 0;
}

.entry-content > :last-child {
  margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
}

.entry-content h2 {
  margin: 2.2em 0 0.55em;
  font-size: clamp(28px, 3vw, 42px);
}

.entry-content h3 {
  margin: 1.8em 0 0.5em;
  font-size: clamp(23px, 2.4vw, 32px);
}

.entry-content p,
.entry-content li {
  color: #4d4944;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.68;
}

.entry-content a:not(.button) {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.entry-content img {
  height: auto;
}

.entry-content blockquote {
  margin: 2em 0;
  padding: 0.3em 0 0.3em 1.4em;
  border-left: 3px solid var(--rust);
}

.site-search-form {
  max-width: 660px;
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 3px;
  margin-top: 28px;
}

.site-search-form label {
  display: block;
}

.site-search-form input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--paper-soft);
}

.site-search-form .button {
  height: 48px;
  border: 0;
}

.archive-page,
.commerce-page,
.error-page {
  padding-bottom: 72px;
}

.archive-hero {
  width: min(89.1vw, 1180px);
  margin: 0 auto 35px;
  padding: clamp(38px, 6vw, 80px);
  background:
    radial-gradient(circle at 18% 22%, rgb(116 80 42 / 0.045) 0 0.7px, transparent 0.9px) 0 0 / 7px 7px,
    var(--parchment);
  border: 1px solid var(--border);
}

.archive-hero h1,
.commerce-page .page-title {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 74px);
  font-weight: 400;
  line-height: 0.96;
}

.archive-hero > p:last-child,
.archive-description {
  max-width: 700px;
  margin: 0;
  color: #4c4842;
  font-family: var(--serif);
  font-size: clamp(17px, 1.65vw, 23px);
  line-height: 1.45;
}

.archive-grid,
.product-card-grid {
  width: min(89.1vw, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.archive-editorial-hero {
  margin-bottom: 35px;
}

.archive-card,
.product-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--border);
}

.archive-card__link,
.product-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.archive-card__image img,
.product-card img {
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
}

.archive-card__copy,
.product-card > a > div {
  flex: 1;
  padding: 22px;
}

.archive-card h2,
.product-card h3,
.library-status h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.04;
}

.archive-card__copy > p:not(.eyebrow),
.product-card p,
.library-status p {
  color: #5c5750;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
}

.archive-card strong,
.product-card strong {
  color: var(--navy);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.navigation.pagination {
  grid-column: 1 / -1;
  margin-top: 28px;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links .page-numbers {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
}

.nav-links .current {
  color: white;
  background: var(--navy);
}

.recipe-facts {
  width: min(760px, 80vw);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: var(--paper);
}

.recipe-facts > div {
  padding: 18px;
  border-right: 1px solid var(--border);
}

.recipe-facts > div:last-child {
  border-right: 0;
}

.recipe-facts dt {
  color: var(--rust);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recipe-facts dd {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 18px;
}

.recipe-ingredients ul,
.recipe-instructions ol {
  padding-left: 1.3em;
}

.recipe-instructions li + li,
.recipe-ingredients li + li {
  margin-top: 0.65em;
}

.digital-product-library {
  width: min(calc(100% - 42px), 1180px);
  margin-inline: auto;
  padding-bottom: 65px;
}

.digital-guides-page {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.digital-guides-page .breadcrumbs,
.digital-guides-page .editorial-hero {
  width: min(calc(100% - 42px), 1180px);
  margin-inline: auto;
}

.digital-guides-page .editorial-body {
  width: min(calc(100% - 42px), 760px);
  margin-inline: auto;
}

.digital-guides-page .product-card-grid {
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.digital-guides-page .product-card,
.digital-guides-page .product-card > a,
.digital-guides-page .product-card__media {
  min-width: 0;
}

.digital-guides-page .product-card__media {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: clamp(22px, 4vw, 46px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgb(116 80 42 / 0.045) 0 0.7px, transparent 0.9px) 0 0 / 7px 7px,
    #eee0cc;
}

.digital-guides-page .product-card__media picture {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.digital-guides-page .product-card__media img {
  width: auto;
  max-width: 100%;
  height: min(54vw, 520px);
  max-height: 520px;
  aspect-ratio: auto;
  object-fit: contain;
}

.digital-product-library .section-title {
  margin-bottom: 22px;
}

.library-status {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 55px);
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--border);
}

.commerce-shell {
  width: min(calc(100% - 42px), 1180px);
  margin-inline: auto;
  padding: 22px 0 70px;
  overflow-wrap: anywhere;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  color: var(--muted);
  font-size: 12px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: auto;
  float: none;
  margin: 0;
  padding: 0 0 20px;
  background: var(--paper);
  border: 1px solid var(--border);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
  padding: 0 18px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.woocommerce ul.products li.product .price {
  padding: 0 18px;
  color: var(--navy);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  margin-left: 18px;
  border-radius: 0;
  color: white;
  background: var(--navy);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.woocommerce div.product {
  padding: clamp(24px, 4vw, 55px);
  background: var(--paper);
  border: 1px solid var(--border);
}

.single-product .commerce-shell > .woocommerce,
.woocommerce-cart .commerce-shell,
.woocommerce-checkout .commerce-shell,
.woocommerce-account .commerce-shell {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.single-product .woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 68px);
}

.single-product .woocommerce div.product::before,
.single-product .woocommerce div.product::after {
  display: none;
}

.single-product .woocommerce div.product > .woocommerce-product-gallery,
.single-product .woocommerce div.product > .summary {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.single-product .woocommerce div.product > .woocommerce-tabs,
.single-product .woocommerce div.product > .related,
.single-product .woocommerce div.product > .upsells {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}

.single-product .woocommerce-product-gallery {
  padding: clamp(18px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--border);
}

.single-product .woocommerce-product-gallery__image a {
  display: grid;
  place-items: center;
}

.single-product .woocommerce-product-gallery__image img {
  width: 100% !important;
  max-height: 680px;
  object-fit: contain;
}

.single-product .woocommerce div.product .summary {
  padding-block: clamp(8px, 2vw, 24px);
}

.single-product .woocommerce div.product .summary .price {
  color: var(--rust);
  font-family: var(--serif);
  font-size: 25px;
}

.single-product .woocommerce div.product .summary .button {
  margin-left: 0;
  padding: 14px 22px;
  background: var(--navy);
}

.single-product .woocommerce div.product .product_meta {
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}

.commerce-shell--utility {
  padding-top: clamp(34px, 5vw, 70px);
}

.commerce-page-heading {
  margin-bottom: 26px;
  padding: clamp(24px, 4vw, 46px);
  background: var(--parchment);
  border: 1px solid var(--border);
}

.commerce-page-heading h1 {
  max-width: 850px;
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 0.98;
}

.commerce-page-content {
  width: 100%;
  margin-inline: auto;
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce .woocommerce-form-login,
.woocommerce .woocommerce-form-coupon {
  background: var(--paper);
  border: 1px solid var(--border);
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce .woocommerce-form-login,
.woocommerce .woocommerce-form-coupon {
  padding: clamp(20px, 3vw, 36px);
}

.woocommerce-cart .cart-collaterals {
  margin-top: 26px;
  padding: clamp(20px, 3vw, 36px);
}

.commerce-page-content .wc-block-cart,
.commerce-page-content .wc-block-checkout,
.commerce-page-content .wp-block-woocommerce-cart,
.commerce-page-content .wp-block-woocommerce-checkout {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: clamp(20px, 3vw, 36px);
  background: var(--paper);
  border: 1px solid var(--border);
}

.commerce-page-content .wc-block-components-button,
.commerce-page-content .wc-block-cart__submit-button {
  min-height: 48px;
  border-radius: 0;
  color: white;
  background: var(--navy);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
  border-color: var(--border);
  border-radius: 0;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
  border-color: var(--border);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #payment #place_order {
  margin-left: 0;
  background: var(--navy);
}

.woocommerce div.product .product_title {
  padding: 0;
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 0.98;
}

.digital-product-only .woocommerce-product-attributes,
.digital-product-only .shipping,
.digital-product-only .product_meta .sku_wrapper {
  display: none !important;
}

.newsletter__status {
  color: var(--navy);
  font-weight: 700;
}

.search-result.is-active {
  background: #efe4d4;
}

@media (max-width: 820px) {
  .archive-grid,
  .product-card-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

  .recipe-facts {
    width: min(89.1vw, 760px);
    grid-template-columns: repeat(2, 1fr);
  }

  .recipe-facts > div:nth-child(2) {
    border-right: 0;
  }

  .recipe-facts > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .single-product .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .single-product .woocommerce-product-gallery {
    max-width: 620px;
    margin-inline: auto !important;
  }

  .digital-guides-page .product-card__media {
    min-height: 340px;
  }
}

@media (max-width: 540px) {
  .site-search-form,
  .archive-grid,
  .product-card-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

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

  .recipe-facts > div,
  .recipe-facts > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .recipe-facts > div:last-child {
    border-bottom: 0;
  }

  .commerce-shell {
    width: min(calc(100% - 24px), 1180px);
  }

  .digital-guides-page .breadcrumbs,
  .digital-guides-page .editorial-hero,
  .digital-guides-page .editorial-body,
  .digital-product-library {
    width: min(calc(100% - 24px), 1180px);
  }

  .digital-guides-page .product-card-grid {
    grid-template-columns: 1fr;
  }

  .digital-guides-page .product-card__media {
    min-height: 0;
  }

  .digital-guides-page .product-card__media img {
    height: auto;
    max-height: 520px;
  }

  .single-product .woocommerce div.product,
  .commerce-page-heading,
  .woocommerce-cart .woocommerce-cart-form,
  .woocommerce-checkout form.checkout {
    padding: 18px;
  }

  .woocommerce-cart table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    padding-inline: 8px;
  }
}
