:root {
  --cream:       #f2e8d5;
  --cream-2:     #ede0c6;
  --cream-3:     #f7f2e8;
  --ink:         #2a1208;
  --ink-deep:    #1a0b04;
  --brown:       #6A3937;
  --brown-mid:   #8a5a30;
  --steel:     #759FBC;
  --muted:       #8a6a50;
  --accent:      #084B83;
  --rule:        rgba(42, 18, 8, 0.12);

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-bask:   'Libre Baskerville', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1280px;
  --pad:  20px;
}
@media (min-width: 768px)  { :root { --pad: 32px; } }
@media (min-width: 1024px) { :root { --pad: 40px; } }

/*RESET*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

/* ── Paper grain overlay ───────────────────────────────────── */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 200;
  opacity: 0.042;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.09  0 0 0 0 0.04  0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ── Scroll progress bar ───────────────────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--steel);
  z-index: 300;
  transition: width 0.1s linear;
}

/* ── Cursor dot ────────────────────────────────────────────── */
.cursor-dot {
  display: none;
  position: fixed;
  width: 6px; height: 6px;
  background: var(--steel);
  border-radius: 50%;
  pointer-events: none; z-index: 400;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s, width 0.2s var(--ease-out), height 0.2s var(--ease-out), background 0.2s;
}
.cursor-dot.is-active { opacity: 1; }
.cursor-dot.is-hover  { width: 18px; height: 18px; background: transparent; border: 1px solid var(--steel); }
@media (pointer: fine) and (min-width: 1024px) { .cursor-dot { display: block; } }

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Utility ───────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.section-rule { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; }
.section-rule::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.section-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); flex-shrink: 0;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 2px 28px rgba(42, 18, 8, 0.08); }

.nav {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad);
  max-width: var(--maxw); margin: 0 auto;
  gap: 16px;
}

.nav__brand {
  font-family: var(--font-bask);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); line-height: 1;
}
.nav__brand-sub {
  display: block;
  font-family: var(--font-bask);
  font-size: 8.5px; font-style: italic; font-weight: 400;
  letter-spacing: 0.18em; color: var(--muted);
  margin-top: 4px; transition: color 0.2s;
}
.nav__brand:hover .nav__brand-sub { color: var(--brown-mid); }

