/*
Theme Name: Dan Clayton Music
Theme URI: https://danclaytonmusic.com
Author: Dan Clayton
Author URI: https://danclaytonmusic.com
Description: A bold, dark, and clean WordPress theme for Dan Clayton Music. Responsive, WooCommerce-ready, with embedded media support, photo galleries, show listings, and a professional musician-focused layout.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dcm
Tags: dark, music, portfolio, woocommerce, responsive, custom-menu, custom-logo, featured-images
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */

:root {
  --dcm-bg:           #08080e;
  --dcm-surface:      #101018;
  --dcm-card:         #16161f;
  --dcm-card-hover:   #1e1e2a;
  --dcm-border:       #22222e;
  --dcm-text:         #d8d8e4;
  --dcm-text-muted:   #9898b0;
  --dcm-accent:       #7a8040;
  --dcm-accent-glow:  rgba(122, 128, 64, 0.3);
  --dcm-accent-hover: #8f9550;
  --dcm-accent-soft:  rgba(122, 128, 64, 0.08);
  --dcm-hot:          #ff2d55;
  --dcm-white:        #ffffff;
  --dcm-radius:       6px;
  --dcm-radius-lg:    12px;
  --dcm-font-logo:    'Bebas Neue', sans-serif;
  --dcm-font-display: 'Oswald', sans-serif;
  --dcm-font-body:    'Outfit', sans-serif;
  --dcm-max-width:    1200px;
  --dcm-transition:   0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--dcm-font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--dcm-text);
  background-color: var(--dcm-bg);
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--dcm-font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--dcm-white);
}

p {
  margin-bottom: 1em;
}

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.dcm-container {
  width: 100%;
  max-width: var(--dcm-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.dcm-section {
  padding: 100px 0;
  position: relative;
}

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

.dcm-section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--dcm-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dcm-accent);
  margin-bottom: 16px;
}

.dcm-section__label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dcm-accent);
}

.dcm-section__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
}

.dcm-section__desc {
  max-width: 600px;
  color: var(--dcm-text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* ============================================
   BUTTONS
   ============================================ */

.dcm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--dcm-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--dcm-radius);
  cursor: pointer;
  transition: all var(--dcm-transition);
  text-decoration: none;
  line-height: 1;
}

.dcm-btn--primary {
  background: #6b7a35;
  color: var(--dcm-white);
  border: 2px solid #8f9550;
}

.dcm-btn--primary:hover {
  background: var(--dcm-accent-hover);
  color: var(--dcm-bg);
  box-shadow: 0 0 30px var(--dcm-accent-glow);
  transform: translateY(-2px);
}

.dcm-btn--outline {
  background: transparent;
  color: var(--dcm-accent);
  border: 2px solid var(--dcm-accent);
}

.dcm-btn--outline:hover {
  background: var(--dcm-accent);
  color: var(--dcm-bg);
  box-shadow: 0 0 30px var(--dcm-accent-glow);
  transform: translateY(-2px);
}

.dcm-btn--ghost {
  background: transparent;
  color: var(--dcm-text);
  border: 2px solid var(--dcm-border);
}

.dcm-btn--ghost:hover {
  border-color: var(--dcm-text-muted);
  color: var(--dcm-white);
}

.dcm-btn--small {
  padding: 10px 20px;
  font-size: 12px;
}

/* ============================================
   SITE HEADER
   ============================================ */

.dcm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(8, 8, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--dcm-border);
  transition: background var(--dcm-transition), box-shadow var(--dcm-transition);
}

.dcm-header.scrolled {
  background: rgba(8, 8, 14, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--dcm-border);
}

.dcm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--dcm-max-width);
  margin: 0 auto;
  height: 80px;
}

.dcm-logo {
  font-family: var(--dcm-font-logo);
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dcm-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--dcm-transition);
}

.dcm-logo:hover {
  color: var(--dcm-accent);
}

.dcm-logo__mark {
  width: 8px;
  height: 8px;
  background: var(--dcm-accent);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--dcm-accent-glow);
  transform: rotate(45deg);
}

/* Navigation */
.dcm-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dcm-nav__list a {
  display: block;
  padding: 8px 16px;
  font-family: var(--dcm-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dcm-text);
  text-decoration: none;
  border-radius: var(--dcm-radius);
  transition: all var(--dcm-transition);
}

.dcm-nav__list a:hover,
.dcm-nav__list .current-menu-item a,
.dcm-nav__list .current_page_item a {
  color: var(--dcm-accent);
  background: var(--dcm-accent-soft);
}

/* Mobile menu toggle */
.dcm-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.dcm-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dcm-white);
  margin: 6px 0;
  transition: all var(--dcm-transition);
}

