:root {
  --noir: #080b0b;
  --black: #101413;
  --black-soft: #171d1b;
  --espresso: #242723;
  --ivory: #f6f2ea;
  --vellum: #e8e2d6;
  --pearl: #fbf8f1;
  --champagne: #d8c58e;
  --gold: #b79a5c;
  --sage: #75866f;
  --steel: #7f9290;
  --smoke: #acb4aa;
  --ink: #1b1e1c;
  --line-dark: rgba(255, 255, 255, 0.15);
  --line-light: rgba(41, 31, 21, 0.15);
  --shadow: 0 38px 90px rgba(0, 0, 0, 0.42);
  --serif: "Bodoni 72", "Didot", "Baskerville", "Georgia", serif;
  --sans: "Aptos", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--noir);
  font-family: var(--sans);
  line-height: 1.55;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding: 20px clamp(18px, 4.4vw, 72px);
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 11, 11, 0.88), rgba(8, 11, 11, 0));
  transition: min-height 200ms ease, background 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(8, 11, 11, 0.94);
  backdrop-filter: blur(18px);
}

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

.brand-symbol {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--champagne);
  border: 1px solid rgba(216, 197, 142, 0.66);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}

.brand-name,
.brand-subname {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.brand-subname {
  color: var(--champagne);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 42px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 7px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--champagne);
  content: "";
  transition: transform 220ms ease;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #070909;
}

.hero-bg,
.hero-texture {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background-image: url("assets/hero-architecture.jpg");
  background-position: center right;
  background-size: cover;
  filter: grayscale(0.78) contrast(1.08) brightness(0.82) saturate(0.85);
  transform: scale(1.02);
}

.hero-texture {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 11, 0.98) 0%, rgba(8, 11, 11, 0.82) 38%, rgba(8, 11, 11, 0.24) 74%, rgba(8, 11, 11, 0.72) 100%),
    linear-gradient(0deg, rgba(8, 11, 11, 0.94), rgba(8, 11, 11, 0.04) 52%),
    repeating-linear-gradient(90deg, rgba(117, 134, 111, 0.09) 0, rgba(117, 134, 111, 0.09) 1px, transparent 1px, transparent 96px);
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 148px 0 118px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
.fabric-detail h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 1040px;
  font-size: clamp(58px, 10vw, 152px);
  line-height: 0.86;
  text-wrap: balance;
}

