/* =====================================================================
   TRANSMISSIONDREAM — site styles
   Centered editorial masthead, Cormorant Garamond + Jost,
   cool "stone & sage" palette. Format-aware masonry gallery.
   ===================================================================== */

:root {
  --paper:    #e9eae4;   /* cool pale stone */
  --paper-2:  #f2f3ed;   /* lifted panels */
  --ink:      #1d1e1a;   /* charcoal */
  --ink-soft: #45463f;
  --muted:    #7a7b72;
  --line:     #d2d3cb;
  --accent:   #46685f;   /* muted sage / teal */
  --accent-2: #5d8276;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", system-ui, -apple-system, Segoe UI, sans-serif;

  --gutter: clamp(1.4rem, 4vw, 4rem);
  --maxw: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--paper); }

.visually-hidden {
  position: absolute !important;
  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; left: -999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 0.6rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0.75rem; top: 0.75rem; }

/* ---------------------------------------------------------------- Masthead */
.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.6rem, 4vw, 2.8rem) var(--gutter) 0;
}
.masthead__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 1.5rem);
  padding-bottom: clamp(0.9rem, 2.2vw, 1.35rem);
}

.wordmark { text-align: center; line-height: 1; }
.wordmark__name {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  letter-spacing: 0.06em;
}
.wordmark__mark {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 0.4em;
}

/* ---------------------------------------------------------------- Nav */
.nav-toggle {
  display: none;
  width: 2.6rem; height: 2.6rem;
  border: 1px solid var(--line);
  background: transparent; border-radius: 2px;
  cursor: pointer; position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 1.05rem; height: 1.4px; background: var(--ink);
  transform: translate(-50%, -50%);
}
.nav-toggle span::before { transform: translate(-50%, -6px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.3rem, 3vw, 2.8rem);
}
.site-nav a {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a.is-current { color: var(--ink); border-bottom-color: var(--accent); }

/* ---------------------------------------------------------------- Content */
.content {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.4rem, 5vw, 4.5rem) var(--gutter) 3rem;
}
.content__inner { width: 100%; }