.dcm-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.dcm-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.dcm-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.dcm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.dcm-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

.dcm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 14, 0.88) 0%,
    rgba(8, 8, 14, 0.6) 40%,
    rgba(8, 8, 14, 0.3) 70%,
    rgba(8, 8, 14, 0.5) 100%
  );
  z-index: 1;
}

.dcm-hero__overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--dcm-bg));
}

.dcm-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0;
  padding: 0 24px;
  padding-top 80px;
  padding-left: 8%;
}

.dcm-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--dcm-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dcm-text);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.dcm-hero__tag::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--dcm-accent);
}

.dcm-hero__title {
  font-family: var(--dcm-font-logo);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);

}

.dcm-hero__title span {
  display: block;
  color: #6b7a35;
}

.dcm-hero__subtitle {
  font-family: var(--dcm-font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--dcm-text);
  max-width: 320px;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.dcm-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.dcm-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--dcm-text-muted);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

.dcm-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--dcm-accent), transparent);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.dcm-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dcm-about__image {
  position: relative;
  border-radius: var(--dcm-radius-lg);
  overflow: hidden;
}

.dcm-about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--dcm-border);
  border-radius: var(--dcm-radius-lg);
  pointer-events: none;
}

.dcm-about__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dcm-about__image:hover img {
  transform: scale(1.03);
}

.dcm-about__text h3 {
  font-size: 1.1rem;
  color: var(--dcm-accent);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.dcm-about__text p {
  color: var(--dcm-text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.dcm-about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--dcm-border);
}

.dcm-about__stat-value {
  font-family: var(--dcm-font-display);
  font-size: 2rem;
  color: var(--dcm-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.dcm-about__stat-label {
  font-size: 13px;
  color: var(--dcm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   MUSIC / LATEST SECTION
   ============================================ */

.dcm-music__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.dcm-music__card {
  background: var(--dcm-card);
  border-radius: var(--dcm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--dcm-border);
  transition: all var(--dcm-transition);
}

.dcm-music__card:hover {
  background: var(--dcm-card-hover);
  border-color: rgba(143, 163, 72, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dcm-music__card-image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.dcm-music__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dcm-music__card:hover .dcm-music__card-image img {
  transform: scale(1.05);
}

.dcm-music__card-play {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  background: var(--dcm-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--dcm-transition);
  box-shadow: 0 4px 20px var(--dcm-accent-glow);
}

.dcm-music__card:hover .dcm-music__card-play {
  opacity: 1;
  transform: translateY(0);
}

.dcm-music__card-play svg {
  width: 20px;
  height: 20px;
  fill: var(--dcm-bg);
  margin-left: 2px;
}

.dcm-music__card-info {
  padding: 20px;
}

.dcm-music__card-title {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.dcm-music__card-meta {
  font-size: 13px;
  color: var(--dcm-text-muted);
}

/* ============================================
   SHOWS / EVENTS
   ============================================ */

.dcm-shows__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dcm-show {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 24px;
  background: var(--dcm-card);
  border-radius: var(--dcm-radius);
  transition: all var(--dcm-transition);
}

.dcm-show:hover {
  background: var(--dcm-card-hover);
}

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

.dcm-show__month {
  font-family: var(--dcm-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dcm-accent);
}

.dcm-show__day {
  font-family: var(--dcm-font-display);
  font-size: 2.2rem;
  color: var(--dcm-white);
  line-height: 1;
}

.dcm-show__venue {
  font-family: var(--dcm-font-display);
  font-size: 1.1rem;
  color: var(--dcm-white);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.dcm-show__location {
  font-size: 14px;
  color: var(--dcm-text-muted);
}

/* ============================================
   PHOTO GALLERY
   ============================================ */

.dcm-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.dcm-gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

.dcm-gallery__item:hover img {
  transform: scale(1.08);
}

.dcm-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(143, 163, 72, 0.1);
  opacity: 0;
  transition: opacity var(--dcm-transition);
}

.dcm-gallery__item:hover::after {
  opacity: 1;
}

/* Wide items */
.dcm-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* ============================================
   BLOG / NEWS
   ============================================ */

.dcm-posts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.dcm-post-card {
  background: var(--dcm-card);
  border-radius: var(--dcm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--dcm-border);
  transition: all var(--dcm-transition);
}

.dcm-post-card:hover {
  border-color: rgba(143, 163, 72, 0.15);
  transform: translateY(-4px);
}

.dcm-post-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.dcm-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dcm-post-card:hover .dcm-post-card__image img {
  transform: scale(1.05);
}

.dcm-post-card__body {
  padding: 24px;
}

.dcm-post-card__date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dcm-accent);
  margin-bottom: 8px;
}

.dcm-post-card__title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.dcm-post-card__title a {
  color: var(--dcm-white);
  text-decoration: none;
}

.dcm-post-card__title a:hover {
  color: var(--dcm-accent);
}

.dcm-post-card__excerpt {
  font-size: 0.95rem;
  color: var(--dcm-text-muted);
  line-height: 1.6;
}

/* Single post */
.dcm-single {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 120px;
}

.dcm-single__header {
  margin-bottom: 48px;
}

.dcm-single__date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dcm-accent);
  margin-bottom: 16px;
}

.dcm-single__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.dcm-single__content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.dcm-single__content h2,
.dcm-single__content h3 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.dcm-single__content p {
  margin-bottom: 1.5em;
}

.dcm-single__content img {
  border-radius: var(--dcm-radius-lg);
  margin: 32px 0;
}

.dcm-single__content blockquote {
  border-left: 3px solid var(--dcm-accent);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--dcm-accent-soft);
  border-radius: 0 var(--dcm-radius) var(--dcm-radius) 0;
  font-style: italic;
  color: var(--dcm-text);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.dcm-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.dcm-contact__info h3 {
  font-size: 1.1rem;
  color: var(--dcm-accent);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.dcm-contact__info p {
  color: var(--dcm-text-muted);
  margin-bottom: 32px;
}

.dcm-contact__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.dcm-contact__social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dcm-card);
  border: 1px solid var(--dcm-border);
  border-radius: var(--dcm-radius);
  color: var(--dcm-text-muted);
  transition: all var(--dcm-transition);
}

.dcm-contact__social a:hover {
  background: var(--dcm-accent);
  border-color: var(--dcm-accent);
  color: var(--dcm-bg);
}

.dcm-contact__social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Contact form */
.dcm-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 20px;
}

.dcm-form input[type="text"],
.dcm-form input[type="email"],
.dcm-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--dcm-card);
  border: 1px solid var(--dcm-border);
  border-radius: var(--dcm-radius);
  color: var(--dcm-text);
  font-family: var(--dcm-font-body);
  font-size: 15px;
  transition: border-color var(--dcm-transition);
  outline: none;
}

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