h2 {
  font-size: clamp(40px, 5.6vw, 86px);
  line-height: 0.96;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 670px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

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

.button.primary {
  color: #11140f;
  background: linear-gradient(135deg, #eadba8, var(--champagne) 48%, var(--gold));
  box-shadow: 0 18px 42px rgba(183, 154, 92, 0.2);
}

.button.secondary {
  color: #fff;
  border-color: rgba(216, 197, 142, 0.42);
  background: rgba(255, 255, 255, 0.035);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(172, 180, 170, 0.62);
  background: rgba(127, 146, 144, 0.14);
}

.hero-signature {
  position: absolute;
  left: clamp(20px, 4vw, 72px);
  right: clamp(20px, 4vw, 72px);
  bottom: 30px;
  display: flex;
  gap: clamp(18px, 4vw, 62px);
  align-items: center;
  padding-top: 20px;
  color: rgba(216, 197, 142, 0.84);
  border-top: 1px solid rgba(216, 197, 142, 0.34);
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 56px);
  line-height: 1;
}

.hero-signature span:nth-child(2) {
  font-style: italic;
}

.hero-rail {
  position: absolute;
  right: clamp(18px, 3vw, 54px);
  top: 50%;
  display: flex;
  gap: 28px;
  color: rgba(225, 231, 222, 0.5);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.collection-ribbon {
  display: flex;
  gap: 0;
  min-height: 8svh;
  color: var(--champagne);
  border-top: 1px solid rgba(216, 197, 142, 0.22);
  border-bottom: 1px solid rgba(127, 146, 144, 0.24);
  background: #101715;
  overflow: hidden;
}

.collection-ribbon span {
  display: grid;
  place-items: center;
  flex: 1 0 auto;
  min-width: 230px;
  padding: 18px 24px;
  border-right: 1px solid rgba(216, 197, 142, 0.18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section {
  padding: clamp(78px, 11vw, 162px) clamp(20px, 5vw, 82px);
}

.section-heading {
  max-width: 1120px;
}

.house-section {
  position: relative;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 242, 234, 0.96), rgba(232, 226, 214, 0.98)),
    repeating-linear-gradient(90deg, transparent 0, transparent 88px, rgba(117, 134, 111, 0.075) 89px);
}

.house-section::after {
  position: absolute;
  right: 5vw;
  bottom: 18px;
  color: rgba(117, 134, 111, 0.08);
  font-family: var(--serif);
  font-size: clamp(150px, 24vw, 360px);
  line-height: 0.75;
  content: "N|P";
  pointer-events: none;
}

.house-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.42fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  margin-top: clamp(42px, 6vw, 78px);
}

.house-copy p,
.mill-panel > p,
.world-section > p,
.commitment p,
.contact-copy p {
  margin: 0;
  color: rgba(27, 30, 28, 0.7);
  font-size: clamp(17px, 1.6vw, 21px);
}

.house-copy p + p {
  margin-top: 24px;
}

.house-stat {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(117, 134, 111, 0.46);
}

.house-stat strong {
  display: block;
  color: var(--sage);
  font-family: var(--serif);
  font-size: clamp(70px, 10vw, 132px);
  font-weight: 500;
  line-height: 0.82;
}

.house-stat span {
  display: block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.portrait-stack {
  position: relative;
  min-height: 560px;
}

.portrait-stack img {
  position: absolute;
  width: 72%;
  height: 62%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.portrait-stack img:first-child {
  top: 0;
  right: 0;
}

.portrait-stack img:last-child {
  left: 0;
  bottom: 0;
  border: 12px solid var(--ivory);
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #fff;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: linear-gradient(180deg, #101413, #0b0f0e);
}

.metric {
  min-height: 178px;
  padding: clamp(28px, 4vw, 50px);
  border-right: 1px solid var(--line-dark);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.88;
}

.metric span {
  display: block;
  max-width: 170px;
  margin-top: 18px;
  color: rgba(225, 231, 222, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mill-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  min-height: 860px;
  color: #fff;
  background: #090d0d;
}

.mill-image {
  min-height: 100%;
}

.mill-image img,
.gallery-strip img,
.fabric-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mill-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 7vw, 112px);
  background:
    linear-gradient(120deg, rgba(23, 29, 27, 0.98), rgba(8, 11, 11, 0.98)),
    repeating-linear-gradient(90deg, rgba(127, 146, 144, 0.09) 0, rgba(127, 146, 144, 0.09) 1px, transparent 1px, transparent 110px);
}

.mill-panel > p {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(225, 231, 222, 0.68);
}

.spec-list {
  display: grid;
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.spec-list article {
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.032);
}

.spec-list span,
.atelier-grid span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.spec-list p,
.atelier-grid p {
  margin: 0;
  color: rgba(225, 231, 222, 0.62);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  min-height: 420px;
  background: #0c1110;
}

.gallery-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
}

.gallery-strip figure:last-child {
  border-right: 0;
}

.gallery-strip img {
  filter: grayscale(0.66) contrast(1.04) saturate(0.9);
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-strip figure:hover img {
  transform: scale(1.04);
  filter: grayscale(0.2) contrast(1.05) saturate(0.96);
}

.gallery-strip figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.fabric-section {
  color: #fff;
  background:
    linear-gradient(180deg, #0b1110 0%, #151b18 100%);
}

.fabric-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 50px 0 24px;
}

.tab {
  min-height: 46px;
  padding: 12px 18px;
  color: rgba(225, 231, 222, 0.74);
  border: 1px solid var(--line-dark);
  background: transparent;
  font: 900 11px/1 var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.tab.is-active,
.tab:hover,
.tab:focus-visible {
  color: #11140f;
  border-color: var(--champagne);
  background: var(--champagne);
}

.fabric-stage {
  display: grid;
  grid-template-columns: minmax(290px, 0.86fr) minmax(0, 1.14fr);
  min-height: 600px;
  border: 1px solid var(--line-dark);
  background: linear-gradient(135deg, #0a0e0d, #121715);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.35);
}

.fabric-visual {
  min-height: 440px;
  overflow: hidden;
}

.fabric-visual img {
  filter: grayscale(0.2) contrast(1.08) saturate(0.9);
}

.fabric-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 82px);
}

.fabric-number {
  margin: 0 0 22px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.8;
}

.fabric-detail h3 {
  max-width: 760px;
  font-size: clamp(42px, 5.6vw, 82px);
  line-height: 0.94;
}

.fabric-detail p:not(.fabric-number) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(225, 231, 222, 0.7);
  font-size: clamp(17px, 1.7vw, 22px);
}

.fabric-detail ul {
  display: grid;
  gap: 12px;
  max-width: 700px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.fabric-detail li {
  position: relative;
  padding-left: 26px;
  color: rgba(225, 231, 222, 0.78);
}

.fabric-detail li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 1px;
  background: var(--champagne);
  content: "";
}

.atelier-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--pearl), var(--ivory));
}

