/* =========================================================
   SMART MAN STUDIO — theme stylesheet
   Dark, professional photography-studio look: charcoal base
   (never pure black), warm off-white type, brand gold/red
   used as disciplined accents. The S-curve divider (from the
   studio mark's sax neck) and small mono tags carry the music
   side — kept quiet so the overall read stays corporate-clean.
   ========================================================= */

/* ---------- tokens ---------- */
:root{
  --bg:         #1b1d22;   /* base background — charcoal, not black */
  --bg-alt:     #23262d;   /* alternating section background */
  --surface:    #282b33;   /* card / input surface, one step up from bg */
  --line:       #383c45;   /* hairline borders on dark surfaces */

  --text:       #f1efe8;   /* primary text — warm off-white */
  --muted:      #a6abb4;   /* secondary text */
  --muted-2:    #767b85;   /* tertiary / faint text */
 
  --gold:       #d8a534;
  --gold-dim:   #b8860f;
  --gold-tint:  #3a331f;

  --red:        #c23a44;
  --red-dim:    #9c2430;

  --font-display: 'Fraunces', 'Noto Serif Thai', serif;
  --font-body:    'Work Sans', 'Noto Sans Thai', sans-serif;
  --font-mono:    'JetBrains Mono', 'Noto Sans Mono', monospace;

  --container: 1180px;
  --radius: 6px;
  --shadow: 0 1px 0 rgba(255,255,255,.03), 0 10px 28px rgba(0,0,0,.38);

  --ease: cubic-bezier(.16,.8,.3,1);
}

/* ---------- reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; cursor: pointer; }
input, select, textarea{ font: inherit; }

:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

/* grain texture retired — kept as a no-op so the markup hook doesn't need to change */
.grain-overlay{ display: none; }

/* ---------- type helpers ---------- */
.eyebrow{
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .75rem;
}
.accent-text{ color: var(--gold); font-style: italic; }

