:root {
  --ivory: #f7f2e9;
  --warm-white: #fbf8f2;
  --paper: #f2ebdf;
  --ink: #202321;
  --muted-ink: #5e5e56;
  --olive: #4f5737;
  --olive-dark: #3e452d;
  --sage: #7d8765;
  --bronze: #8f6d3f;
  --rule: rgba(67, 60, 45, 0.18);
  --rule-strong: rgba(67, 60, 45, 0.28);
  --shadow-soft: 0 4px 50px -4px rgba(61, 47, 29, 0.5);
  --font-display: "Playfair Display", "Libre Caslon Display", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --font-sans: "DM Sans", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --content-width: 1560px;
  --hero-media-width: 1680px;
  --page-gutter: clamp(1.25rem, 3.4vw, 3.75rem);
  --section-space: clamp(3rem, 5vw, 5.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  /* letter-spacing: -0.025em; */
  line-height: 1.08;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3.25rem, 4.7vw, 4.65rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.15rem, 3.8vw, 2.5rem);
}

h3 {
  margin-bottom: 0.95rem;
  font-size: clamp(1.65rem, 2vw, 2.35rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 0.2rem;
  background: var(--ink);
  color: white;
  font-size: 0.875rem;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

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

.visually-contained {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.section-shell {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.eyebrow,
.section-kicker {
  margin-bottom: 0.9rem;
  color: var(--bronze);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-header {
  /* position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0; */
  color: var(--ink);
}

.header-inner {
  display: flex;
  width: min(100%, var(--content-width));
  min-height: 6.25rem;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 600;;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-leaf {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.65) sepia(0.25);
  transform: rotate(-18deg);
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 2.5vw, 3rem);
  color: #2c3128;
  text-shadow: 0 1px 14px rgba(251, 248, 242, 1);
}

.primary-navigation a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.135em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(42rem, 51vw, 50rem);
  max-height: 50rem;
  overflow: hidden;
  background: var(--ivory);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(100%, var(--hero-media-width));
  transform: translateX(-50%);
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 53%;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(249, 245, 238, 0.99) 0%,
      rgba(249, 245, 238, 0.98) 34%,
      rgba(249, 245, 238, 0.78) 48%,
      rgba(249, 245, 238, 0.08) 68%,
      rgba(249, 245, 238, 0) 100%
    );
}

.hero-inner {
  display: grid;
  width: min(100%, var(--content-width));
  min-height: inherit;
  margin-inline: auto;
  padding: clamp(8.75rem, 10vw, 10.75rem) var(--page-gutter) clamp(4rem, 6vw, 5.5rem);
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.hero-copy {
  max-width: 40rem;
}

.title-rule {
  display: block;
  width: 2.5rem;
  height: 1px;
  margin: 1.75rem 0 1.7rem;
  background: var(--bronze);
}

.hero-intro {
  max-width: 30rem;
  margin-bottom: 2rem;
  color: #33362f;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.85rem 1.3rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button-primary {
  background: var(--olive);
  box-shadow: 0 7px 18px rgba(53, 59, 35, 0.18);
  border-radius: 4px;
  color: #fffdf8;
}

.button-primary:hover {
  background: var(--olive-dark);
  transform: translateY(-1px);
}

.featured-guide {
  padding-top: clamp(3.5rem, 6vw, 5.75rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.75rem);
}

.featured-grid {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 3.5vw, 4.5rem);
  grid-template-columns:
    minmax(17rem, 0.92fr)
    minmax(19rem, 1.1fr)
    minmax(17rem, 0.92fr);
}

.guide-cover-link {
  display: block;
  width: 100%;
  min-width: 0;
  text-decoration: none;
  transition: transform 180ms ease;
}

.guide-cover-link:hover {
  transform: translateY(-2px);
}

.guide-cover {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  box-shadow: var(--shadow-soft);
}

.guide-copy {
  min-width: 0;
  padding-right: clamp(0rem, 1vw, 1rem);
}

.guide-copy h2 {
  /* font-size: clamp(2rem, 3vw, 3.45rem); */
}

.guide-copy > p:not(.section-kicker) {
  max-width: 34rem;
  margin-bottom: 1.5rem;
  color: var(--muted-ink);
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.85rem;
  color: var(--bronze);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.guide-benefits {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 0 0 0 clamp(1.5rem, 2.5vw, 2.7rem);
  border-left: 1px solid var(--rule);
  gap: 1.35rem;
  list-style: none;
}

.guide-benefits li {
  display: grid;
  min-width: 0;
  align-items: center;
  gap: 1rem;
  grid-template-columns: 2rem minmax(0, 1fr);
  color: #383a34;
  font-size: 0.94rem;
}

.botanical-icon,
.line-icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
}

.botanical-icon img {
  width: 2.1rem;
  height: 2.1rem;
  object-fit: contain;
  filter: sepia(0.35) saturate(0.8);
  transform: rotate(-24deg);
}

.line-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: var(--olive);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.collections {
  padding-bottom: clamp(1.5rem, 2.4vw, 2.75rem);
}

.collection-spread {
  display: grid;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(249, 246, 239, 0.5);
  grid-template-columns:
    minmax(0, 23fr)
    minmax(0, 27fr)
    minmax(0, 27fr)
    minmax(0, 23fr);
}

.collection-image,
.collection-copy {
  min-width: 0;
}

.collection-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

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

.collection-image-executive img {
  object-position: 52% 54%;
}

.collection-image-everyday img {
  object-position: 57% 50%;
}

.collection-copy {
  display: flex;
  min-height: 100%;
  padding: clamp(1.75rem, 2.5vw, 2.9rem);
  align-items: flex-start;
  flex-direction: column;
  /* justify-content: center; */
  border-left: 1px solid var(--rule);
}

.collection-image-everyday {
  border-left: 1px solid var(--rule);
}

.collection-copy h3 {
  font-size: clamp(1.6rem, 1.85vw, 2.15rem);
}

.collection-copy > p:not(.availability) {
  max-width: 28rem;
  margin-bottom: 1rem;
  color: var(--muted-ink);
  font-size: 0.89rem;
  line-height: 1.65;
}

.availability {
  margin-bottom: 1rem;
  color: #4e5049;
  font-size: 0.82rem;
}

.available-now {
  display: grid;
  margin: 0 0 0.9rem;
  gap: 0.28rem;
  font-size: 0.82rem;
  line-height: 1.55;
}

.available-now span {
  color: var(--muted-ink);
}

.available-now a {
  position: relative;
  min-height: 2.2rem;
  padding: 0.25rem 0 0.25rem 1.35rem;
  align-content: center;
  text-decoration: none;
}

.available-now a::before {
  position: absolute;
  top: 0.23rem;
  left: 0;
  content: "✓";
  color: var(--olive);
}

.philosophy {
  display: grid;
  padding-top: clamp(2.25rem, 3.8vw, 4rem);
  padding-bottom: clamp(3rem, 4.5vw, 5rem);
  align-items: start;
  gap: clamp(2rem, 4vw, 4.5rem);
  grid-template-columns: 4rem minmax(18rem, 1.15fr) minmax(20rem, 1fr);
}

.philosophy-mark {
  display: grid;
  width: 3.75rem;
  height: 5rem;
  place-items: center;
}

.philosophy-mark img {
  width: 4.5rem;
  max-width: none;
  object-fit: contain;
  filter: sepia(0.28) saturate(0.75);
  transform: rotate(-48deg);
}

.philosophy-heading h2 {
  margin-bottom: 0;
  /* font-size: clamp(2rem, 3vw, 3.5rem); */
}

.philosophy-copy {
  color: var(--muted-ink);
}

.philosophy-copy p {
  margin-bottom: 0.45rem;
}

.philosophy-copy strong {
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.site-footer {
  border-top: 1px solid var(--rule);
}

.footer-inner {
  display: grid;
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding: 1.75rem var(--page-gutter) 2rem;
  align-items: center;
  gap: 2rem;
  grid-template-columns: 0.65fr 1.35fr auto;
}

.footer-brand {
  padding-right: 2rem;
  border-right: 1px solid var(--rule);
}

.footer-description,
.copyright {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.6;
}

.footer-description {
  max-width: 31rem;
  color: var(--muted-ink);
}

.copyright {
  white-space: nowrap;
}


@media (min-width: 1681px) {
  .hero::before,
  .hero::after {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    width: calc((100vw - var(--hero-media-width)) / 2);
    content: "";
    background: var(--ivory);
  }

  .hero::before {
    left: 0;
  }

  .hero::after {
    right: 0;
  }
}

@media (max-width: 1180px) {
  .featured-grid {
    gap: clamp(1.75rem, 2.8vw, 3rem);
    grid-template-columns:
      minmax(15rem, 0.92fr)
      minmax(17rem, 1fr)
      minmax(15rem, 0.86fr);
  }

  .guide-benefits {
    padding-left: 1.5rem;
  }

  .collection-spread {
    grid-template-columns:
      minmax(0, 23fr)
      minmax(0, 27fr)
      minmax(0, 27fr)
      minmax(0, 23fr);
  }

  .collection-copy {
    padding: clamp(1.65rem, 2.2vw, 2.35rem);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 46rem;
    max-height: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  }

  .featured-grid {
    grid-template-columns: minmax(15rem, 0.86fr) minmax(18rem, 1.14fr);
  }

  .guide-benefits {
    padding: 2rem 0 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-benefits li {
    align-items: start;
  }

  .collection-spread {
    grid-template-columns: minmax(15rem, 0.94fr) minmax(19rem, 1.06fr);
  }

  .collection-image {
    aspect-ratio: 1 / 1;
  }

  .collection-copy {
    min-height: 100%;
  }

  .collection-copy-everyday,
  .collection-image-everyday {
    border-top: 1px solid var(--rule);
  }

  .collection-copy-everyday {
    border-left: 0;
  }

  .collection-image-everyday {
    border-left: 1px solid var(--rule);
  }

  .philosophy {
    grid-template-columns: 3rem minmax(16rem, 1fr) minmax(18rem, 1fr);
  }
}

@media (max-width: 800px) {
  :root {
    --page-gutter: clamp(1.15rem, 5vw, 2rem);
  }

  .header-inner {
    min-height: 5.25rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 30;
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.75rem;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    gap: 0.4rem;
    place-content: center;
  }

  .menu-toggle span[aria-hidden="true"] {
    display: block;
    width: 1.35rem;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:first-of-type {
    transform: translateY(0.22rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:last-of-type {
    transform: translateY(-0.22rem) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    z-index: 25;
    inset: 0;
    display: grid;
    padding: 7rem var(--page-gutter) 3rem;
    align-content: start;
    background: rgba(247, 242, 233, 0.985);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .primary-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-navigation a {
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--rule);
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: none;
  }

  .primary-navigation a::after {
    display: none;
  }

  .hero {
    min-height: 46rem;
    max-height: none;
  }

  .hero-media,
  .hero-overlay {
    right: 0;
    left: 0;
    width: auto;
    transform: none;
  }

  .hero-media img {
    object-position: 63% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(249, 245, 238, 0.98) 0%,
        rgba(249, 245, 238, 0.93) 42%,
        rgba(249, 245, 238, 0.52) 68%,
        rgba(249, 245, 238, 0.08) 100%
      );
  }

  .hero-inner {
    padding-top: 8rem;
    align-items: start;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 35rem;
  }

  .featured-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .guide-cover-link {
    width: min(100%, 38rem);
    margin-inline: auto;
  }

  .guide-copy {
    padding-right: 0;
  }

  .guide-benefits {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .collection-spread {
    grid-template-columns: 1fr;
  }

  .collection-image,
  .collection-copy {
    min-height: auto;
  }

  .collection-image {
    aspect-ratio: 4 / 3;
  }

  .collection-image img {
    aspect-ratio: auto;
  }

  .collection-copy {
    min-height: 19rem;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  .collection-copy-everyday {
    border-top: 1px solid var(--rule);
  }

  .collection-image-everyday {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .philosophy {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .philosophy-copy {
    grid-column: 2;
  }

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

  .footer-brand {
    padding-right: 0;
    padding-bottom: 1.25rem;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
}

@media (max-width: 520px) {
  body {
    font-size: 0.96rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 3.2rem);
  }

  .brand {
    font-size: 0.92rem;
  }

  .hero {
    min-height: 44rem;
    max-height: none;
  }

  .hero-media img {
    object-position: 61% 55%;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(249, 245, 238, 0.99) 0%,
        rgba(249, 245, 238, 0.94) 50%,
        rgba(249, 245, 238, 0.63) 72%,
        rgba(249, 245, 238, 0.16) 100%
      );
  }

  .hero-inner {
    padding-top: 7.2rem;
    padding-bottom: 4rem;
  }

  .hero-copy .eyebrow {
    max-width: 15rem;
  }

  .hero-intro {
    max-width: 20rem;
  }

  .button {
    width: 100%;
  }

  .featured-guide {
    padding-top: 3.25rem;
  }

  .guide-cover-link {
    width: 100%;
  }

  .guide-cover {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .collection-copy {
    min-height: 0;
    padding: 2.35rem 1.45rem 2.7rem;
  }

  .collection-copy h3 {
    font-size: 2rem;
  }

  .philosophy {
    padding-top: 2.75rem;
    grid-template-columns: 1fr;
  }

  .philosophy-mark {
    width: 3rem;
    height: 3rem;
  }

  .philosophy-heading,
  .philosophy-copy {
    grid-column: 1;
  }

  .philosophy-heading h2 {
    font-size: 2.35rem;
  }
}

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

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