/* ---------------------------------------------------------------- Home hero */
.home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  min-height: min(74vh, 720px);
}
.home__text { max-width: 33rem; }
.home__signal {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.5rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.ping {
  position: relative;
  width: 7px; height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}
.ping::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--accent);
  animation: ping 2.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  0%   { transform: scale(1); opacity: 0.55; }
  70%  { transform: scale(3.4); opacity: 0; }
  100% { transform: scale(3.4); opacity: 0; }
}
.home__lead {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.55rem, 3.1vw, 2.45rem);
  line-height: 1.3;
  letter-spacing: 0.004em;
  color: var(--ink);
}
.home__lead a {
  color: inherit;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.home__lead a:hover { color: var(--accent); }

.home__body {
  margin: 1.2rem 0 0;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink-soft);
}
.home__note {
  margin: 1.6rem 0 0;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.home__poster { display: block; overflow: hidden; background: var(--paper-2); }
.home__poster img {
  width: 100%; height: auto; display: block;
  transition: transform 0.7s cubic-bezier(.2,.6,.2,1), filter 0.4s ease;
  filter: saturate(0.97);
}
.home__poster:hover img { transform: scale(1.03); filter: saturate(1.06); }

/* ---------------------------------------------------------------- Page intro */
.page-intro { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.kicker {
  margin: 0 0 0.9rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.0;
  letter-spacing: 0.01em;
}
.page-intro__text {
  margin: 1rem 0 0;
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 34rem;
}

/* ---------------------------------------------------------------- Contact form */
.contact-form { max-width: 38rem; }
.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}
.contact-form label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.78rem 0.9rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.contact-form textarea { min-height: 9.5rem; resize: vertical; line-height: 1.6; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(70, 104, 95, 0.16);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); opacity: 0.7; }
.contact-form__honey {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  border-radius: 2px;
  padding: 0.92rem 2.1rem;
  margin-top: 0.4rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn:hover { background: var(--accent); }
.contact-note {
  margin: 1.6rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------------------------------------------------------------- Gallery (fallback: columns) */
.gallery-grid {
  counter-reset: art;
  column-count: 3;
  column-gap: clamp(1rem, 2vw, 1.7rem);
}
.gallery-item {
  margin: 0 0 clamp(1rem, 2vw, 1.7rem);
  break-inside: avoid;
}
.gallery-card {
  display: block;
  width: 100%;
  padding: 0; border: 0;
  background: var(--paper-2);
  cursor: zoom-in; overflow: hidden; position: relative;
}
.gallery-card img {
  width: 100%; height: auto; display: block;
  transition: transform 0.6s cubic-bezier(.2,.6,.2,1), filter 0.4s ease;
  filter: saturate(0.97);
}
.gallery-card:hover img,
.gallery-card:focus-visible img { transform: scale(1.03); filter: saturate(1.06); }

/* Format-aware masonry (enhanced by script.js) */
.gallery-grid.is-grid {
  column-count: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 8px;
  grid-auto-flow: row dense;
  column-gap: clamp(1rem, 2vw, 1.7rem);
  row-gap: clamp(1rem, 2vw, 1.7rem);
  align-items: start;
}
.gallery-grid.is-grid .gallery-item { margin: 0; break-inside: auto; }
.gallery-grid.is-grid .gallery-item--wide  { grid-column: span 2; }
.gallery-grid.is-grid .gallery-item--ultra { grid-column: 1 / -1; }

/* Characters page: balanced two-column masonry (fewer pieces, no grid gaps) */
.gallery-grid--characters,
.gallery-grid--characters.is-grid {
  display: block;
  column-count: 2;
  column-gap: clamp(1rem, 2vw, 1.7rem);
}
.gallery-grid--characters .gallery-item,
.gallery-grid--characters.is-grid .gallery-item {
  margin: 0 0 clamp(1rem, 2vw, 1.7rem);
  break-inside: avoid;
}
.gallery-grid--characters .gallery-item--ultra,
.gallery-grid--characters.is-grid .gallery-item--ultra {
  column-span: all;
  grid-column: auto;
}

.gallery-item figcaption {
  display: flex; align-items: baseline; gap: 0.7rem;
  margin-top: 0.7rem;
  font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.gallery-item figcaption::before {
  counter-increment: art;
  content: counter(art, decimal-leading-zero);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--accent);
}

/* ---------------------------------------------------------------- Footer */
.site-footer {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.82rem; letter-spacing: 0.03em;
  color: var(--muted);
}
.site-footer__links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; }
.site-footer__links a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.site-footer__links a:hover { color: var(--accent); border-color: var(--accent); }
.site-footer__meta { text-align: right; }
.site-footer__meta p { margin: 0; }

/* ---------------------------------------------------------------- Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(24, 26, 22, 0.93);
  backdrop-filter: blur(2px);
}
.lightbox__dialog {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: clamp(0.5rem, 2vw, 1.5rem);
  max-width: min(1100px, 100%); max-height: 100%;
}
.lightbox__figure {
  margin: 0; display: flex; flex-direction: column;
  align-items: center; gap: 0.9rem; max-height: 100%;
}
.lightbox__image {
  max-width: 100%; max-height: 80vh; width: auto; height: auto;
  object-fit: contain; box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
.lightbox__caption { text-align: center; color: var(--paper); }
.lightbox__meta {
  margin: 0 0 0.2rem; font-size: 0.66rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(233, 234, 228, 0.6);
}
.lightbox__caption h3 {
  margin: 0; font-family: var(--serif); font-weight: 500; font-size: 1.4rem;
}
.lightbox__close {
  position: absolute; top: -2.6rem; right: 0;
  background: transparent; border: 0; color: var(--paper);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; padding: 0.4rem;
}
.lightbox__nav {
  flex: 0 0 auto; width: 2.8rem; height: 2.8rem; border-radius: 50%;
  border: 1px solid rgba(233,234,228,0.3); background: transparent;
  color: var(--paper); font-size: 1.3rem; line-height: 1; cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.lightbox__nav:hover { background: rgba(233,234,228,0.12); border-color: var(--paper); }
body.is-lightbox-open { overflow: hidden; }

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

/* ---------------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .gallery-grid { column-count: 2; }
  .gallery-grid.is-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .masthead { padding-top: 1.1rem; }
  .masthead__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-bottom: 1rem;
  }
  .wordmark { text-align: left; }
  .wordmark__name { font-size: 1.5rem; }
  .wordmark__mark { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    display: none;
    margin-top: 0.3rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-size: 0.9rem; padding: 0.45rem 0; letter-spacing: 0.18em; }

  .home {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    min-height: 0;
  }
  .gallery-grid { column-count: 1; }
  .gallery-grid.is-grid { grid-template-columns: 1fr; }
  .gallery-grid.is-grid .gallery-item--wide { grid-column: auto; }
  .site-footer { flex-direction: column; }
  .site-footer__meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  .ping::before { animation: none; }
}

/* ---------------------------------------------------------------- Alternate homepage shell (current official design) */
@font-face {
  font-family: "Podium Soft Thin";
  src: url("assets/fonts/podium-soft-thin.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.td-site {
  --td-accent: #325bc2;
  margin: 0;
  background: #f5f5f5;
  color: #000;
  font-family: "Roboto Mono", "Courier New", monospace;
  line-height: 1.4;
}

.td-site .skip-link {
  background: #000;
  color: #f5f5f5;
}

.td-site a {
  color: var(--td-accent);
  text-decoration: underline;
}

.td-header {
  background: #f5f5f5;
  padding: 0 20px;
  text-transform: lowercase;
}

.td-topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 25;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  pointer-events: none;
}

.td-socials,
.td-links {
  display: flex;
  align-items: center;
  gap: 22px;
  pointer-events: auto;
}

.td-socials a,
.td-links a {
  color: var(--td-accent);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.td-socials a {
  font-size: 18px;
  text-decoration: none;
}

.td-socials a:hover,
.td-links a:hover,
.td-nav a:hover {
  color: #000;
}

.td-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}

.td-logo {
  display: flex;
  justify-content: center;
  color: #000 !important;
  font-family: "Podium Soft Thin", Impact, "Arial Black", sans-serif;
  font-size: 88px;
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
}

.td-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 8px;
  margin-bottom: 36px;
}