.atelier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.atelier-grid article {
  min-height: 330px;
  padding: clamp(24px, 3vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(117, 134, 111, 0.08)),
    var(--vellum);
}

.atelier-grid span {
  color: var(--sage);
}

.atelier-grid h3 {
  margin-top: 46px;
  color: var(--ink);
}

.atelier-grid p {
  margin-top: 18px;
  color: rgba(27, 30, 28, 0.66);
}

.world-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(32px, 7vw, 102px);
  align-items: end;
  padding: clamp(82px, 12vw, 174px) clamp(20px, 5vw, 82px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 11, 11, 0.96), rgba(8, 11, 11, 0.56)),
    url("assets/hero-architecture.jpg") center right / cover;
}

.world-section > p {
  color: rgba(225, 231, 222, 0.72);
}

.commitments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  color: #fff;
  background: var(--line-dark);
  padding: 0;
}

.commitment {
  padding: clamp(66px, 8vw, 118px) clamp(22px, 5vw, 82px);
  background: linear-gradient(180deg, #101413, #0b0f0e);
}

.commitment h2 {
  max-width: 650px;
  font-size: clamp(34px, 4.6vw, 68px);
}

.commitment p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(225, 231, 222, 0.68);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 390px);
  gap: clamp(34px, 8vw, 120px);
  align-items: center;
  padding: clamp(82px, 12vw, 176px) clamp(20px, 5vw, 82px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 11, 11, 0.97), rgba(16, 20, 19, 0.82)),
    url("assets/fabric-texture.jpg") center / cover;
}

.contact-copy h2 {
  max-width: 900px;
}

.contact-copy p:not(.section-kicker) {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(225, 231, 222, 0.72);
}

.qr-panel {
  display: grid;
  place-items: center;
  gap: 18px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(216, 197, 142, 0.32);
  background: rgba(10, 15, 14, 0.68);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.qr-panel img {
  width: min(100%, 270px);
  border: 10px solid #080b0b;
}

.qr-panel span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(20px, 5vw, 82px);
  color: rgba(225, 231, 222, 0.68);
  border-top: 1px solid var(--line-dark);
  background: #080b0b;
}

.site-footer img {
  width: min(440px, 48vw);
}

.site-footer p {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    position: fixed;
    top: 80px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: #fff;
    border: 1px solid var(--line-dark);
    background: rgba(8, 11, 11, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line-dark);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero-rail {
    display: none;
  }

  .house-grid,
  .mill-section,
  .fabric-stage,
  .world-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .portrait-stack {
    min-height: 460px;
  }

  .metrics-band,
  .atelier-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .mill-image {
    min-height: 520px;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip figure {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .commitments {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 76px;
    padding: 14px 16px;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .brand-name,
  .brand-subname {
    max-width: 168px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding: 118px 0 132px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 78px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 56px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-signature {
    flex-wrap: wrap;
    bottom: 20px;
    font-size: clamp(22px, 10vw, 42px);
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 13px 16px;
    letter-spacing: 0.16em;
  }

  .section {
    padding: 64px 18px;
  }

  .house-grid,
  .metrics-band,
  .atelier-grid {
    grid-template-columns: 1fr;
  }

  .portrait-stack {
    min-height: 360px;
  }

  .portrait-stack img {
    width: 76%;
    height: 60%;
  }

  .metric,
  .metric:nth-child(2),
  .metric:last-child {
    min-height: 142px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .mill-image {
    min-height: 380px;
  }

  .mill-panel {
    padding: 54px 18px;
  }

  .spec-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fabric-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tab {
    width: 100%;
    padding-inline: 12px;
    letter-spacing: 0.14em;
  }

  .fabric-stage {
    min-height: unset;
  }

  .fabric-visual {
    min-height: 300px;
  }

  .fabric-detail {
    padding: 38px 22px 44px;
  }

  .atelier-grid article {
    min-height: 240px;
  }

  .contact-section {
    padding: 64px 18px;
  }

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

  .site-footer img {
    width: min(100%, 390px);
  }

  .site-footer p {
    text-align: left;
  }
}