/* ---------- header / nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27,29,34,.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand{ display: flex; align-items: center; }
.brand__mark{ height: 80px; width: auto; }

.nav{ display: flex; align-items: center; gap: 1.75rem; }
.nav__link{
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: .4em;
}
.nav__link:hover,
.nav__link.is-active{
  color: var(--text);
  border-color: var(--gold);
}
.nav__link--cta{
  color: var(--bg);
  background: var(--gold);
  padding: .55rem .95rem;
  border-radius: var(--radius);
  border-bottom: none;
}
.nav__link--cta:hover{ background: #eec25f; color: var(--bg); border-color: transparent; }

.rec-dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 2px rgba(194,58,68,.22);
  animation: pulse-rec 1.8s ease-in-out infinite;
  display: inline-block;
}
.rec-dot--big{ width: 20px; height: 20px; box-shadow: 0 0 0 6px rgba(194,58,68,.18); }
@keyframes pulse-rec{
  0%, 100%{ opacity: 1; }
  50%{ opacity: .4; }
}

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span{
  width: 22px; height: 2px; background: var(--text);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.7rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn--sm{ padding: .55rem 1rem; font-size: .7rem; }
.btn--gold{ background: var(--gold); color: var(--bg); }
.btn--gold:hover{ background: #eec25f; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--outline{ border-color: var(--line); color: var(--text); background: transparent; }
.btn--outline:hover{ border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn--paper{ background: var(--surface); color: var(--text); border-color: var(--line); }
.btn--paper:hover{ border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

/* ---------- hero ---------- */
.hero{
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  max-width: var(--container);
  margin: 0 auto;
}
.hero__frame-meta{
  position: absolute;
  top: 1.5rem; left: 1.5rem; right: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero__content{ max-width: 720px; }
.hero__title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: var(--text);
}
.hero__desc{
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 2.25rem;
}
.hero__actions{ display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll-cue{
  position: absolute;
  bottom: 2rem; left: 1.5rem;
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .18em;
  color: var(--muted);
}
.scroll-cue__line{
  width: 40px; height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.scroll-cue__line::after{
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  animation: scroll-cue 1.8s var(--ease) infinite;
}
@keyframes scroll-cue{
  0%{ transform: translateX(-100%); }
  100%{ transform: translateX(100%); }
}

/* ---------- signature curve divider ---------- */
.curve-divider{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.curve-divider__svg{ width: 100%; height: 24px; display: block; }
.curve-divider__path{
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-curve 1.6s var(--ease) forwards;
  animation-play-state: paused;
}
.curve-divider.is-visible .curve-divider__path{ animation-play-state: running; }
@keyframes draw-curve{ to{ stroke-dashoffset: 0; } }

/* ---------- generic section ---------- */
.section{
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}
.section--bleed{ max-width: 100%; padding-left: 0; padding-right: 0; background: var(--bg-alt); }
.section-head{ margin-bottom: 2.5rem; max-width: 640px; padding: 0 1.5rem; }
.section-head--pad{ padding-left: 1.5rem; }
.section-head--tight{ margin-bottom: 1.5rem; }
.section-head__eyebrow{
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}
.section-head__title{
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

/* ---------- intro statement ---------- */
.intro-statement{
  text-align: center;
  max-width: 820px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 3.5rem 2.5rem;
}
.intro-statement__text{
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 1.25rem;
}
.intro-statement__text em{ color: var(--gold); font-style: italic; }
.intro-statement__by{
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- sheet-grid cards (home + about) ---------- */
.sheet-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.sheet-card{
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
a.sheet-card:hover{
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.sheet-card__sprockets{
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
}
.sheet-card__body{ padding: 1.75rem 1.5rem; flex: 1; }
.sheet-card__index{
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .4em;
  letter-spacing: .1em;
}
.sheet-card__title{
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: .6rem 0 .6rem;
  color: var(--text);
}
.sheet-card__desc{ color: var(--muted); font-size: .92rem; margin: 0 0 1rem; }
.sheet-card__meta{
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .08em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.sheet-card--live .sheet-card__index{ color: var(--red); }
.sheet-card--static{ cursor: default; }
.sheet-card--static:hover{ transform: none; box-shadow: none; }

/* ---------- latest shots filmstrip ---------- */
.filmstrip{
  overflow-x: auto;
  padding: 0 1.5rem;
}
.filmstrip__track{
  display: flex;
  gap: 10px;
  width: max-content;
  padding-bottom: .5rem;
}
.filmstrip__frame{
  width: 220px;
  height: 150px;
  margin: 0;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.filmstrip__frame-num{
  position: absolute;
  bottom: .6rem; left: .6rem;
  font-family: var(--font-mono);
  font-size: .66rem;
  color: var(--muted);
  letter-spacing: .08em;
}

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-band__inner{ max-width: 640px; margin: 0 auto; }
.cta-band__title{
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  margin: 0 0 1rem;
  color: var(--text);
}
.cta-band__desc{ color: var(--muted); margin: 0 0 2rem; }

/* ---------- footer ---------- */
.site-footer{ background: #16181c; color: var(--muted); padding: 3.5rem 1.5rem 1.5rem; border-top: 1px solid var(--line); }
.site-footer__inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand__mark{ height: 32px; width: auto; margin-bottom: .8rem; }
.footer-brand__tag{ color: var(--muted); font-size: .88rem; max-width: 30ch; }
.footer-col{ display: flex; flex-direction: column; gap: .6rem; }
.footer-col__label{
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.footer-col a{ color: var(--muted); font-size: .9rem; }
.footer-col a:hover{ color: var(--text); }

.site-footer__bottom{
  max-width: var(--container);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  color: var(--muted-2);
  text-transform: uppercase;
}

/* ---------- page hero (inner pages) ---------- */
.page-hero{
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  border-bottom: 1px solid var(--line);
}
.page-hero__title{
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin: 0 0 .75rem;
  color: var(--text);
}
.page-hero__desc{ color: var(--muted); max-width: 56ch; }
.page-hero--live{ border-bottom-color: var(--red-dim); }

/* ---------- gallery: filter tabs ---------- */
.mixer-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.mixer-tab{
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .55rem 1.1rem;
  color: var(--muted);
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.mixer-tab__label{
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mixer-tab__fader{
  width: 6px; height: 6px;
  background: var(--line);
  border-radius: 50%;
  transition: background .2s var(--ease);
}
.mixer-tab:hover{ border-color: var(--gold); color: var(--text); }
.mixer-tab.is-active{ background: var(--gold); border-color: var(--gold); color: var(--bg); }
.mixer-tab.is-active .mixer-tab__fader{ background: var(--bg); }

/* ---------- contact sheet grid ---------- */
.contact-sheet{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.contact-frame{
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  padding: .9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--muted);
  text-align: left;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-frame::before{
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--gold);
  opacity: .7;
}
.contact-frame.tone-1::before{ background: var(--red); }
.contact-frame.tone-2::before{ background: var(--muted-2); }
.contact-frame:hover{ transform: translateY(-2px); border-color: var(--gold); box-shadow: var(--shadow); }
.contact-frame__num{ font-family: var(--font-mono); font-size: .68rem; color: var(--text); }
.contact-frame__cat{ font-family: var(--font-mono); font-size: .64rem; letter-spacing: .05em; text-transform: uppercase; }
.contact-frame[hidden]{ display: none; }

/* ---------- lightbox ---------- */
.lightbox{
  position: fixed; inset: 0;
  background: rgba(15,16,19,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 2rem;
}
.lightbox.is-open{ display: flex; }
.lightbox__stage{ max-width: 640px; width: 100%; text-align: center; }
.lightbox__frame{
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.lightbox__caption{
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--muted);
  text-transform: uppercase;
}
.lightbox__close{
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: 1px solid var(--muted-2);
  color: var(--text); width: 40px; height: 40px;
  border-radius: 50%;
}
.lightbox__close:hover{ border-color: var(--gold); color: var(--gold); }

/* ---------- portfolio case blocks ---------- */
.case-list{ display: flex; flex-direction: column; gap: 3rem; }
.case-block{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.case-block--reverse{ direction: rtl; }
.case-block--reverse > *{ direction: ltr; }
.case-block__media{
  aspect-ratio: 4 / 3;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.case-block__frame-tag{
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--font-mono);
  font-size: .78rem; color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .2rem .5rem;
}
.case-block__tag{
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
}
.case-block__title{
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin: .6rem 0 .8rem;
  color: var(--text);
}
.case-block__desc{ color: var(--muted); margin: 0 0 1.2rem; }
.case-block__meta{
  display: flex; gap: 1.2rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  padding-top: .8rem;
}

/* ---------- livecam page ---------- */
.livecam-layout{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.onair-panel{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.onair-panel__light{
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.onair-panel__text{ flex: 1; min-width: 200px; }
.onair-panel__status{
  font-family: var(--font-mono);
  font-size: 1.05rem;
  letter-spacing: .1em;
  color: var(--muted);
  display: block;
  margin-bottom: .3rem;
}
.onair-panel[data-state="live"] .onair-panel__status{ color: var(--red); }
.onair-panel__hint{ color: var(--muted); font-size: .85rem; margin: 0; max-width: 46ch; }

.incoming-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.incoming-slot{
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: var(--muted);
}
.incoming-slot__plus{ font-family: var(--font-mono); font-size: 1.3rem; color: var(--muted-2); }
.incoming-slot__label{ font-family: var(--font-mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; }

.livecam-side{ display: flex; flex-direction: column; gap: 1.5rem; }
.side-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.side-card__label{
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.side-card__list div{
  display: flex; justify-content: space-between;
  gap: 1rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .85rem;
}
.side-card__list div:last-child{ border-bottom: none; }
.side-card__list dt{ color: var(--muted); }
.side-card__list dd{ margin: 0; font-family: var(--font-mono); font-size: .76rem; text-align: right; color: var(--text); }
.status-pill{
  font-family: var(--font-mono);
  font-size: .66rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: .1rem .5rem;
  border-radius: 999px;
}
.side-card__notes{ display: flex; flex-direction: column; gap: .7rem; }
.side-card__notes li{
  font-size: .85rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.side-card__notes li::before{
  content: "—";
  position: absolute; left: 0; color: var(--gold);
}

/* ---------- contact page ---------- */
.contact-layout{
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-form{ display: flex; flex-direction: column; gap: 1.25rem; }
.field{ display: flex; flex-direction: column; gap: .5rem; }
.field label{
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  color: var(--text);
}
.field input:focus,
.field select:focus,
.field textarea:focus{ border-color: var(--gold); }
.contact-form .btn{ align-self: flex-start; margin-top: .5rem; }
.side-card--contact .side-card__list dd{ text-align: right; }

/* ---------- responsive ---------- */
@media (max-width: 900px){
  .nav{
    position: fixed;
    top: 73px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.1rem;
    transform: translateY(-110%);
    transition: transform .3s var(--ease);
  }
  .nav.is-open{ transform: translateY(0); }
  .nav-toggle{ display: flex; }

  .sheet-grid{ grid-template-columns: 1fr; }
  .case-block{ grid-template-columns: 1fr; }
  .case-block--reverse{ direction: ltr; }
  .livecam-layout{ grid-template-columns: 1fr; }
  .contact-layout{ grid-template-columns: 1fr; }
  .contact-sheet{ grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner{ grid-template-columns: 1fr 1fr; }
  .incoming-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .site-footer__inner{ grid-template-columns: 1fr; }
  .site-footer__bottom{ flex-direction: column; gap: .5rem; }
  .contact-sheet{ grid-template-columns: repeat(2, 1fr); }
}