/* Desktop links  hidden on mobile */
.nav__links { display: none; align-items: center; gap: 32px; }
.nav__link {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav__link::after {
  content: "";
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta {
  display: none;
  background: var(--ink); color: var(--cream);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 20px;
  transition: background 0.2s, transform 0.15s var(--ease-out);
}
.nav__cta:hover { background: var(--brown); transform: translateY(-1px); }
.nav__cta:active { transform: scale(0.97); }

/* Hamburger */
.nav__toggle { display: flex; flex-direction: column; gap: 5px; padding: 6px; }
.nav__toggle-bar {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav__toggle.is-open .nav__toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle.is-open .nav__toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none; flex-direction: column;
  background: var(--cream); border-top: 1px solid var(--rule);
  padding: 24px var(--pad) 28px; gap: 0;
}
.nav__drawer.is-open { display: flex; }
.nav__drawer .nav__link {
  font-size: 14px; letter-spacing: 0.1em;
  padding: 14px 0; border-bottom: 1px solid var(--rule); color: var(--ink);
}
.nav__drawer .nav__link::after { display: none; }
.nav__drawer .nav__cta { display: inline-block; align-self: flex-start; margin-top: 18px; }

@media (min-width: 768px) {
  .nav__toggle  { display: none; }
  .nav__drawer  { display: none !important; }
  .nav__links   { display: flex; }
  .nav__cta     { display: inline-block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { display: flex; flex-direction: column; border-bottom: 1px solid var(--rule); }

.hero__left {
  padding: 48px var(--pad) 40px;
  display: flex; flex-direction: column; gap: 28px;
}
.hero__overline {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(64px, 18vw, 140px);
  font-weight: 900; color: var(--ink);
  line-height: 0.88; letter-spacing: -0.03em;
  text-transform: uppercase; overflow: hidden;
  margin-bottom: 2rem;
}
.hero__title-line {
  display: block;
  animation: slide-up 0.9s var(--ease-out) both;
}
.hero__title-line--accent { margin-left: 0.12em; color: var(--brown); animation-delay: 0.11s; }

@keyframes slide-up {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(15px, 3.5vw, 22px);
  font-style: italic; font-weight: 400; color: var(--brown-mid);
  animation: fade-up 0.8s 0.32s var(--ease-out) both;
}
.hero__body {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; max-width: 480px;
  animation: fade-up 0.8s 0.42s var(--ease-out) both;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__bottom {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
  animation: fade-up 0.8s 0.52s var(--ease-out) both;
}

.hero__cta {
  background: var(--ink); color: var(--cream);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 32px;
  position: relative; overflow: hidden; display: inline-block;
  transition: transform 0.2s var(--ease-out);
}
.hero__cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--steel); transform: translateX(-101%);
  transition: transform 0.35s var(--ease-out);
}
.hero__cta span { position: relative; z-index: 1; }
.hero__cta:hover::before { transform: translateX(0); }
.hero__cta:hover { transform: translateY(-2px); }
.hero__cta:active { transform: scale(0.97); }

.hero__stats { display: flex; gap: 24px; flex-wrap: wrap; }
.stat__number {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 700; color: var(--ink); display: block; line-height: 1;
}
.stat__label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px; display: block;
}

/* Hero photo grid  mobile */
.hero__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 140px;
  border-top: 1px solid var(--rule);
}
.hero__photo { overflow: hidden; position: relative; }
.hero__photo:nth-child(1) { grid-row: span 2; }
.hero__photo:nth-child(2) { border-left: 1px solid var(--rule); }
.hero__photo:nth-child(3) { border-left: 1px solid var(--rule); border-top: 1px solid var(--rule); }
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.1) sepia(8%);
  transform: scale(1.04);
  transition: transform 7s ease;
  animation: photo-reveal 1.1s var(--ease-out) both;
}
.hero__photo:nth-child(2) img { animation-delay: 0.1s; }
.hero__photo:nth-child(3) img { animation-delay: 0.2s; }
@keyframes photo-reveal {
  from { opacity: 0; transform: scale(1.1); }
  to   { opacity: 1; transform: scale(1.04); }
}
.hero__photo:hover img { transform: scale(1.0); }

/* Desktop hero */
@media (min-width: 1024px) {
  .hero { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 57px); }
  .hero__left {
    padding: 64px 48px 64px var(--pad);
    justify-content: space-between; gap: 0;
    border-right: 1px solid var(--rule);
  }
  .hero__right {
    grid-template-rows: 1.4fr 1fr;
    border-top: none; height: 100%;
  }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--ink-deep); overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.04); }
.marquee__track {
  display: flex; white-space: nowrap;
  font-family: var(--font-serif);
  font-size: clamp(20px, 4vw, 44px);
  font-weight: 900; font-style: italic; letter-spacing: 0.02em;
  color: rgba(242, 232, 213, 0.14); padding: 18px 0;
  animation: marquee-scroll 34s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__span { display: inline-flex; align-items: center; gap: 32px; padding-right: 32px; }
.marquee__dot  { color: var(--muted); font-style: normal; font-size: 0.55em; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   BEANS
   ============================================================ */
.beans { padding: 72px 0; border-bottom: 1px solid var(--rule); }
.beans__grid { display: flex; flex-direction: column; gap: 48px; }
.beans__photo { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.beans__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(42,18,8,0.07)); pointer-events: none;
}
.beans__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.12) sepia(6%);
  transition: transform 6s ease;
}
.beans__photo:hover img { transform: scale(1.03); }

