@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --black: #050505;
  --charcoal: #10100f;
  --panel: #151411;
  --ivory: #fff7df;
  --muted: #cfc6ae;
  --gold: #d8b235;
  --gold-bright: #f5d86c;
  --line: rgba(245, 216, 108, 0.22);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% -12%, rgba(255, 232, 142, 0.2), rgba(216, 178, 53, 0.08) 28%, transparent 58%),
    radial-gradient(ellipse at 50% 48%, rgba(245, 216, 108, 0.09), transparent 42%),
    linear-gradient(145deg, rgba(245, 216, 108, 0.08), transparent 30%, transparent 70%, rgba(184, 132, 24, 0.07)),
    linear-gradient(180deg, #030303 0%, #0c0b09 44%, #050505 100%);
  background-size: auto;
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    conic-gradient(from 220deg at 50% 20%, transparent 0 18%, rgba(245, 216, 108, 0.08) 24%, transparent 33% 100%),
    linear-gradient(112deg, transparent 0 44%, rgba(255, 247, 223, 0.12) 50%, transparent 57% 100%);
  opacity: 0.34;
  mix-blend-mode: screen;
  transform: translateX(-38%);
  animation: luxurySheen 18s ease-in-out infinite;
}

@keyframes luxurySheen {
  0%,
  18% {
    transform: translateX(-42%);
  }
  58%,
  100% {
    transform: translateX(42%);
  }
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 132px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid transparent;
  transition: min-height 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  min-height: 92px;
  background: rgba(5, 5, 5, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  width: clamp(150px, 18vw, 260px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 62px);
  color: rgba(255, 247, 223, 0.78);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  transition: color 160ms ease;
}

.site-nav a:not(.nav-button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 3px;
  background: transparent;
  transition: background 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ivory);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  background: var(--gold);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(245, 216, 108, 0.52);
  border-radius: 6px;
  background: linear-gradient(135deg, #f5d86c, #b98b18);
  color: #171106;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-button {
  min-height: 46px;
  padding-inline: 22px;
  text-transform: none;
}

.nav-button::after {
  display: none;
}

.button:hover,
.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(216, 178, 53, 0.24);
}

.button.secondary {
  background: rgba(255, 247, 223, 0.06);
  color: var(--ivory);
}

.header-socials,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 247, 223, 0.05);
  color: var(--ivory);
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link path {
  fill: currentColor;
  stroke: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: end center;
  overflow: hidden;
  padding: 190px clamp(20px, 5vw, 72px) 78px;
}

.old-style-hero {
  isolation: isolate;
}

.old-style-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.14), rgba(5, 5, 5, 0.34) 42%, rgba(5, 5, 5, 0.18)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.03), rgba(5, 5, 5, 0.2) 58%, rgba(5, 5, 5, 0.88));
}

.hero-image {
  position: absolute;
  inset: 132px 0 0;
  z-index: -2;
  width: 100%;
  height: calc(100% - 132px);
  object-fit: cover;
  object-position: center center;
}

.hero-content {
  position: relative;
  width: min(980px, 100%);
}

.hero-content.center {
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.75);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
}

.hero-copy {
  margin: 24px auto 0;
  color: rgba(255, 247, 223, 0.82);
  font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.25rem, 3.2vw, 2.35rem);
  font-weight: 500;
}

.hero-kicker {
  margin-bottom: 18px;
  color: rgba(245, 216, 108, 0.92);
}

.hero-brand-title {
  display: block;
  font-size: clamp(4rem, 8.8vw, 8.4rem);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
  color: transparent;
  background: linear-gradient(180deg, #fff7df 4%, #f5d86c 38%, #d8a923 68%, #7a5710 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.64)) drop-shadow(0 0 30px rgba(216, 178, 53, 0.22));
}

.hero-actions,
.centered {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.section-band {
  border-top: 1px solid var(--line);
}

.section-inner {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 132px) 0;
}

.title-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: clamp(42px, 7vw, 76px);
  color: var(--gold);
  text-align: center;
}

