/* Homepage composition shares the selected direction-01 foundations. */
:root {
  --paper: #faf8f3;
  --ink: #173c3c;
  --coral: #c43e28;
  --muted: #5f6b65;
  --line: #d8ddd4;
  --teal: #164c4a;
  --gap: clamp(24px, 4.5vw, 72px);
}
.header-inner {
  height: 96px;
}
header nav {
  align-items: center;
}
header nav button {
  font-size: 14px;
  min-height: 44px;
  padding: 0;
}
.header-actions {
  gap: 16px;
}
.icon-button {
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
}
.icon-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.hero {
  height: calc(100svh - 132px);
  min-height: 560px;
  max-height: 770px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #e9e2d4;
}
.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero picture img {
  object-position: center 57%;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #f2eaddb3 0%,
    #f2eadd40 46%,
    transparent 65%
  );
  z-index: 0;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(85px, 10vh, 140px) var(--gap) 60px;
  max-width: 800px;
}
.hero-copy > .eyebrow {
  font-size: 10px;
  letter-spacing: 0.15em;
}
.hero h1 {
  font-size: clamp(65px, 7.6vw, 116px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.94;
  margin: 28px 0;
}
.hero h1 span {
  color: var(--coral);
}
.hero p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 32px;
}
.hero .primary {
  width: 265px;
  font-size: 12px;
  min-height: 54px;
}
.hero-bottom {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  left: var(--gap);
  right: var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}
.hero-bottom > a {
  width: 44px;
  height: 44px;
  border: 1px solid #67716b;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.section {
  padding: 76px var(--gap) 0;
}
.section-head {
  margin-bottom: 30px;
}
.section-head h2 {
  font-size: 36px;
  letter-spacing: -1.4px;
  margin-top: 12px;
}
.section-head > a {
  font-size: 12px;
  border-bottom: 1px solid var(--ink);
  padding: 12px 0;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-image {
  overflow: hidden;
  background: #eae4da;
  aspect-ratio: 1.3;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.category-grid a:hover img {
  transform: scale(1.04);
}
.category-grid a > div:last-child {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding-top: 15px;
}
.category-grid h3 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin: 0;
}
.category-grid span {
  font-size: 10px;
  color: var(--muted);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card-image {
  aspect-ratio: 1/1.15;
  background: #e9e3d9;
  position: relative;
  overflow: hidden;
}
.card-image > a {
  display: block;
  height: 100%;
  overflow: hidden;
}
.card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.product-card:hover img {
  transform: scale(1.025);
}
.card-image > button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: var(--paper);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 23px;
  transition:
    background 0.2s,
    color 0.2s;
}
.card-image > button:hover {
  background: var(--teal);
  color: #fff;
}
.card-info {
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 8px;
}
.card-info h3 {
  font-size: 13px;
  font-weight: 400;
  margin: 0 0 5px;
}
.card-info p {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}
.card-info > span {
  font-size: 12px;
  white-space: nowrap;
}
.filters {
  display: flex;
  gap: 18px;
}
.filters button {
  font-size: 12px;
  min-height: 44px;
  border-bottom: 1px solid transparent;
  padding: 8px 0;
}
.filters button[aria-pressed="true"] {
  border-color: var(--ink);
  font-weight: 700;
}
.home-story {
  margin-top: 85px;
  background: var(--teal);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 510px;
}
.story-image {
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 90% center;
}
.story-copy {
  padding: 65px clamp(30px, 6vw, 90px);
  align-self: center;
}
.story-copy > .eyebrow {
  color: #c1d7d0;
}
.story-copy h2 {
  font-size: clamp(35px, 3.7vw, 56px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -2px;
  margin: 25px 0;
}
.story-copy h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #ffa58f;
}
.story-copy p {
  font-size: 13px;
  line-height: 1.85;
  max-width: 400px;
  color: #d9e4de;
}
.story-copy a {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
  margin-top: 28px;
  padding: 15px 0;
  border-bottom: 1px solid #87a5a0;
  font-size: 12px;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 40px var(--gap);
  margin-top: 75px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 30px;
}
.services :is(button, a) {
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: left;
}
.services :is(button, a) > span {
  font-size: 32px;
  font-weight: 400;
}
.services strong {
  display: block;
  font-size: 13px;
  font-weight: 400;
}
.services small {
  display: block;
  font-size: 10px;
  margin-top: 7px;
  color: var(--muted);
}
.newsletter {
  padding: 55px var(--gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background: #eeede4;
}
.newsletter h2 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -1px;
  margin: 15px 0 8px;
}
.newsletter p {
  font-size: 12px;
  color: var(--muted);
}
.newsletter label {
  font-size: 11px;
}
.newsletter form > div {
  display: flex;
  border-bottom: 1px solid var(--ink);
  margin-top: 10px;
}
.newsletter input {
  border: 0;
  background: transparent;
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0;
  font-size: 15px;
  color: var(--ink);
}
.newsletter button {
  width: 55px;
  font-size: 25px;
}
.newsletter form > p {
  font-size: 10px;
  min-height: 30px;
}
footer {
  display: block;
  padding-top: 55px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-top h2 {
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 18px;
}
.footer-top > div:first-child p {
  font-size: 12px;
  margin-top: 20px;
}
.footer-top > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer-top a:not(.wordmark),
.footer-top button {
  font-size: 11px;
  color: var(--muted);
  padding: 8px 0;
  min-height: 35px;
}
.footer-bottom {
  margin-top: 45px;
}
.search-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.search-row img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}
.search-row strong {
  font-size: 14px;
  display: block;
  font-weight: 400;
}
.search-row span {
  font-size: 12px;
  color: var(--muted);
}
#search {
  width: 640px;
  max-width: calc(100vw - 30px);
}
#search-input {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
  margin-top: 10px;
}
#search label {
  display: block;
  font-size: 12px;
  margin-top: 24px;
}
#search-count {
  font-size: 12px;
  color: var(--muted);
}
#shop-menu {
  width: 750px;
  max-width: calc(100vw - 30px);
}
#shop-menu nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  margin-top: 25px;
}
#shop-menu nav a {
  font-size: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}