.dcm-form textarea {
  min-height: 150px;
  resize: vertical;
}

.dcm-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dcm-text-muted);
  margin-bottom: 8px;
}

.dcm-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  padding: 14px 40px;
  font-family: var(--dcm-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--dcm-accent);
  color: var(--dcm-bg);
  border: none;
  border-radius: var(--dcm-radius);
  cursor: pointer;
  transition: all var(--dcm-transition);
}

.dcm-form input[type="submit"]:hover {
  background: var(--dcm-accent-hover);
  box-shadow: 0 0 30px var(--dcm-accent-glow);
  transform: translateY(-2px);
}

/* ============================================
   NEWSLETTER / CTA
   ============================================ */

.dcm-cta {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.dcm-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--dcm-accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.dcm-cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  position: relative;
}

.dcm-cta__desc {
  color: var(--dcm-text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.dcm-cta__form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}

.dcm-cta__form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  background: var(--dcm-card);
  border: 1px solid var(--dcm-border);
  border-radius: var(--dcm-radius);
  color: var(--dcm-text);
  font-family: var(--dcm-font-body);
  font-size: 15px;
  outline: none;
}

.dcm-cta__form input[type="email"]:focus {
  border-color: var(--dcm-accent);
}

/* ============================================
   FOOTER
   ============================================ */

.dcm-footer {
  border-top: 1px solid var(--dcm-border);
  padding: 60px 0 40px;
  background: var(--dcm-surface);
}

.dcm-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.dcm-footer__copy {
  font-size: 14px;
  color: var(--dcm-text-muted);
}

.dcm-footer__social {
  display: flex;
  gap: 16px;
}

.dcm-footer__social a {
  color: var(--dcm-text-muted);
  transition: color var(--dcm-transition);
}

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

.dcm-footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */

.dcm-page-header {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.dcm-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, var(--dcm-accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.dcm-page-header__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  position: relative;
}

.dcm-page-header__desc {
  font-size: 1.1rem;
  color: var(--dcm-text-muted);
  margin-top: 16px;
  max-width: 560px;
  position: relative;
}

/* ============================================
   MEDIA PAGE
   ============================================ */

.dcm-media-block {
  margin-bottom: 80px;
}

.dcm-media-block__title {
  font-size: 1.3rem;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dcm-media-block__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--dcm-border);
}

/* Video embeds */
.dcm-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 24px;
}