.title-line h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.4rem);
}

.title-line span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 216, 108, 0.55), transparent);
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 54px);
}

.service-icon-card {
  display: grid;
  justify-items: center;
  gap: 22px;
  min-height: 194px;
  padding: 28px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 247, 223, 0.82);
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.service-icon-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  background: rgba(255, 247, 223, 0.035);
}

.service-icon-card svg {
  width: 76px;
  height: 76px;
  padding: 14px;
  border-radius: 16px;
  background: radial-gradient(circle at 35% 28%, #fff1a2, #d3a824 58%, #7a5710);
  color: #141006;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow: 0 0 28px rgba(216, 178, 53, 0.28);
}

.service-icon-card span {
  max-width: 190px;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 700;
}

.why {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.5)),
    radial-gradient(circle at 82% 42%, rgba(216, 178, 53, 0.16), transparent 30%),
    radial-gradient(circle at 24% 72%, rgba(245, 216, 108, 0.1), transparent 24%),
    #090909;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(38px, 6.5vw, 84px);
  align-items: center;
}

.why-layout h2 {
  max-width: 620px;
  color: var(--ivory);
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  line-height: 1.02;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.64);
}

.section-lead {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 247, 223, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.8;
}

.why-list {
  display: grid;
  gap: 22px;
}

.why-list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(245, 216, 108, 0.12);
  border-radius: 8px;
  background: rgba(255, 247, 223, 0.035);
  backdrop-filter: blur(10px);
}

.why-list svg {
  width: 60px;
  height: 60px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(216, 178, 53, 0.28));
}

.why-list p,
.contact-layout p,
.category-copy p,
.video-note {
  color: rgba(255, 247, 223, 0.78);
  line-height: 1.75;
}

.why-list p {
  margin: 8px 0 0;
  font-size: 0.98rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.contact-layout p {
  max-width: 620px;
  margin: 24px 0 0;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-methods a {
  width: fit-content;
  color: var(--gold-bright);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 223, 0.04);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 247, 223, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 223, 0.16);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.7);
  color: var(--ivory);
  font: inherit;
  padding: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(245, 216, 108, 0.74);
}

.site-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: rgba(255, 247, 223, 0.62);
  font-size: 0.9rem;
}

.legal-footer {
  justify-content: center;
}

.footer-cookie-button {
  border: 0;
  background: transparent;
  color: rgba(255, 247, 223, 0.62);
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.footer-cookie-button:hover,
.site-footer a:hover {
  color: var(--gold-bright);
}

.footer-socials .social-link {
  width: 36px;
  height: 36px;
}

.category-hero {
  min-height: 62vh;
  display: grid;
  align-items: end;
  padding: 190px clamp(20px, 5vw, 72px) 70px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.88)),
    radial-gradient(circle at 70% 38%, rgba(216, 178, 53, 0.2), transparent 28%),
    radial-gradient(circle at 24% 68%, rgba(245, 126, 44, 0.16), transparent 24%),
    #090909;
}

.category-copy {
  width: min(940px, 100%);
}

.category-copy p {
  margin: 24px 0 0;
  max-width: 720px;
  font-size: 1.1rem;
}

.video-section {
  border-top: 1px solid var(--line);
}

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

.video-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 223, 0.035);
}

.video-card video,
.video-card img,
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 247, 223, 0.12);
  border-radius: 6px;
  background: #050505;
}

.video-card img {
  object-fit: cover;
}

.video-placeholder {
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  text-align: center;
  padding: 24px;
}

.video-card h3 {
  font-family: "Cinzel", Georgia, serif;
}

.video-note {
  margin: 34px 0 0;
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: rgba(216, 178, 53, 0.08);
}

.legal-hero {
  padding: 190px clamp(20px, 5vw, 72px) 64px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.9)),
    radial-gradient(circle at 72% 34%, rgba(216, 178, 53, 0.18), transparent 28%),
    #090909;
}