#shop-menu > p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 25px;
}
#info-copy {
  font-size: 14px;
  line-height: 1.8;
}
#quick {
  width: 500px;
}
#quick-content > img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  margin-top: 20px;
}
#quick-content h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
}
#quick-content > p {
  font-size: 13px;
  color: var(--muted);
}
.option-select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  margin: 8px 0 16px;
}
.product-buy label {
  font-size: 12px;
}
.product-buy .primary {
  width: 100%;
  margin-top: 10px;
}
.full-product-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.live-product {
  padding-bottom: 30px;
}
.live-product .product-info {
  padding-top: 10px;
}
.live-product h1 {
  font-size: clamp(42px, 4.5vw, 65px);
  line-height: 1.03;
}
.live-product .gallery img {
  width: 100%;
}
.live-product .product-buy {
  margin-top: 25px;
}
.live-product .product-info > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.product-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 15px 0;
}
.product-quantity input {
  width: 75px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.bag-item button {
  margin-right: 15px;
}
#cart-status {
  pointer-events: none;
}
.drawer .primary {
  width: 100%;
}
.no-products {
  font-size: 14px;
}
.product-card button:focus-visible {
  outline-offset: -5px;
}
@media (max-width: 1000px) {
  .header-actions {
    gap: 4px;
  }
  .header-inner nav {
    gap: 20px;
  }
  .hero {
    min-height: 570px;
    max-height: 700px;
  }
  .hero-copy {
    max-width: 580px;
    padding-top: 100px;
  }
  .hero h1 {
    font-size: 80px;
  }
  .hero picture img {
    object-position: 65% center;
  }
  .hero:after {
    background: linear-gradient(
      90deg,
      #f2eaddd9 0%,
      #f2eadd66 55%,
      transparent
    );
  }
  .category-grid,
  .product-grid {
    gap: 16px;
  }
  .category-grid a > div:last-child {
    display: block;
  }
  .category-grid span {
    display: block;
    margin-top: 5px;
  }
  .home-story {
    min-height: 430px;
  }
  .story-copy {
    padding: 40px 30px;
  }
  .story-copy h2 {
    font-size: 38px;
  }
  .services {
    gap: 20px;
  }
  .services :is(button, a) {
    gap: 12px;
  }
  .newsletter {
    gap: 35px;
  }
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .card-info {
    display: block;
  }
  .card-info > span {
    display: block;
    margin-top: 7px;
  }
  .section-head h2 {
    font-size: 30px;
  }
}
@media (max-width: 650px) {
  .header-inner {
    height: 78px;
    margin: 0 20px;
  }
  .header-actions {
    gap: 1px;
  }
  .header-actions .menu-button {
    font-size: 11px;
    margin-right: 4px;
  }
  .account-button {
    display: none;
  }
  .icon-button {
    min-width: 36px;
    padding: 8px;
  }
  .bag-button {
    gap: 5px;
    padding: 0 4px;
  }
  .wordmark {
    font-size: 43px;
  }
  .hero {
    height: calc(100svh - 110px);
    min-height: 570px;
    max-height: 760px;
  }
  .hero picture img {
    object-position: 68% center;
  }
  .hero:after {
    background: linear-gradient(
      180deg,
      #f1eaddf5 0%,
      #f1eaddd9 25%,
      #f1eadd20 65%,
      #f1eadd55 100%
    );
  }
  .hero-copy {
    padding: 45px 24px 0;
    max-width: 100%;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
  }
  .hero h1 {
    font-size: 65px;
    letter-spacing: -4px;
    margin: 22px 0;
  }
  .hero p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 23px;
  }
  .hero .primary {
    width: 235px;
    min-height: 50px;
    font-size: 11px;
  }
  .hero-bottom {
    left: 24px;
    right: 24px;
    bottom: 18px;
  }
  .hero-bottom > span {
    font-size: 9px;
    max-width: 200px;
  }
  .hero-bottom > a {
    background: #faf8f3b3;
  }
  .section {
    padding: 44px 20px 0;
  }
  .section-head {
    align-items: start;
    gap: 15px;
    margin-bottom: 23px;
  }
  .section-head h2 {
    font-size: 27px;
    letter-spacing: -1px;
    margin-top: 10px;
  }
  .section-head .eyebrow {
    font-size: 8px;
  }
  .section-head > a {
    font-size: 9px;
    white-space: nowrap;
    margin-top: 20px;
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .category-image {
    aspect-ratio: 0.8;
  }
  .category-grid h3 {
    font-size: 19px;
  }
  .category-grid span {
    font-size: 9px;
    line-height: 1.45;
  }
  .category-grid a > div:last-child {
    padding-top: 10px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 14px;
  }
  .card-image {
    aspect-ratio: 1/1.15;
  }
  .card-image > button {
    width: 44px;
    height: 44px;
    right: 8px;
    bottom: 8px;
  }
  .card-info h3 {
    font-size: 12px;
  }
  .card-info p {
    font-size: 9px;
  }
  .card-info > span {
    font-size: 12px;
  }
  .arrivals .section-head {
    display: block;
  }
  .filters {
    gap: 24px;
    margin-top: 12px;
  }
  .filters button {
    font-size: 11px;
  }
  .home-story {
    margin-top: 45px;
    grid-template-columns: 1fr;
  }
  .story-image {
    height: 300px;
  }
  .story-image img {
    object-position: 85% center;
  }
  .story-copy {
    padding: 36px 24px 40px;
  }
  .story-copy h2 {
    font-size: 39px;
    margin: 22px 0;
  }
  .story-copy p {
    font-size: 13px;
  }
  .section-head > span {
    display: none;
  }
  .services {
    grid-template-columns: 1fr;
    padding: 25px 24px;
    gap: 20px;
    margin-top: 45px;
  }
  .services :is(button, a) {
    gap: 20px;
    min-height: 55px;
  }
  .services :is(button, a) > span {
    width: 35px;
    text-align: center;
  }
  .services strong {
    font-size: 13px;
  }
  .services small {
    font-size: 10px;
    margin-top: 4px;
  }
  .newsletter {
    padding: 37px 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .newsletter h2 {
    font-size: 28px;
  }
  .newsletter p {
    font-size: 12px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-top > div:last-child {
    grid-column: 1/-1;
  }
  .footer-top a:not(.wordmark),
  .footer-top button {
    min-height: 40px;
  }
  footer {
    padding: 40px 24px 22px;
  }
  .footer-bottom {
    margin-top: 30px;
    gap: 12px;
  }
  .footer-bottom span:nth-child(2) {
    order: 3;
  }
  .dialog-head h2 {
    font-size: 27px;
  }
  #shop-menu nav {
    grid-template-columns: 1fr;
  }
  #shop-menu nav a {
    font-size: 22px;
  }
  .live-product {
    margin: 0 20px;
  }
  .live-product .product-info {
    padding: 22px 0 0;
  }
  .live-product h1 {
    font-size: 46px;
  }
  .live-product .gallery {
    position: static;
  }
  #quick-content > img {
    height: 160px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Journal previews extend the homepage merchandising rhythm. */
.latest-trends {
  padding-bottom: 0;
}
.trends-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.trend-image {
  display: block;
  aspect-ratio: 1.5;
  overflow: hidden;
  background: #e9e3d9;
}
.trend-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.trend-card:hover .trend-image img {
  transform: scale(1.025);
}
.trend-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.trend-meta span {
  font-size: 9px;
  letter-spacing: 0;
  text-transform: none;
}
.trend-card h3 {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.65px;
  line-height: 1.25;
  margin: 12px 0;
}
.trend-card h3 a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  min-height: 44px;
  align-items: start;
}
.trend-card h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.trend-card h3 span {
  font-size: 20px;
}
.trend-card > p {
  font-size: 12px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
  max-width: 330px;
}
.journal-page {
  padding-bottom: 20px;
}
.journal-page .article-heading {
  background: none;
  border: 0;
  text-align: center;
  padding: 35px 24px 45px;
  max-width: 900px;
  margin: auto;
}
.article-heading h1 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.05;
  margin: 22px 0;
}
.article-heading > p {
  color: var(--muted);
  font-size: 16px;
}
.article-byline {
  display: block;
  margin-top: 24px;
  font-size: 11px;
  color: var(--muted);
}
.article-image {
  width: calc(100% - 2 * var(--gap));
  max-width: 1100px;
  height: 500px;
  object-fit: cover;
  margin: auto;
}
.article-body {
  max-width: 680px;
  margin: 45px auto 0;
  padding: 0 24px;
}
.article-body h2 {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin: 32px 0 15px;
}
.article-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
}
.journal-back {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 0;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
@media (max-width: 1000px) {
  .trends-grid {
    gap: 18px;
  }
  .trend-card h3 {
    font-size: 21px;
  }
}
@media (max-width: 650px) {
  .trends-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .trend-image {
    aspect-ratio: 1.6;
  }
  .trend-card h3 {
    font-size: 24px;
    margin: 10px 0 4px;
  }
  .trend-meta {
    margin-top: 16px;
  }
  .trend-card > p {
    font-size: 13px;
    max-width: none;
  }
  .article-image {
    width: calc(100% - 40px);
    height: 300px;
  }
  .journal-page .article-heading {
    padding: 20px 24px 30px;
  }
  .article-heading h1 {
    font-size: 44px;
  }
  .article-heading > p {
    font-size: 14px;
  }
  .article-body {
    margin-top: 30px;
  }
  .article-body p {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .trend-image img {
    transition: none;
  }
}

/* Provider marks accompany, rather than replace, accessible button labels. */
.account-social button,
.social-options button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 16px;
}
.social-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
