
/* =========================================================
   STREET SHAKE — stylesheet
   Palette + type derived from the band logo (Lakmus / orange
   on green) and the layout rhythm of the reference template.
   ========================================================= */

@font-face {
  font-family: "Lakmus";
  src: url("../fonts/Lakmus.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* --- brand palette --- */
  --cream: #F6EFDD;         /* primary background */
  --cream-soft: #FCF8EE;    /* alternate section background */
  --green-deep: #33501F;    /* dark panels: hero photo, video, contact */
  --green-brand: #6EA04B;   /* true logo green — accents, borders */
  --green-brand-dim: #557f3c;
  --orange: #FF8F26;        /* headline / display color */
  --orange-dark: #C75E10;   /* hover / high-contrast text-on-light */
  --ink: #211D14;           /* body copy */
  --ink-soft: #4a4436;
  --cream-line: rgba(33,29,20,0.12);

  /* --- type --- */
  --font-display: "Lakmus", "Arial Black", sans-serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* --- layout --- */
  --max-width: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 6px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h2 {
  color: var(--orange);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 0.6em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding: 0.95em 1.9em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--green-deep);
  color: var(--cream-soft);
}
.btn--primary:hover { background: var(--green-brand-dim); }

.btn--outline {
  background: transparent;
  border-color: var(--cream-soft);
  color: var(--cream-soft);
}
.btn--outline:hover { background: var(--cream-soft); color: var(--green-deep); }

.btn--ghost {
  background: var(--orange);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--orange-dark); color: var(--cream); }

/* =========================== NAV =========================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-line);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img { height: 34px; width: auto; border-radius: 4px; }
.brand span {
  font-family: var(--font-display);
  color: var(--green-deep);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { color: var(--orange-dark); border-color: var(--orange); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--cream-line);
    transition: max-height 0.25s ease;
  }
  .site-nav.is-open .nav-links { max-height: 320px; }
  .nav-links a {
    padding: 14px var(--pad);
    border-bottom: 1px solid var(--cream-line);
    width: 100%;
  }
}

/* =========================== HERO =========================== */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 640px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 80px) var(--pad);
}
.hero-copy h1 {
  font-family: var(--font-display);
  color: var(--orange);
  font-size: clamp(3.4rem, 10vw, 7.2rem);
  line-height: 0.88;
}
.hero-tagline {
  margin-top: 1.4em;
  max-width: 46ch;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.hero-copy .btn { margin-top: 2em; align-self: flex-start; }

.hero-photo {
  position: relative;
  background: var(--green-deep);
  align-self: center;
  aspect-ratio: 3 / 2;
  width: 100%;
}
.hero-photo img,
.hero-photo .placeholder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
}

/* ===================== PLACEHOLDER IMAGES ===================== */
.placeholder-img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.06) 0px,
      rgba(255,255,255,0.06) 2px,
      transparent 2px,
      transparent 14px
    ),
    var(--green-brand-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.placeholder-img--light {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(33,29,20,0.05) 0px,
      rgba(33,29,20,0.05) 2px,
      transparent 2px,
      transparent 14px
    ),
    #e9dfc2;
}
.placeholder-img__label {
  text-align: center;
  padding: 1em;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  max-width: 18ch;
}
.placeholder-img--light .placeholder-img__label { color: rgba(33,29,20,0.65); }
.placeholder-img__label svg { width: 30px; height: 30px; margin-bottom: 8px; opacity: 0.8; }

/* =========================== ABOUT =========================== */
.about {
  background: var(--cream-soft);
  padding: clamp(56px, 9vw, 110px) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.about-text p {
  font-size: 1.02rem;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
}

.lineup {
  margin-top: 2.4em;
  padding-top: 2em;
  border-top: 1px solid var(--cream-line);
}
.lineup-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--green-brand-dim);
  margin-bottom: 1em;
  display: block;
}
.lineup-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65em;
}
.lineup-list li {
  display: flex;
  gap: 0.9em;
  align-items: baseline;
  font-size: 0.98rem;
  border-bottom: 1px dashed var(--cream-line);
  padding-bottom: 0.65em;
}
.lineup-list strong {
  color: var(--ink);
  min-width: 12em;
  font-weight: 700;
}
.lineup-list span { color: var(--ink-soft); }

/* =========================== VIDEO =========================== */
.video {
  position: relative;
  background: var(--green-deep);
  padding: clamp(70px, 12vw, 130px) var(--pad);
  overflow: hidden;
}
.video-frame {
  position: absolute;
  inset: 0;
}
.video-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--orange);
  color: var(--ink);
  padding: 0.5em 1.3em;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1.2em;
}
.video h2 {
  color: var(--cream-soft);
  -webkit-text-stroke: 0;
}
.video-sub {
  color: rgba(246,239,221,0.8);
  max-width: 40ch;
  margin: 0.6em auto 1.8em;
}
.video-embed {
  margin-top: 1.6em;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  display: none;
  background: #000;
}
.video-embed.is-active { display: block; }
.video-embed iframe { width: 100%; height: 100%; border: 0; }

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: var(--cream-soft);
  color: var(--green-deep);
  border: none;
  padding: 0.9em 1.8em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease;
}
.play-btn:hover { transform: scale(1.04); background: var(--orange); }
.play-btn svg { width: 18px; height: 18px; }