.dcm-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--dcm-radius-lg);
  overflow: hidden;
  background: var(--dcm-card);
}

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

/* Music embed */
.dcm-music-embed {
  background: var(--dcm-card);
  border-radius: var(--dcm-radius-lg);
  padding: 24px;
  border: 1px solid var(--dcm-border);
}

.dcm-music-embed iframe {
  border: 0;
  width: 100%;
  border-radius: var(--dcm-radius);
}

/* ============================================
   WOOCOMMERCE COMPATIBILITY
   ============================================ */

.woocommerce ul.products li.product {
  background: var(--dcm-card);
  border: 1px solid var(--dcm-border);
  border-radius: var(--dcm-radius-lg);
  overflow: hidden;
  transition: all var(--dcm-transition);
}

.woocommerce ul.products li.product:hover {
  border-color: rgba(143, 163, 72, 0.15);
  transform: translateY(-4px);
}

.woocommerce ul.products li.product a.button,
.woocommerce a.button,
.woocommerce button.button {
  background: var(--dcm-accent) !important;
  color: var(--dcm-bg) !important;
  font-family: var(--dcm-font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--dcm-radius);
}

.woocommerce ul.products li.product .price {
  color: var(--dcm-accent);
  font-family: var(--dcm-font-display);
}

/* ============================================
   SOCIAL BAR (hero)
   ============================================ */

.dcm-social-bar {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.dcm-social-bar a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--dcm-radius);
  color: var(--dcm-text);
  transition: all var(--dcm-transition);
}

.dcm-social-bar a:hover {
  background: var(--dcm-accent);
  border-color: var(--dcm-accent);
  color: var(--dcm-bg);
}

.dcm-social-bar a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ============================================
   PREVIOUS WORK CARD
   ============================================ */

.dcm-prev-work {
  margin-top: 40px;
  padding: 24px;
  background: var(--dcm-card);
  border-radius: var(--dcm-radius-lg);
  border: 1px solid var(--dcm-border);
  transition: border-color var(--dcm-transition);
}

.dcm-prev-work:hover {
  border-color: rgba(143, 163, 72, 0.15);
}

.dcm-prev-work__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dcm-text-muted);
  margin-bottom: 8px;
}

.dcm-prev-work__name {
  font-family: var(--dcm-font-display);
  font-size: 1.2rem;
  color: var(--dcm-white);
  text-transform: uppercase;
  text-decoration: none;
}

.dcm-prev-work__name:hover {
  color: var(--dcm-accent);
}

.dcm-prev-work__desc {
  font-size: 14px;
  color: var(--dcm-text-muted);
  margin-top: 4px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.dcm-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.dcm-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
  .dcm-about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dcm-contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .dcm-section {
    padding: 72px 0;
  }

  .dcm-menu-toggle {
    display: block;
  }

  .dcm-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dcm-surface);
    padding: 100px 32px 32px;
    transition: right var(--dcm-transition);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .dcm-nav.open {
    right: 0;
  }

  .dcm-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .dcm-nav__list a {
    padding: 14px 16px;
    font-size: 16px;
  }

  .dcm-hero__title {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }
	
.dcm-hero {
    align-items: flex-start;
  }

  .dcm-hero__content {
    padding-top: 100px;
  }

  .dcm-hero__subtitle {
    font-size: 0.95rem;
    max-width: 280px;
  }

  .dcm-show {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  .dcm-show .dcm-btn {
    grid-column: 1 / -1;
  }

  .dcm-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .dcm-gallery__item--wide {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .dcm-video-grid {
    grid-template-columns: 1fr;
  }

  .dcm-posts__grid {
    grid-template-columns: 1fr;
  }

  .dcm-cta__form {
    flex-direction: column;
  }

  .dcm-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .dcm-about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .dcm-container {
    padding: 0 16px;
  }

  .dcm-about__stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dcm-hero__actions {
    flex-direction: column;
  }

  .dcm-hero__actions .dcm-btn {
    text-align: center;
    justify-content: center;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--dcm-accent);
  color: var(--dcm-bg);
  font-weight: 600;
  border-radius: var(--dcm-radius);
}

.skip-link:focus {
  top: 8px;
}

/* ============================================
   WORDPRESS CLASSES
   ============================================ */

.alignwide {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.aligncenter {
  text-align: center;
}

.wp-block-image {
  margin: 32px 0;
}

.wp-block-image img {
  border-radius: var(--dcm-radius-lg);
}

/* WordPress gallery */
.wp-block-gallery {
  gap: 4px !important;
}

.wp-block-gallery .wp-block-image {
  margin: 0;
  border-radius: 0;
}

.wp-block-gallery .wp-block-image img {
  border-radius: 0;
}
