:root {
  --forest: #0f2f21;
  --forest-2: #173f2c;
  --cream: #f6efe2;
  --paper: #fffaf1;
  --sand: #d9bd8c;
  --gold: #b8842f;
  --black: #111314;
  --ink: #172018;
  --muted: #6f695e;
  --line: rgba(17, 19, 20, 0.13);
  --product-media-bg: var(--cream);
  --shadow: 0 22px 60px rgba(17, 19, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis-weight: none;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

[hidden] {
  display: none !important;
}

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

.site-header {
  align-items: center;
  color: var(--paper);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 54px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

.site-header.solid {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  position: sticky;
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: var(--paper);
  border: 2px solid currentColor;
  color: var(--forest);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  width: 42px;
}

.site-header.solid .brand-mark {
  background: var(--forest);
  color: var(--cream);
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: flex-end;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding-block: 6px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--gold);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  justify-content: flex-end;
}

.cart-link {
  align-items: center;
  border: 1px solid currentColor;
  color: inherit;
  display: inline-flex;
  flex: 0 0 auto;
  height: 44px;
  justify-content: center;
  position: relative;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 44px;
}

.cart-link:hover,
.cart-link[aria-current="page"] {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.cart-link svg {
  fill: none;
  height: 23px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 23px;
}

.cart-count {
  align-items: center;
  background: var(--gold);
  color: var(--black);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 900;
  height: 20px;
  justify-content: center;
  line-height: 1;
  min-width: 20px;
  padding: 0 5px;
  position: absolute;
  right: -9px;
  top: -9px;
}

.cart-count.is-empty {
  display: none;
}

.hero {
  min-height: 88svh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 18, 13, 0.86), rgba(12, 18, 13, 0.46) 48%, rgba(12, 18, 13, 0.16)),
    linear-gradient(0deg, rgba(12, 18, 13, 0.28), rgba(12, 18, 13, 0.1));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--paper);
  max-width: 760px;
  padding: clamp(132px, 20vh, 210px) clamp(20px, 7vw, 86px) 84px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(4rem, 11vw, 10.5rem);
  margin-bottom: 22px;
  max-width: 920px;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5.1rem);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  margin-bottom: 12px;
}

.hero-copy {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  max-width: 620px;
}

.hero-actions,
.collection-copy .button {
  margin-top: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 2px solid transparent;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 48px;
  padding: 0 20px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--black);
}

.button-secondary {
  border-color: rgba(255, 250, 241, 0.72);
  color: var(--paper);
}

.intro-band {
  align-items: end;
  background: var(--forest);
  color: var(--paper);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  padding: clamp(42px, 6vw, 76px) clamp(20px, 7vw, 86px);
}

.intro-band h2 {
  margin-bottom: 0;
  max-width: 930px;
}

.intro-band p:last-child {
  color: rgba(255, 250, 241, 0.78);
  font-size: 1.06rem;
  margin-bottom: 0;
}

.section-pad {
  padding: clamp(54px, 8vw, 110px) clamp(20px, 7vw, 86px);
}

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