/* =================== ABOUT PHOTOS (collage) =================== */
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-photo .placeholder-img { border-radius: var(--radius); min-height: 150px; height: 100%; }
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
/* feature photo sits on top, spanning both columns */
.about-photo--feature { grid-column: 1 / -1; }
.about-photo--feature .placeholder-img { aspect-ratio: 3 / 2; min-height: 0; }
.about-photo:not(.about-photo--feature) .placeholder-img { aspect-ratio: 1 / 1; min-height: 0; }

@media (max-width: 760px) {
  .about-photos { margin-top: 0.5em; }
}

/* =========================== GIGS =========================== */
.gigs {
  background: var(--cream-soft);
  padding: clamp(56px, 9vw, 110px) 0;
}
.gigs-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
}
@media (max-width: 760px) {
  .gigs-groups { grid-template-columns: 1fr; }
}
.gigs-group h3 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-brand-dim);
  margin-bottom: 1.1em;
  border-bottom: 2px solid var(--green-brand);
  padding-bottom: 0.7em;
}
.gig-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.gig-item {
  display: flex;
  align-items: baseline;
  gap: 0;
  padding: 0.7em 0;
  border-bottom: 1px dashed var(--cream-line);
  line-height: 1.35;
}
.gig-date {
  flex-shrink: 0;
  min-width: 9em;
  padding-right: 1.4em;
  box-sizing: border-box;
  font-weight: 700;
  color: var(--orange-dark);
  font-size: 0.86rem;
  white-space: nowrap;
}
.gig-info {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gig-info strong {
  font-size: 0.95rem;
  font-weight: 700;
}
.gig-info .gig-city {
  color: var(--ink-soft);
  font-size: 0.86rem;
}
.gig-info .gig-city::before {
  content: "·";
  margin: 0 0.45em;
  color: var(--cream-line);
}
.gig-item .btn {
  flex-shrink: 0;
  padding: 0.35em 0.9em;
  font-size: 0.68rem;
}
.gig-empty, .gig-loading {
  color: var(--ink-soft);
  font-style: normal;
  padding: 0.5em 0;
  font-size: 0.92rem;
}
@media (max-width: 480px) {
  .gig-item { flex-wrap: wrap; gap: 0.15em 1em; }
  .gig-date { min-width: 0; font-size: 0.8rem; flex-basis: 100%; }
  .gig-info strong { font-size: 0.9rem; }
}

/* =========================== CONTACT =========================== */
.contact {
  background: var(--green-deep);
  color: var(--cream-soft);
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 6vw, 60px);
}
.contact h2 { color: var(--orange); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-lede {
  color: rgba(246,239,221,0.82);
  max-width: 34ch;
  margin-bottom: 2em;
}
.contact-list {
  list-style: none;
  margin: 0 0 2em;
  padding: 0;
  display: grid;
  gap: 1.1em;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.9em;
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--orange);
}

.social-row { display: flex; gap: 0.9em; margin-top: 1.6em; }
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(246,239,221,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.social-row a svg { width: 18px; height: 18px; }
.social-row a:hover { border-color: var(--orange); background: rgba(255,143,38,0.12); }

/* --- form --- */
.contact-form {
  display: grid;
  gap: 1.1em;
}
.field {
  display: grid;
  gap: 0.5em;
}
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246,239,221,0.75);
}
.field input,
.field textarea {
  width: 100%;
  background: rgba(246,239,221,0.06);
  border: 1.5px solid rgba(246,239,221,0.3);
  border-radius: var(--radius);
  padding: 0.85em 1em;
  color: var(--cream-soft);
  font-family: var(--font-body);
  font-size: 1rem;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(246,239,221,0.4); }
.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: none;
  background: rgba(246,239,221,0.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; }

.form-msg {
  font-size: 0.9rem;
  padding: 0.9em 1.1em;
  border-radius: var(--radius);
  display: none;
}
.form-msg.is-visible { display: block; }
.form-msg.success { background: rgba(110,160,75,0.25); border: 1px solid var(--green-brand); }
.form-msg.error { background: rgba(199,94,16,0.25); border: 1px solid var(--orange-dark); }

.contact-form .btn { justify-self: start; margin-top: 0.4em; }
.contact-form .btn[disabled] { opacity: 0.6; cursor: progress; transform: none; }

/* =========================== FOOTER =========================== */
.site-footer {
  border-top: 1px solid rgba(246,239,221,0.15);
  margin-top: clamp(40px, 6vw, 60px);
  padding-top: 1.6em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em 1.5em;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(246,239,221,0.55);
}



/* =========================================================
   JULY 2026 UPDATE: photo collage, video gallery, legal pages
   ========================================================= */

