/*
Theme Name: Robberee Acoustic Duo
Theme URI: https://robbereeacousticduo.com.au
Author: Robberee Acoustic Duo
Author URI: https://robbereeacousticduo.com.au
Description: A minimal, premium one-page theme for Robberee Acoustic Duo. Mobile-first, fast, and designed for weddings, corporate events, pubs/clubs and private functions.
Version: 1.1.0
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: robberee
Tags: one-page, music, entertainment, custom-background, custom-logo
*/

/* ==========================================================================
   Robberee Acoustic Duo | Stylesheet
   Mobile-first, modern, premium design
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette — clean neutrals with forest green accent */
  --color-bg:        #faf9f7;
  --color-bg-alt:    #f0f4f2;
  --color-surface:   #ffffff;
  --color-text:      #2c2c2c;
  --color-text-muted:#6b6560;
  --color-heading:   #1a1a1a;
  --color-accent:    #076343;      /* Robberee forest green */
  --color-accent-hover:#054f35;
  --color-border:    #dde3df;
  --color-hero-overlay: rgba(7, 99, 67, 0.65);  /* green-tinted overlay */
  --color-hero-bg:   #076343;      /* hero fallback background */

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Spacing scale (rem, base 16 px) */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Misc */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 6px 24px rgba(0,0,0,0.10);
  --transition: 0.25s ease;
  --max-width: 1140px;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

ul, ol {
  list-style: none;
}

/* ---------- WordPress overrides ---------- */
/* Remove default WP margin/padding on the page content area */
.entry-content,
.page-content,
.post-content {
  margin: 0;
  padding: 0;
  max-width: none;
}

/* Ensure WP admin bar doesn't break our fixed header */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding-block: var(--space-2xl);
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

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

.mx-auto {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.85em 1.75em;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(7,99,67,0.30);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--outline-dark:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Desktop nav */
.header__nav {
  display: none;
}

.header__nav ul {
  display: flex;
  gap: var(--space-lg);
}

.header__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-heading);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__cta {
  display: none;
}

/* Mobile menu toggle */
.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: var(--space-2xl);
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-heading);
}

.mobile-nav .btn {
  margin-top: var(--space-md);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 100px var(--space-md) var(--space-2xl);
  background: var(--color-hero-bg, #076343);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-hero-overlay);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.hero__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero__content h1 span {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 540px;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* ---------- Credibility Chips ---------- */
.credibility {
  padding-block: var(--space-lg);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.credibility__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
}

.credibility__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  padding: 0.5em 1em;
  border-radius: 100px;
  white-space: nowrap;
}

.credibility__chip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.about__image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-alt);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  border: 2px dashed var(--color-border);
}

.about__text p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.about__text p:last-child {
  margin-bottom: 0;
}

/* Bio cards — individual member bios */
.bios {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.bio-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.bio-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.bio-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-alt);
  flex-shrink: 0;
}

.bio-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  border: 2px dashed var(--color-border);
}

.bio-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-heading);
}

.bio-card__role {
  font-size: 0.8125rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bio-card p {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.7;
}

.bio-card__influences {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-style: italic;
}

@media (min-width: 768px) {
  .bios {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Music Styles ---------- */
.styles__grid {
  display: grid;
  gap: var(--space-lg);
}

.style-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}

.style-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.style-card__icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.style-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-xs);
}

.style-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.perfect-for {
  margin-top: var(--space-xl);
}

.perfect-for h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-md);
}

.perfect-for__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.perfect-for__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.5em 1.1em;
  border-radius: 100px;
  transition: all var(--transition);
}

.perfect-for__tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ---------- Song List ---------- */
.songs__categories {
  display: grid;
  gap: var(--space-lg);
}

.song-category {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.song-category__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.song-category__header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-heading);
}

.song-category__list {
  padding: var(--space-md) var(--space-lg);
  display: grid;
  gap: var(--space-xs);
}

.song-category__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
}

.song-category__list li:last-child {
  border-bottom: none;
}

.song-category__list .song-title {
  font-weight: 500;
  color: var(--color-heading);
}

.song-category__list .song-artist {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: right;
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.songs__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: var(--space-lg);
}

/* ---------- Videos ---------- */

/* Mobile: single column, all cards stack */
.videos__grid {
  display: grid;
  gap: var(--space-lg);
}

.video-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.video-card:hover {
  box-shadow: var(--shadow-card-hover);
}

/* --- Horizontal (16:9) embed --- */
.video-card__embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #111;
}

.video-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Vertical (9:16) embed --- */
.video-card__embed--vertical {
  position: relative;
  padding-bottom: 0;
  height: auto;
  overflow: hidden;
  background: #111;
  aspect-ratio: 9 / 16;
  max-height: 500px;
}

.video-card__embed--vertical iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__embed--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.video-card__info {
  padding: var(--space-md) var(--space-lg);
}

.video-card__info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-xs);
}

.video-card__info p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ---------- Gallery ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.gallery__item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg-alt);
  cursor: pointer;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  border: 2px dashed var(--color-border);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: zoom-out;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
}

.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

/* ---------- Bookings / Contact ---------- */
.contact__grid {
  display: grid;
  gap: var(--space-xl);
}

.contact__info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-md);
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact__detail .contact__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.contact__detail svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
  /* Force stroke/fill via CSS — WP KSES may strip inline SVG attributes */
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Social icon SVGs in contact section use fill, not stroke */
.contact__info .btn svg {
  fill: currentColor;
  stroke: none;
}

.contact__detail span {
  font-size: 0.9375rem;
  color: var(--color-text);
}

.contact__detail a {
  color: var(--color-text);
}

.contact__detail a:hover {
  color: var(--color-accent);
}

.contact__form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.contact__form h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.7em 0.9em;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(7,99,67,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  gap: var(--space-md);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-accent);
  color: rgba(255,255,255,0.6);
  padding-block: var(--space-xl);
  text-align: center;
  font-size: 0.8125rem;
}

.site-footer a {
  color: rgba(255,255,255,0.6);
}

.site-footer a:hover {
  color: #fff;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background var(--transition);
}

.footer__social a:hover {
  background: rgba(255,255,255,0.15);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ---------- Scroll-reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive — Tablet (768 px +)
   ========================================================================== */
@media (min-width: 768px) {
  .section {
    padding-block: var(--space-3xl);
  }

  .header__inner {
    height: 72px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .header__nav {
    display: block;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__toggle {
    display: none;
  }

  .about__grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-2xl);
  }

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

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

  .songs__categories .song-category:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .videos__grid {
    grid-template-columns: repeat(6, 1fr);
    align-items: start;
  }

  /* Row 1: horizontal videos — each spans 3 of 6 cols (2 per row) */
  .videos__grid .video-card:nth-child(1),
  .videos__grid .video-card:nth-child(2) {
    grid-column: span 3;
  }

  /* Row 2: vertical videos — each spans 2 of 6 cols (3 per row) */
  .videos__grid .video-card:nth-child(n+3) {
    grid-column: span 2;
  }

  /* Cap vertical videos so they don't tower over horizontal ones */
  .video-card__embed--vertical {
    max-height: 420px;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .contact__grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-2xl);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Responsive — Desktop (1024 px +)
   ========================================================================== */
@media (min-width: 1024px) {
  .styles__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .songs__categories {
    grid-template-columns: repeat(3, 1fr);
  }

  .songs__categories .song-category:last-child:nth-child(odd) {
    grid-column: auto;
  }
}