.legal-copy {
  padding-block: 0;
}

.legal-copy p {
  max-width: 760px;
  color: rgba(255, 247, 223, 0.72);
  line-height: 1.7;
}

.legal-content {
  width: min(920px, calc(100% - 40px));
  color: rgba(255, 247, 223, 0.76);
}

.legal-content h2 {
  margin: 34px 0 12px;
  color: var(--ivory);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-content p {
  line-height: 1.75;
}

.legal-content a {
  color: var(--gold-bright);
  font-weight: 800;
}

.legal-warning {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(216, 178, 53, 0.08);
  color: rgba(255, 247, 223, 0.82);
  line-height: 1.65;
}

.legal-warning strong {
  color: var(--gold-bright);
}

.legal-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 247, 223, 0.035);
}

.legal-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.legal-table div:last-child {
  border-bottom: 0;
}

.legal-table strong {
  color: var(--ivory);
}

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

.team-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 223, 0.035);
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.team-copy {
  padding: clamp(24px, 4vw, 36px);
}

.team-copy h2 {
  color: var(--ivory);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.team-copy p:not(.eyebrow),
.founder-note p {
  color: rgba(255, 247, 223, 0.74);
  line-height: 1.75;
}

.founder-note {
  display: grid;
  gap: 18px;
  width: min(780px, 100%);
  margin: 42px auto 0;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: radial-gradient(circle at 50% 0%, rgba(216, 178, 53, 0.16), rgba(255, 247, 223, 0.035));
  text-align: center;
}

.founder-note .button {
  justify-self: center;
}

.appointment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.appointment-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 223, 0.04);
}

.appointment-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 247, 223, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 223, 0.16);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.7);
  color: var(--ivory);
  font: inherit;
  padding: 14px;
  outline: none;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: rgba(245, 216, 108, 0.74);
}

.cookie-banner {
  position: fixed;
  left: clamp(16px, 4vw, 40px);
  right: clamp(16px, 4vw, 40px);
  bottom: 18px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 247, 223, 0.74);
  line-height: 1.55;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none;
    opacity: 0.22;
  }
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 247, 223, 0.06);
  color: var(--ivory);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cookie-actions button[data-cookie-accept] {
  background: linear-gradient(135deg, #f5d86c, #b98b18);
  color: #171106;
}

@media (max-width: 1060px) {
  .site-header {
    min-height: 104px;
  }

  .brand {
    width: 150px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(5, 5, 5, 0.62);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ivory);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .header-socials {
    display: none;
  }

  .service-icons,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-layout,
  .contact-layout,
  .appointment-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 84px;
    padding: 10px 16px;
    background: rgba(5, 5, 5, 0.94);
    border-bottom: 1px solid rgba(245, 216, 108, 0.12);
  }

  .site-header.is-scrolled {
    min-height: 76px;
  }

  .brand {
    width: 122px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .hero {
    min-height: 100svh;
    place-items: end center;
    padding: 104px 18px 54px;
  }

  .category-hero {
    padding: 118px 18px 52px;
  }

  .hero-image {
    inset: 84px 0 0;
    height: calc(100% - 84px);
    object-fit: cover;
    object-position: 49% center;
    background: #050505;
  }

  .old-style-hero::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.34) 38%, rgba(5, 5, 5, 0.92)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.28));
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }

  .hero-brand-title {
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 340px;
    margin-top: 16px;
    font-size: clamp(0.98rem, 4.6vw, 1.18rem);
    line-height: 1.55;
  }

  .hero-actions,
  .centered {
    margin-top: 24px;
  }

  .button {
    width: min(100%, 340px);
    min-height: 52px;
    padding: 0 18px;
    font-size: 0.86rem;
    text-align: center;
  }

  .title-line {
    grid-template-columns: 1fr;
  }

  .title-line span {
    display: none;
  }

  .service-icons,
  .video-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .why-list article {
    grid-template-columns: 1fr;
  }

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