﻿:root {
  --ink: #292724;
  --paper: #fbfaf7;
  --warm: #ece5da;
  --line: #e3ded6;
  --olive: #5f6d48;
  --olive-pale: #eef0e9;
  --muted: #716c65;
  --mood-bg: #dce6d3;
  --mood-soft: #eef2e9;
  --mood-pop: #e2a868;
  --mood-ink: #33402a;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none!important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

body[data-mood="meadow"] {
  --mood-bg: #dce6d3;
  --mood-soft: #eef2e9;
  --mood-pop: #e2a868;
  --mood-ink: #33402a;
}

body[data-mood="sunbeam"] {
  --mood-bg: #f5dfad;
  --mood-soft: #fbf1d6;
  --mood-pop: #d37859;
  --mood-ink: #57431d;
}

body[data-mood="daydream"] {
  --mood-bg: #d9e9ed;
  --mood-soft: #eaf3f4;
  --mood-pop: #d99094;
  --mood-ink: #294951;
}

button,input {
  font: inherit;
}

button {
  cursor: pointer;
}

.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: absolute;
  z-index: 10;
  top: -4rem;
  left: 1rem;
  padding: .7rem 1rem;
  color: white;
  background: var(--olive);
  transition: top .2s;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(251,250,247,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-top {
  min-height: 6.3rem;
  display: grid;
  grid-template-columns: 1fr minmax(18rem,26.5rem) 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0 clamp(1.5rem,4.6vw,4.7rem);
  border-bottom: 1px solid var(--line);
}

.logo-link {
  width: 5.25rem;
  height: 5.25rem;
  display: grid;
  place-items: center;
}

.logo-link img {
  width: 5rem;
  height: 5rem;
  display: block;
  object-fit: contain;
  image-rendering: auto;
  filter: none;
}

.search {
  height: 3rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 0 1.2rem;
  border: 1px solid #d9d4cc;
  border-radius: 2rem;
  color: #4e4a45;
}

.search svg,.account-button svg,.cart-button svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search input::placeholder {
  color: #908a82;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-button {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1rem;
  border: 0;
  border-radius: 2rem;
  color: #3e4734;
  background: var(--olive-pale);
}

.cart-button {
  position: relative;
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  color: white;
  border: 0;
  border-radius: 50%;
  background: var(--olive);
}

.cart-count {
  position: absolute;
  right: -.25rem;
  top: -.25rem;
  min-width: 1.22rem;
  height: 1.22rem;
  display: grid;
  place-items: center;
  padding: 0 .2rem;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: .7rem;
  font-weight: 700;
}

.collection-nav {
  min-height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
}

.hero-visit-stage {
  scroll-margin-top: 10rem;
}

.hero[hidden],
.highlight-showcase[hidden] {
  display: none;
}

.hero {
  min-height: 38.2rem;
  display: grid;
  grid-template-columns: minmax(0,.78fr) minmax(0,1fr);
  background: var(--mood-bg);
  transition: background .55s ease;
}

.hero-copy {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 5rem clamp(2rem,7vw,7rem);
}

.hero-kicker {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-kicker .eyebrow {
  margin-bottom: 1.35rem;
}

.mood-shuffle {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin: 0 0 1.35rem;
  padding: .5rem .75rem;
  border: 1px solid color-mix(in srgb,var(--mood-ink) 20%,transparent);
  border-radius: 2rem;
  color: var(--mood-ink);
  background: rgba(255,255,255,.36);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s,background .2s;
}

.mood-shuffle:hover {
  transform: rotate(-2deg) translateY(-1px);
  background: rgba(255,255,255,.65);
}

.mood-shuffle span {
  color: var(--mood-pop);
  font-size: 1rem;
}

.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  color: var(--mood-ink);
  font-size: clamp(3.3rem,5.1vw,5.5rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .98;
  transition: color .55s ease;
}

.hero-text {
  max-width: 26rem;
  margin: 1.8rem 0 2.3rem;
  color: #58534e;
  font-size: 1.1rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  padding: .8rem 1.35rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s,color .2s;
}

.button:hover,.button:focus-visible {
  color: white;
  background: var(--ink);
}

.button-dark {
  width: 100%;
  border-color: var(--olive);
  color: white;
  background: var(--olive);
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  object-fit: cover;
  object-position: center;
  transition: filter .55s ease,transform .7s ease;
}

.hero:hover .hero-image {
  transform: scale(1.015);
}

body[data-mood="sunbeam"] .hero-image {
  filter: saturate(1.04) sepia(.04);
}

body[data-mood="daydream"] .hero-image {
  filter: saturate(.9) hue-rotate(8deg);
}

.hero-sticker {
  position: absolute;
  right: clamp(1rem,3vw,2.5rem);
  bottom: clamp(1rem,3vw,2.5rem);
  width: 8.5rem;
  height: 8.5rem;
  display: grid;
  place-content: center;
  padding: 1rem;
  border-radius: 50%;
  color: var(--mood-ink);
  background: rgba(255,255,255,.86);
  box-shadow: 0 .8rem 2.5rem rgba(61,52,42,.12);
  font-size: .78rem;
  line-height: 1.35;
  text-align: center;
  transform: rotate(5deg);
  backdrop-filter: blur(10px);
}

.hero-sticker b {
  display: block;
  color: var(--mood-pop);
  font-size: 1.6rem;
  line-height: 1;
}

.hero-doodles span {
  position: absolute;
  z-index: -1;
  display: block;
  border: 2px solid color-mix(in srgb,var(--mood-pop) 72%,transparent);
}

.hero-doodles span:nth-child(1) {
  right: 8%;
  bottom: 10%;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
}

.hero-doodles span:nth-child(2) {
  right: 20%;
  bottom: 17%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--mood-pop);
}

.hero-doodles span:nth-child(3) {
  right: 10%;
  top: 23%;
  width: 2.8rem;
  height: 1.4rem;
  border-width: 0 0 2px;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.playful-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 5rem clamp(1.5rem,5.8vw,5.8rem) 1rem;
}

.play-card {
  position: relative;
  min-height: 22rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(2rem,4vw,4rem);
  border-radius: 1.7rem;
}

.play-card--adventure {
  color: #3f302e;
  background: #f3d0d0;
}

.play-card--colours {
  color: #214650;
  background: #cfe8eb;
}

.play-card-copy {
  position: relative;
  z-index: 2;
  max-width: 25rem;
}

.play-card--colours .play-card-copy {
  max-width: 60%;
}

.play-card .eyebrow {
  margin-bottom: 1rem;
  color: currentColor;
  opacity: .65;
}

.play-card h2 {
  margin: 0;
  font-size: clamp(2.25rem,3.6vw,4rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .98;
}

.play-card p:not(.eyebrow) {
  margin: 1.2rem 0 1.5rem;
  font-size: .95rem;
  line-height: 1.6;
  opacity: .78;
}

.play-card a {
  color: inherit;
  font-size: .76rem;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.play-card a span {
  display: inline-block;
  margin-left: .4rem;
  transition: transform .2s;
}

.play-card a:hover span {
  transform: translateX(.3rem);
}

.play-shapes span {
  position: absolute;
  display: block;
}

.shape-sun {
  right: 8%;
  top: 14%;
  width: 8rem;
  height: 8rem;
  border: 1.2rem solid rgba(255,255,255,.65);
  border-radius: 50%;
}

.shape-cloud {
  right: 8%;
  bottom: 8%;
  width: 10rem;
  height: 5rem;
  border-radius: 6rem;
  background: rgba(255,255,255,.58);
}

.shape-cloud::before,.shape-cloud::after {
  content: "";
  position: absolute;
  bottom: 1.2rem;
  border-radius: 50%;
  background: inherit;
}

.shape-cloud::before {
  left: 1.4rem;
  width: 4.6rem;
  height: 4.6rem;
}

.shape-cloud::after {
  right: 1.1rem;
  width: 3.5rem;
  height: 3.5rem;
}

.shape-dot {
  right: 35%;
  top: 20%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #d87e74;
}

.mini-cups {
  position: absolute;
  right: 0;
  bottom: -1.2rem;
  width: 40%;
  height: 75%;
}

.mini-cup {
  position: absolute;
  bottom: 0;
  width: 4.5rem;
  height: 8rem;
  border-radius: 1.1rem 1.1rem 1.5rem 1.5rem;
  box-shadow: 0 1rem 1.8rem rgba(39,67,72,.12);
  transform-origin: bottom;
}

.mini-cup::before {
  content: "";
  position: absolute;
  left: -.25rem;
  top: -.35rem;
  width: 5rem;
  height: 1.1rem;
  border-radius: 1rem;
  background: inherit;
  filter: brightness(1.06);
}

.mini-cup::after {
  content: "";
  position: absolute;
  left: 2rem;
  bottom: 7.5rem;
  width: .45rem;
  height: 3.4rem;
  border-radius: 1rem;
  background: inherit;
  filter: brightness(1.07);
}

.mini-cup--cream,.mini-cup--bloom {
  left: 0;
  z-index: 1;
  background: #ee1787;
  transform: rotate(-9deg) scale(.85);
}

.mini-cup--sage,.mini-cup--sky {
  left: 29%;
  z-index: 3;
  background: #a9d1ed;
}

.mini-cup--clay,.mini-cup--lime {
  left: 58%;
  z-index: 2;
  background: #b8db51;
  transform: rotate(9deg) scale(.9);
}

.collection {
  padding: 5rem clamp(1.5rem,5.8vw,5.8rem);
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.section-heading .eyebrow {
  margin-bottom: .55rem;
}

.section-heading h2,.dialog h2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -.055em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}

.product-grid--single {
  grid-template-columns: minmax(0,32rem);
}

.product-image {
  height: 17rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-image--photo {
  height: 31rem;
  border-radius: 1.25rem;
  background: #f7eee7;
}

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

.product-image--cream {
  background: #eae3d8;
}

.product-image--sage {
  background: #dfe2d7;
}

.product-image--clay {
  background: #eadbd0;
}

.tumbler {
  position: relative;
  display: block;
  width: 6rem;
  height: 10.5rem;
  border-radius: 1.3rem 1.3rem 1.8rem 1.8rem;
  box-shadow: 0 .75rem 1rem rgba(69,56,44,.1);
}

.tumbler::before {
  content: "";
  position: absolute;
  left: -.3rem;
  top: -.45rem;
  width: 6.6rem;
  height: 1.45rem;
  border-radius: 1rem;
  background: inherit;
  filter: brightness(1.06);
}

.tumbler::after {
  content: "";
  position: absolute;
  left: 2.7rem;
  bottom: 9.8rem;
  width: .55rem;
  height: 4.5rem;
  border-radius: 1rem;
  background: inherit;
  filter: brightness(1.08);
}

.tumbler--cream {
  background: #f7f1e5;
}

.tumbler--sage {
  background: #adb6a2;
}

.tumbler--clay {
  background: #c97d5a;
}

.product-details {
  padding: 1rem 0 1.5rem;
}

.product-details h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.product-details p {
  margin: .35rem 0 1rem;
  color: var(--muted);
  font-size: .9rem;
}

.product-details .product-model,.product-model {
  margin: 0 0 .55rem;
  color: var(--olive);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.product-details .product-colour-dots {
  display: flex;
  justify-content: flex-start;
  gap: .38rem;
  margin: 0 0 1.1rem;
}

.dot {
  width: .82rem;
  height: .82rem;
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.product-details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-details span {
  font-size: .9rem;
}

.add-button {
  padding: .55rem 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card-link .product-image {
  transition: transform .35s ease;
}

.product-card-link:hover .product-image {
  transform: translateY(-.2rem);
}

.product-details h3 a {
  color: inherit;
  text-decoration: none;
}

.product-details h3 a:hover {
  text-decoration: underline;
  text-underline-offset: .25rem;
}

.promise {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  padding: 4.5rem clamp(1.5rem,5.8vw,5.8rem);
  background: #efeee9;
}

.promise>p {
  margin: 0;
  font-size: clamp(1.7rem,2.5vw,2.6rem);
  line-height: 1.1;
  letter-spacing: -.05em;
}

.promise div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: .75rem;
  color: var(--muted);
  font-size: .9rem;
}

.breadcrumbs {
  display: flex;
  gap: .65rem;
  padding: 1.25rem clamp(1.5rem,5.8vw,5.8rem);
  color: var(--muted);
  font-size: .78rem;
}

.breadcrumbs a {
  color: inherit;
  text-underline-offset: .2rem;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(22rem,.85fr);
  min-height: 42rem;
}

.product-gallery {
  padding: clamp(1.5rem,4vw,4rem);
  background: #f0ece5;
}

.product-stage {
  min-height: 36rem;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  transition: background .25s;
}

.product-stage-image {
  width: 100%;
  height: auto;
  min-height: 36rem;
  max-height: 48rem;
  object-fit: contain;
}

.zoom-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.zoom-trigger:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.product-stage .tumbler {
  width: 9rem;
  height: 16rem;
  border-radius: 1.8rem 1.8rem 2.4rem 2.4rem;
}

.product-stage .tumbler::before {
  left: -.45rem;
  top: -.65rem;
  width: 9.9rem;
  height: 2.1rem;
}

.product-stage .tumbler::after {
  left: 4rem;
  bottom: 15rem;
  width: .8rem;
  height: 6.5rem;
}

.product-gallery>p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .75rem;
  text-align: center;
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.product-detail-gallery figure {
  margin: 0;
}

.product-detail-gallery img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  object-fit: cover;
}

.product-detail-gallery .zoom-trigger {
  border-radius: 1rem;
  overflow: hidden;
}

.product-detail-gallery figcaption {
  margin-top: .45rem;
  color: var(--muted);
  font-size: .73rem;
  text-align: center;
}

.product-info {
  padding: clamp(3rem,6vw,6rem) clamp(2rem,5vw,5rem);
}

.product-info h1 {
  margin: 0;
  font-size: clamp(2.5rem,4vw,4.2rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: 1;
}

.product-price {
  margin: 1.4rem 0;
  font-size: 1.05rem;
}

.product-intro {
  max-width: 34rem;
  margin: 0 0 2rem;
  color: var(--muted);
  line-height: 1.7;
}

.product-highlights {
  display: grid;
  gap: 0;
  margin: 0 0 2rem;
  border-top: 1px solid var(--line);
}

.product-highlights div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .8rem;
}

.product-highlights dt {
  color: var(--muted);
}

.product-highlights dd {
  margin: 0;
}

.variant-picker {
  margin: 0 0 2rem;
  padding: 0;
  border: 0;
}

.variant-picker legend {
  width: 100%;
  margin-bottom: .9rem;
  font-size: .83rem;
}

.selected-colour {
  float: right;
  color: var(--muted);
}

.variant-picker label {
  display: inline-grid;
  place-items: center;
  margin-right: .55rem;
}

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

.swatch {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.swatch--bloom,.dot--bloom { background: #ee1787; }
.swatch--lilac,.dot--lilac { background: #c7a6e8; }
.swatch--sky,.dot--sky { background: #a9d1ed; }
.swatch--lime,.dot--lime { background: #b8db51; }
.swatch--oat,.dot--oat { background: #eadfc9; }
.swatch--midnight,.dot--midnight { background: #222; }
.swatch--blush,.dot--blush { background: #e8b8bd; }

.variant-input:checked+.swatch {
  box-shadow: 0 0 0 2px var(--ink);
}

.product-sku {
  margin: -1rem 0 1.4rem;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
}

.product-sku strong {
  color: var(--ink);
  font-weight: 500;
}

.product-add.add-button {
  width: 100%;
  min-height: 3.5rem;
  border: 1px solid var(--olive);
  color: white;
  background: var(--olive);
}

.product-add.add-button:hover,.product-add.add-button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
}

.product-notes {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.product-notes details {
  border-bottom: 1px solid var(--line);
}

.product-notes summary {
  padding: 1.2rem 0;
  cursor: pointer;
  font-size: .9rem;
}

.product-notes p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
}

.policy-inline-link {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

.policy-inline-link:hover {
  color: var(--olive);
}

.image-viewer {
  width: min(72rem,calc(100% - 2rem));
  height: min(50rem,calc(100% - 2rem));
  padding: 0;
  border: 0;
  border-radius: 1rem;
  color: var(--ink);
  background: #f5f2ec;
  box-shadow: 0 1.5rem 5rem rgba(35,31,27,.28);
  overflow: hidden;
}

.image-viewer::backdrop {
  background: rgba(22,22,18,.72);
  backdrop-filter: blur(4px);
}

.image-viewer-stage {
  width: 100%;
  height: calc(100% - 5.5rem);
  display: grid;
  place-items: center;
  overflow: auto;
  background: #eeeae2;
}

.image-viewer-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  transition: transform .18s ease;
  cursor: zoom-in;
}

.image-viewer-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(35,31,27,.78);
  font-size: 1.5rem;
}

.image-viewer-toolbar {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding: .75rem;
}

.image-viewer-toolbar button {
  min-width: 2.8rem;
  height: 2.4rem;
  padding: 0 .8rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  color: var(--ink);
  background: white;
}

.image-viewer-toolbar button:disabled {
  opacity: .35;
}

.image-viewer-caption {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
  font-size: .75rem;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(11rem,1fr) minmax(16rem,1.35fr) minmax(10rem,.75fr) minmax(13rem,1fr);
  align-items: start;
  gap: clamp(2rem,5vw,5rem);
  padding: 3rem clamp(1.5rem,5.8vw,5.8rem);
  color: #e8e8e2;
  background: #343b2d;
}

.site-footer p {
  margin: 0;
}

.site-footer .wordmark {
  margin-bottom: .65rem;
  letter-spacing: .15em;
}

.site-footer a {
  color: inherit;
}

.site-footer address {
  max-width: 32rem;
  color: #cbd0c5;
  font-style: normal;
  line-height: 1.65;
}

.footer-brand>p:last-child {
  max-width: 16rem;
  color: #cbd0c5;
  line-height: 1.55;
}

.footer-label {
  margin-bottom: .7rem!important;
  color: #fff;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-support,.footer-links {
  display: grid;
  gap: .5rem;
}

.footer-links a {
  width: fit-content;
  color: #cbd0c5;
  text-underline-offset: .22rem;
}