.beans__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 7vw, 62px);
  font-weight: 700; font-style: italic;
  color: var(--ink); line-height: 1.05; letter-spacing: -0.02em;
}
.beans__body { font-size: 15px; color: var(--muted); line-height: 1.75; margin-top: 18px; }
.beans__list { margin-top: 32px; border-top: 1px solid var(--rule); }

.bean__item {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid var(--rule);
  transition: background 0.2s, padding 0.25s var(--ease-out); cursor: default;
}
.bean__item:hover { background: rgba(117, 159, 188,0.08); padding-left: 10px; padding-right: 10px; }
.bean__name {
  font-family: var(--font-bask);
  font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: 0.03em;
}
.bean__origin {
  font-size: 10.5px; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; margin-top: 3px;
}
.bean__roast {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brown); background: rgba(92,46,14,0.1);
  padding: 3px 10px; flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.bean__item:hover .bean__roast { background: var(--brown); color: var(--cream); }

@media (min-width: 1024px) {
  .beans { padding: 100px 0; }
  .beans__grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 64px; align-items: center; flex-direction: unset;
  }
  .beans__photo { aspect-ratio: 3/4; }
}

/* ============================================================
   STORY
   ============================================================ */
.story {
  background: var(--ink-deep); color: var(--cream);
  padding: 72px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.story__inner { display: flex; flex-direction: column; gap: 48px; }
.story__quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 5vw, 50px);
  font-weight: 400; font-style: italic;
  line-height: 1.2; letter-spacing: -0.01em; color: var(--cream);
}
.story__quote em { font-style: normal; color: var(--steel); }
.story__attr {
  margin-top: 20px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(242,232,213,0.38);
}
.story__attr::before { content: "— "; }
.story__body {
  font-size: 15px; color: rgba(242,232,213,0.5); line-height: 1.8; margin-top: 18px;
}
.story__photo { aspect-ratio: 4/3; overflow: hidden; }
.story__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.05); opacity: 0.72;
  transition: transform 6s ease, opacity 0.4s ease;
}
.story__photo:hover img { transform: scale(1.03); opacity: 0.82; }

@media (min-width: 1024px) {
  .story { padding: 100px 0; }
  .story__inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; flex-direction: unset;
  }
  .story__photo { aspect-ratio: 4/5; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: 72px 0; border-bottom: 1px solid var(--rule); }
.mason { margin-top: 40px; columns: 2; column-gap: 6px; }
.mason__item {
  break-inside: avoid; margin-bottom: 6px;
  overflow: hidden; position: relative;
  /* Isolate the overflow so scale doesn't bleed into adjacent columns */
  transform: translateZ(0);
}
.mason__item img {
  width: 100%; height: auto; display: block;
  filter: grayscale(100%) contrast(1.1) sepia(5%); opacity: 0.84;
  transform: scale(1.0);
  transform-origin: center center;
  transition: transform 0.7s var(--ease-out), opacity 0.35s ease, filter 0.45s ease;
  will-change: transform;
}
.mason__item:hover img {
  transform: scale(1.09);
  opacity: 1;
  filter: grayscale(65%) contrast(1.18) sepia(10%);
}

@media (min-width: 600px)  { .mason { columns: 3; } }
@media (min-width: 1024px) {
  .gallery { padding: 100px 0; }
  .mason { columns: 4; column-gap: 8px; }
  .mason__item { margin-bottom: 8px; }
}

/* ============================================================
   BREWERY
   ============================================================ */