/* About collage: no stretching. Every image keeps its native ratio. */
.about-photos {
  grid-template-columns: minmax(0, 1.36fr) minmax(150px, 0.64fr);
  gap: 14px;
}
.about-photo {
  position: relative;
  background: var(--green-deep);
  box-shadow: 0 12px 30px rgba(33,29,20,0.14);
}
.about-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.about-photo--feature {
  grid-column: 1 / -1;
}
.about-photo--wide { grid-column: 1; align-self: start; }
.about-photo--portrait { grid-column: 2; align-self: start; }
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(246,239,221,0.18);
  border-radius: inherit;
}

/* Three privacy-friendly, click-to-load YouTube embeds. */
.video-inner {
  max-width: var(--max-width);
}
.video-sub { max-width: 62ch; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
  margin-top: 2.4em;
  text-align: left;
}
.video-card {
  background: rgba(246,239,221,0.07);
  border: 1px solid rgba(246,239,221,0.16);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
}
.video-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #10150d;
  overflow: hidden;
}
.video-poster > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.72);
}
.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.45));
  pointer-events: none;
}
.video-load {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 1.2em;
  font: inherit;
}
.video-load__content {
  display: grid;
  justify-items: center;
  gap: 0.65em;
  text-align: center;
  max-width: 28ch;
}
.video-load__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: transform 0.16s ease, background 0.16s ease;
}
.video-load__icon svg { width: 26px; height: 26px; margin-left: 3px; }
.video-load__text {
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 3px rgba(0,0,0,0.65);
}
.video-load:hover .video-load__icon { transform: scale(1.08); background: var(--cream-soft); }
.video-poster iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-card__body { padding: 1.15em 1.2em 1.25em; }
.video-card h3 {
  font-family: var(--font-body);
  text-transform: none;
  line-height: 1.32;
  letter-spacing: 0;
  color: var(--cream-soft);
  font-size: 1rem;
  font-weight: 700;
}
.video-card__link {
  display: inline-block;
  margin-top: 0.85em;
  color: rgba(246,239,221,0.72);
  font-size: 0.78rem;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.video-card__link:hover { color: var(--orange); }

.form-privacy {
  margin: -0.2em 0 0;
  max-width: 52ch;
  color: rgba(246,239,221,0.62);
  font-size: 0.78rem;
  line-height: 1.5;
}
.form-privacy a,
.footer-links a { text-underline-offset: 3px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.6em 1.15em; }
.footer-links a:hover { color: var(--orange); }

/* Reusable legal / thank-you page layout. */
.legal-page {
  min-height: 100vh;
  background: var(--cream);
}
.legal-header {
  background: var(--green-deep);
  padding: 18px var(--pad);
}
.legal-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.legal-logo img { width: min(210px, 46vw); height: auto; }
.legal-back {
  color: var(--cream-soft);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(246,239,221,0.45);
}
.legal-main {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(50px, 8vw, 90px) var(--pad);
}
.legal-main h1 {
  color: var(--orange-dark);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  margin-bottom: 0.55em;
}
.legal-main h2 {
  color: var(--green-deep);
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.22;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  margin: 2em 0 0.65em;
}
.legal-main h3 {
  color: var(--green-deep);
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.25;
  font-size: 1.08rem;
  margin: 1.5em 0 0.45em;
}
.legal-main p, .legal-main li { color: var(--ink-soft); }
.legal-main a { color: var(--orange-dark); text-underline-offset: 3px; }
.legal-main address { font-style: normal; line-height: 1.75; }
.legal-note {
  background: rgba(110,160,75,0.11);
  border-left: 4px solid var(--green-brand);
  padding: 1em 1.15em;
  border-radius: var(--radius);
}
.legal-footer {
  border-top: 1px solid var(--cream-line);
  padding: 1.5em var(--pad) 2em;
  color: var(--ink-soft);
  font-size: 0.82rem;
}
.legal-footer__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8em 1.4em;
}
.legal-footer nav { display: flex; gap: 1em; flex-wrap: wrap; }
.legal-footer a { color: inherit; text-underline-offset: 3px; }
.thank-you-card {
  background: var(--cream-soft);
  border: 1px solid var(--cream-line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(28px, 6vw, 54px);
  box-shadow: 0 18px 50px rgba(33,29,20,0.08);
}

@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card:last-child { grid-column: 1 / -1; max-width: 560px; width: 100%; justify-self: center; }
}
@media (max-width: 760px) {
  .about-photos { grid-template-columns: 1fr; }
  .about-photo--feature,
  .about-photo--wide,
  .about-photo--portrait { grid-column: 1; }
  .about-photo--portrait { width: min(72%, 360px); justify-self: end; margin-top: -36px; border: 7px solid var(--cream); }
  .video-grid { grid-template-columns: 1fr; }
  .video-card:last-child { grid-column: auto; max-width: none; }
  .site-footer { align-items: flex-start; }
}
@media (max-width: 520px) {
  .legal-header__inner { align-items: flex-start; flex-direction: column; }
  .about-photo--portrait { width: 82%; margin-top: -20px; }
}