.feature-card,
.product-card {
  background: #fffdf6;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17, 19, 20, 0.08);
  overflow: hidden;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card[role="link"] {
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card[role="link"]:hover,
.product-card[role="link"]:focus-visible {
  border-color: rgba(184, 132, 47, 0.62);
  box-shadow: 0 18px 42px rgba(17, 19, 20, 0.13);
  outline: none;
  transform: translateY(-3px);
}

.product-card-featured {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.78fr);
}

.feature-copy,
.product-meta {
  padding: 24px;
}

.feature-copy p:last-child,
.product-meta p:last-child,
.site-footer p {
  margin-bottom: 0;
}

.guide-crop {
  background-image: url("assets/brand-style-guide.png");
  background-repeat: no-repeat;
  background-size: 430% auto;
  min-height: 280px;
}

.crop-polos {
  background-position: 48% 42%;
}

.crop-hats {
  background-position: 47% 17%;
}

.crop-accessories {
  background-position: 71% 72%;
}

.collection-cta {
  background: var(--black);
  color: var(--paper);
}

.collection-copy {
  max-width: 760px;
  padding: clamp(46px, 7vw, 92px) clamp(20px, 7vw, 86px);
}

.collection-copy p:not(.section-kicker) {
  color: rgba(255, 250, 241, 0.76);
  max-width: 560px;
}

.story-strip {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.story-panel {
  max-width: 640px;
}

.story-panel p {
  color: var(--muted);
}

.text-link {
  border-bottom: 2px solid var(--gold);
  color: var(--forest);
  display: inline-flex;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 8px;
  padding-bottom: 5px;
  text-transform: uppercase;
}

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

.mantra-grid span {
  align-items: center;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3.8vw, 3.4rem);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 190px;
  padding: 24px;
  text-align: center;
}

.mantra-grid span:nth-child(2) {
  background: var(--gold);
  color: var(--black);
}

.mantra-grid span:nth-child(3) {
  background: var(--cream);
  color: var(--forest);
}

.mantra-grid span:nth-child(4) {
  background: var(--black);
}

.site-footer {
  align-items: center;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 34px clamp(20px, 7vw, 86px);
}

.site-footer strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(255, 250, 241, 0.8);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-main {
  min-height: 70svh;
}

.page-hero {
  align-items: end;
  background: var(--forest);
  color: var(--paper);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  padding: clamp(80px, 12vw, 142px) clamp(20px, 7vw, 86px) clamp(52px, 7vw, 86px);
}

.page-hero h1 {
  font-size: clamp(3.1rem, 7vw, 7.2rem);
  margin-bottom: 0;
}

.shop-hero .eyebrow {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.page-hero p:last-child {
  color: rgba(255, 250, 241, 0.76);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.shop-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(240px, 0.26fr) minmax(0, 0.74fr);
}

.shop-note {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 26px;
  position: sticky;
  top: 96px;
}

.shop-note h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.shop-note p:not(.section-kicker) {
  color: var(--muted);
}

.collection-tabs {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.collection-tab-list {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.collection-tab {
  appearance: none;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  min-height: 44px;
  padding: 0 16px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.collection-tab:hover,
.collection-tab.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.collection-tab:focus-visible {
  outline: 3px solid rgba(184, 132, 47, 0.42);
  outline-offset: 2px;
}

.collection-panel {
  min-width: 0;
}

.collection-group-heading {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.collection-group-heading h3 {
  color: var(--forest);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  margin-bottom: 0;
  max-width: 560px;
}

.collection-group-heading .section-kicker {
  margin-bottom: 4px;
}

.product-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-image {
  aspect-ratio: 1.55 / 1;
  background: var(--product-media-bg);
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.product-image.portrait-product {
  aspect-ratio: 1 / 1.28;
  box-sizing: border-box;
  object-fit: contain;
  padding: 10px;
}

.product-image.hat-product {
  background: var(--product-media-bg);
  object-fit: contain;
  padding: 10px;
}

.product-image.lookbook-image {
  aspect-ratio: auto;
  background: #f8f7f3;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.product-card-polo {
  --product-meta-min-height: 236px;
}

.product-card-tee {
  --product-meta-min-height: 278px;
}

.product-card-hat {
  --product-meta-min-height: 238px;
}

.product-card-putter {
  --product-meta-min-height: 268px;
}

.product-card > .product-image {
  flex: 0 0 auto;
}

.product-meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: var(--product-meta-min-height, 0);
}

.product-meta h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

.product-meta p:not(.section-kicker) {
  color: var(--muted);
}

.product-meta span {
  color: var(--forest);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: auto;
  padding-top: 4px;
  text-transform: uppercase;
}

.crop-cart-path {
  background-position: 9% 43%;
  background-size: 520% auto;
}

.crop-divot-daddy {
  background-position: 33% 43%;
  background-size: 520% auto;
}

.crop-pin-seeker {
  background-position: 52% 43%;
  background-size: 520% auto;
}

.crop-after-nine {
  background-position: 70% 43%;
  background-size: 520% auto;
}

.crop-headcovers {
  background-position: 12% 72%;
  background-size: 470% auto;
}

.crop-tees {
  background-position: 98% 72%;
  background-size: 500% auto;
}

.story-hero {
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.story-hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.story-hero::after {
  background: linear-gradient(90deg, rgba(17, 19, 20, 0.84), rgba(17, 19, 20, 0.35) 52%, rgba(17, 19, 20, 0.08));
  content: "";
  inset: 0;
  position: absolute;
}

.story-hero-copy {
  color: var(--paper);
  max-width: 900px;
  padding: clamp(126px, 18vw, 190px) clamp(20px, 7vw, 86px) 70px;
  position: relative;
  z-index: 1;
}

.story-hero h1 {
  font-size: clamp(3.2rem, 7.5vw, 8.6rem);
}

.story-content {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
}

.story-lead h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.story-body {
  color: var(--muted);
  font-size: 1.05rem;
}

.values-band {
  background: var(--forest);
  color: var(--paper);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.values-band article {
  background: rgba(255, 250, 241, 0.05);
  min-height: 300px;
  padding: clamp(28px, 4vw, 54px);
}

.values-band p:not(.section-kicker) {
  color: rgba(255, 250, 241, 0.76);
}

.brand-board {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
}

.brand-board p:not(.section-kicker) {
  color: var(--muted);
}

.brand-board img {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-detail {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(280px, 0.56fr) minmax(280px, 0.44fr);
}

.product-gallery {
  background: var(--cream);
  border: 1px solid var(--line);
  min-width: 0;
  padding: clamp(14px, 3vw, 28px);
}

.product-detail-image {
  aspect-ratio: 1 / 1.12;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.product-purchase {
  background: #fffdf6;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17, 19, 20, 0.08);
  padding: clamp(24px, 4vw, 42px);
  position: sticky;
  top: 96px;
}

.product-back-link {
  border-bottom: 2px solid var(--gold);
  color: var(--forest);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.product-purchase h1 {
  color: var(--forest);
  font-size: clamp(2.7rem, 5.6vw, 6rem);
}

.product-detail-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.product-price {
  color: var(--black);
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 26px;
}

.size-field {
  border: 0;
  margin: 0 0 24px;
  padding: 0;
}

.size-field legend,
.quantity-control span {
  color: var(--forest);
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-choice {
  cursor: pointer;
  display: inline-flex;
}

.size-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-choice span {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--forest);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  min-width: 56px;
  padding: 0 16px;
  text-transform: uppercase;
}

.size-choice input:checked + span,
.size-choice:focus-within span {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.purchase-row {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: 120px minmax(180px, 1fr);
}

.quantity-control input {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  height: 48px;
  padding: 0 12px;
  width: 100%;
}

.add-status {
  color: var(--forest);
  font-weight: 800;
  margin: 16px 0 0;
  min-height: 24px;
}

.add-status a {
  border-bottom: 2px solid var(--gold);
}

.product-not-found {
  grid-column: 1 / -1;
}

.cart-page {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
}

.cart-list {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.cart-item {
  align-items: center;
  background: #fffdf6;
  border: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 150px minmax(0, 1fr) 140px;
  padding: 16px;
}

.cart-item-media {
  background: var(--cream);
  border: 1px solid var(--line);
}

.cart-item-image {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 8px;
  width: 100%;
}

.cart-item-copy h2 {
  color: var(--forest);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  margin-bottom: 8px;
}

.cart-item-copy p {
  color: var(--muted);
  margin-bottom: 6px;
}

.cart-line-price {
  color: var(--black) !important;
  font-weight: 900;
}

.cart-line-controls {
  display: grid;
  gap: 10px;
}

.remove-item,
.clear-cart {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--gold);
  color: var(--forest);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  justify-self: start;
  letter-spacing: 0.08em;
  padding: 0 0 5px;
  text-transform: uppercase;
}

.cart-summary,
.empty-cart {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 34px);
}

.cart-summary {
  position: sticky;
  top: 96px;
}

.summary-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 1.1rem;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 16px;
}

.summary-row strong {
  font-size: 1.4rem;
}

.cart-summary p:not(.section-kicker),
.empty-cart p:not(.section-kicker) {
  color: var(--muted);
}

.cart-summary .button {
  margin: 8px 0 18px;
  width: 100%;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

@media (max-width: 960px) {
  .intro-band,
  .collection-cta,
  .story-strip,
  .page-hero,
  .shop-layout,
  .story-content,
  .brand-board,
  .product-detail,
  .cart-page {
    grid-template-columns: 1fr;
  }

  .featured-grid,
  .values-band,
  .product-card-featured {
    grid-template-columns: 1fr;
  }

  .product-card-featured {
    grid-column: auto;
  }

  .product-image.lookbook-image {
    height: auto;
  }

  .shop-note {
    position: static;
  }

  .product-purchase,
  .cart-summary {
    position: static;
  }

  .collection-group-heading {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
    position: absolute;
  }

  .site-header.solid {
    position: sticky;
  }

  .brand-name {
    white-space: normal;
  }

  .site-nav {
    gap: 10px 16px;
  }

  .header-actions {
    gap: 12px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    padding-top: 150px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

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

  .mantra-grid span {
    min-height: 140px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .story-hero {
    min-height: 560px;
  }

  .cart-item {
    align-items: start;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .cart-line-controls {
    grid-column: 2;
  }
}

@media (max-width: 460px) {
  .site-header {
    align-items: flex-start;
    flex-direction: row;
  }

  .header-actions {
    align-items: flex-end;
    flex-direction: column-reverse;
    margin-left: auto;
  }

  .site-nav {
    justify-content: flex-end;
    text-align: right;
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .button {
    width: 100%;
  }

  .hero-copy,
  .page-hero p:last-child,
  .story-body {
    font-size: 1rem;
  }

  .feature-copy,
  .product-meta,
  .shop-note {
    padding: 20px;
  }

  .purchase-row,
  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-line-controls {
    grid-column: auto;
  }
}