.brewery { padding: 72px 0; border-bottom: 1px solid var(--rule); }
.brewery__inner { display: flex; flex-direction: column; gap: 48px; }
.brewery__overline {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted);
}
.brewery__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 900; text-transform: uppercase; color: var(--ink);
  line-height: 0.94; letter-spacing: -0.02em; margin-top: 10px;
}
.brewery__title em {
  display: block; font-style: italic;
  font-size: 0.48em; letter-spacing: 0.02em;
  text-transform: none; font-weight: 400;
  color: var(--brown-mid); margin-top: 10px; line-height: 1.3;
}
.brewery__body { font-size: 15px; color: var(--muted); line-height: 1.75; margin-top: 20px; }
.brewery__specs { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.spec {
  padding: 18px 16px; border: 1px solid var(--rule);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
  cursor: default;
}
.spec:hover {
  border-color: rgba(42,18,8,0.28);
  box-shadow: 0 4px 22px rgba(42,18,8,0.06);
  transform: translateY(-2px);
}
.spec__number {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 700; color: var(--ink); display: block; line-height: 1;
}
.spec__label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px; display: block;
}

/* Lottie placeholder */
.lottie-wrap {
  width: 100%; aspect-ratio: 1 / 1;
  background: var(--cream-2); border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  position: relative; overflow: hidden;
}
.lottie-wrap::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(200,168,130,0.14) 50%, transparent 70%);
  animation: shimmer 2.6s ease-in-out infinite;
  transform: translateX(-100%);
}
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.lottie-ring {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1.5px solid var(--steel);
  display: grid; place-items: center;
  animation: ring-breathe 3.2s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes ring-breathe { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 1; } }
.lottie-ring svg { width: 26px; height: 26px; color: var(--steel); }
.lottie-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); position: relative; z-index: 1;
}
.lottie-sublabel { font-size: 11px; color: var(--steel); opacity: 0.75; position: relative; z-index: 1; }
.lottie-wrap lottie-player { width: 100%; height: 100%; }

@media (min-width: 1024px) {
  .brewery { padding: 100px 0; }
  .brewery__inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start; flex-direction: unset;
  }
}

/* ============================================================
   ORDER SECTION
   ============================================================ */
.cta-band { background: var(--ink); padding: 72px 0; }

.cta-band__inner {
  display: flex; flex-direction: column; gap: 48px;
}

/* Left column */
.cta-band__heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 6vw, 56px);
  font-weight: 700; font-style: italic; color: var(--cream);
  line-height: 1.08; letter-spacing: -0.02em;
}
.cta-band__body {
  font-size: 15px; color: rgba(242, 232, 213, 0.48);
  line-height: 1.75; margin-top: 16px;
}

/* Right column  order form */
.order-form { display: flex; flex-direction: column; gap: 20px; }

.order-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}

.order-field { display: flex; flex-direction: column; gap: 8px; }

.order-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(242, 232, 213, 0.38);
}
.order-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(242, 232, 213, 0.18);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.order-input::placeholder { color: rgba(242, 232, 213, 0.2); }
.order-input:focus { border-color: var(--steel); }

.order-submit {
  display: inline-block; align-self: flex-start;
  background: var(--cream); color: var(--ink);
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 15px 44px; margin-top: 8px;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.2s var(--ease-out);
}
.order-submit::before {
  content: ""; position: absolute; inset: 0;
  background: var(--steel); transform: translateY(101%);
  transition: transform 0.35s var(--ease-out);
}
.order-submit span { position: relative; z-index: 1; }
.order-submit:hover::before { transform: translateY(0); }
.order-submit:hover { transform: translateY(-2px); }
.order-submit:active { transform: scale(0.97); }

@media (min-width: 1024px) {
  .cta-band { padding: 100px 0; }
  .cta-band__inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    flex-direction: unset;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink-deep); padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.footer__brand {
  font-family: var(--font-bask);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(242,232,213,0.55);
}
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__links a {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(242,232,213,0.28); transition: color 0.15s;
}
.footer__links a:hover { color: rgba(242,232,213,0.65); }
.footer__copy { font-size: 11px; letter-spacing: 0.06em; color: rgba(242,232,213,0.22); }

@media (min-width: 768px) {
  .footer__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}