.td-nav a {
  color: var(--td-accent);
  font-size: 15px;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.td-nav a.is-current {
  color: #000;
}

.td-main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.td-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.td-page-label {
  margin: -14px auto 24px;
  max-width: 1040px;
  color: var(--td-accent);
  font-family: "Roboto Mono", "Courier New", monospace;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  text-transform: lowercase;
}

.td-item {
  margin: 0;
  min-width: 0;
}

.td-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #dedede;
  color: #fff;
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}

.td-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none;
  transform: none;
  transition: none;
}

.td-card:hover img,
.td-card:focus-visible img {
  filter: none;
  transform: none;
}

.td-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--td-accent);
  opacity: 0;
  transition: opacity 0.1s ease;
}

.td-card:hover::after,
.td-card:focus-visible::after {
  opacity: 0.88;
}

.td-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(82%, 190px);
  color: #fff;
  font-family: "Roboto Mono", "Courier New", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition: opacity 0.1s ease;
}

.td-card:hover .td-caption,
.td-card:focus-visible .td-caption {
  opacity: 1;
}

.td-footer {
  background: #f5f5f5;
  padding: 24px 20px 56px;
}

.td-brand--footer {
  padding-top: 0;
}

.td-brand--footer .td-nav {
  margin-bottom: 0;
}

.td-site .lightbox__caption h3 {
  font-family: "Roboto Mono", "Courier New", monospace;
  font-size: 1rem;
  text-transform: uppercase;
}

.td-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 54px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.td-contact > * {
  min-width: 0;
}

.td-contact .td-page-label {
  margin: 0 0 20px;
  text-align: left;
}

.td-contact-copy h1 {
  margin: 0;
  color: #000;
  font-family: "Podium Soft Thin", Impact, "Arial Black", sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.td-contact-copy p {
  width: 100%;
  max-width: 28rem;
  margin: 24px 0 0;
  color: #000;
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.td-contact-links {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.td-contact-links a {
  width: max-content;
  max-width: 100%;
  color: var(--td-accent);
  font-size: 14px;
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.td-form {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.td-form .contact-form__row {
  margin-bottom: 18px;
}

.td-form label {
  color: var(--td-accent);
  font-family: "Roboto Mono", "Courier New", monospace;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
}

.td-form input,
.td-form textarea {
  max-width: 100%;
  border: 1px solid #000;
  border-radius: 0;
  background: #f5f5f5;
  color: #000;
  font-family: "Roboto Mono", "Courier New", monospace;
  font-size: 15px;
  box-shadow: none;
}

.td-form textarea {
  min-height: 190px;
}

.td-form input:focus,
.td-form textarea:focus {
  border-color: var(--td-accent);
  box-shadow: 0 0 0 2px var(--td-accent);
}

.td-form .btn {
  border-radius: 0;
  background: var(--td-accent);
  color: #fff;
  font-family: "Roboto Mono", "Courier New", monospace;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
}

.td-form .btn:hover,
.td-form .btn:focus-visible {
  background: #000;
}

@media (max-width: 900px) {
  .td-logo {
    font-size: 68px;
  }

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

@media (max-width: 680px) {
  .td-header {
    padding: 18px 14px 0;
  }

  .td-topbar {
    position: static;
    padding: 0;
    margin-bottom: 12px;
  }

  .td-socials,
  .td-links {
    gap: 14px;
  }

  .td-links {
    display: none;
  }

  .td-socials a,
  .td-links a,
  .td-nav a {
    font-size: 13px;
  }

  .td-brand {
    padding-top: 0;
  }

  .td-logo {
    display: block;
    width: 100%;
    font-size: 38px;
    line-height: 1;
    white-space: nowrap;
  }

  .td-logo span {
    display: block;
  }

  .td-nav {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 9px 18px;
    margin-top: 18px;
    margin-bottom: 22px;
  }

  .td-main {
    padding: 0 14px;
  }

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

  .td-page-label {
    margin: -6px auto 18px;
    font-size: 13px;
  }

  .td-contact {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .td-contact .td-page-label {
    margin-bottom: 14px;
  }

  .td-contact-copy h1 {
    font-size: 64px;
  }

  .td-contact-copy p {
    max-width: 34ch;
  }

  .td-form {
    max-width: calc(100vw - 28px);
  }

  .td-footer {
    padding: 20px 14px 40px;
  }

}

@media (max-width: 380px) {
  .td-logo {
    font-size: 36px;
  }
}
