/* ==========================================================================
   RavenStage — styles.css
   Brand: Control. Contrast. Restraint.
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --red:     #8C1F1F;
  --cream:   #F4EFEA;
  --espresso:#2B1E1A;
  --cream-dark: #EDE7E0;
  --espresso-light: #4A3530;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1280px;
  --gutter: clamp(1.5rem, 5vw, 4rem);

  --radius-sm: 4px;
  --radius-pill: 100px;

  --transition: 0.2s ease;
}

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

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

body {
  background-color: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* --- Typography Scale --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--espresso);
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 600; }

p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  color: var(--espresso-light);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-pad--tight {
  padding-top: clamp(2rem, 3vw, 3rem);
}

.page-hero--compact {
  padding-bottom: clamp(1.5rem, 2vw, 2rem);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background-color: var(--red);
  color: var(--cream) !important;
}
.btn-primary:hover {
  background-color: #7a1a1a;
  box-shadow: 0 4px 20px rgba(140, 31, 31, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
}
.btn-outline:hover {
  background-color: var(--espresso);
  color: var(--cream);
}

.btn-outline-cream {
  background-color: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(244, 239, 234, 0.5);
}
.btn-outline-cream:hover {
  background-color: rgba(244, 239, 234, 0.1);
}

/* Focus states for accessibility */
.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--cream);
  border-bottom: 1px solid rgba(43, 30, 26, 0.08);
  padding: 0 var(--gutter);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--red);
  transition: width var(--transition);
}

.nav-links a:not(.btn):hover {
  color: var(--red);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--red);
}
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}

.nav-toggle:hover {
  background-color: var(--cream-dark);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--espresso);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background-color: var(--cream);
  border-bottom: 1px solid rgba(43, 30, 26, 0.1);
  padding: 1.5rem var(--gutter) 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--espresso);
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(43, 30, 26, 0.08);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--red);
}

.mobile-nav .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

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

.hero {
  position: relative;
  background-color: var(--cream);
  overflow: hidden;
  min-height: clamp(520px, 80vh, 820px);
  display: flex;
  align-items: stretch;
}

.hero-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.hero-content {
  padding: clamp(3rem, 6vw, 5rem) 0;
  z-index: 2;
  position: relative;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--espresso);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-headline em {
  font-style: normal;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--espresso-light);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-image {
  position: relative;
  align-self: stretch;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ==========================================================================
   SECTION LABELS
   ========================================================================== */

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 560px;
  color: var(--espresso-light);
  margin-bottom: 3.5rem;
}

/* ==========================================================================
   SELECTED WORK (Homepage)
   ========================================================================== */

.work-section {
  background-color: var(--cream);
}


/* Selected Work full-width header */
.selected-work-header {
  background-color: var(--espresso);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.selected-work-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.selected-work-header-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0;
}

.selected-work-header-inner .section-label {
  color: rgba(244, 239, 234, 0.4);
  margin-bottom: 0.4rem;
}

.selected-work-intro {
  max-width: 380px;
  color: rgba(244, 239, 234, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: right;
}

@media (max-width: 768px) {
  .selected-work-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .selected-work-intro {
    text-align: left;
    max-width: 100%;
  }
}

/* Production feature layout */
.production-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(43, 30, 26, 0.12);
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.production-feature:last-child {
  border-bottom: 1px solid rgba(43, 30, 26, 0.12);
}

.production-feature.reverse .production-meta {
  order: 2;
}
.production-feature.reverse .production-media {
  order: 1;
}

.production-meta {
  padding-right: clamp(2rem, 4vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.production-number {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.production-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.production-desc {
  color: var(--espresso-light);
  margin-bottom: 1.75rem;
  max-width: 400px;
}

.production-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.production-feature.reverse .production-meta {
  padding-right: 0;
  padding-left: clamp(2rem, 4vw, 5rem);
}

/* SoundCloud embed container */
.sc-embed-wrapper {
  background-color: var(--espresso);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.sc-placeholder {
  width: 100%;
  height: 166px;
  background-color: rgba(43, 30, 26, 0.06);
  border: 1px solid rgba(43, 30, 26, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--espresso-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.sc-placeholder.loading {
  background: linear-gradient(90deg, rgba(43,30,26,0.04) 25%, rgba(43,30,26,0.08) 50%, rgba(43,30,26,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.sc-embed-wrapper iframe {
  display: block;
  border: none;
  width: 100%;
}

/* ==========================================================================
   ABOUT PREVIEW (Homepage)
   ========================================================================== */

.about-preview {
  background-color: var(--espresso);
}

.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
}

.about-preview-image {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-preview-content {
  color: var(--cream);
}

.about-preview-content .section-label {
  color: rgba(244, 239, 234, 0.5);
}

.about-preview-content h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.about-preview-content p {
  color: rgba(244, 239, 234, 0.75);
  margin-bottom: 2rem;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--cream);
  border-left: 2px solid var(--red);
  padding-left: 1.5rem;
  margin: 2rem 0 2.5rem;
  line-height: 1.4;
}

/* ==========================================================================
   RESUME CTA (Homepage)
   ========================================================================== */

.resume-cta-section {
  background-color: var(--cream);
  text-align: center;
}

.resume-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.resume-cta-inner h2 {
  margin-bottom: 1rem;
}

.resume-cta-inner p {
  margin-bottom: 2rem;
}

.cta-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ==========================================================================
   CONTACT CTA STRIP
   ========================================================================== */

.contact-strip {
  background-color: var(--espresso);
  padding: clamp(3rem, 5vw, 5rem) var(--gutter);
}

.contact-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-strip h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.contact-strip p {
  color: rgba(244, 239, 234, 0.65);
  margin-top: 0.5rem;
}

/* ==========================================================================
   WORK PAGE
   ========================================================================== */

.page-hero {
  background-color: var(--espresso);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.page-hero h1 {
  font-style: italic;
  color: var(--cream);
}

.page-hero .section-label {
  color: rgba(244, 239, 234, 0.4);
}

.page-hero p,
.page-hero .hero-sub {
  color: rgba(244, 239, 234, 0.65);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background-color: rgba(43, 30, 26, 0.1);
}

.work-card {
  background-color: var(--cream);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition);
}

.work-card:hover {
  background-color: var(--cream-dark);
}

.work-card h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.work-card-number {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.work-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.work-card p {
  flex: 1;
}

/* ==========================================================================
   BIO PAGE
   ========================================================================== */

.bio-hero {
  background-color: var(--espresso);
  padding: clamp(2rem, 3vw, 3rem) 0;
  overflow: hidden;
  position: relative;
}

.bio-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
}

.bio-hero-content h1 {
  color: var(--cream);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 0.5rem;
}

.bio-hero-content .section-label {
  color: rgba(244, 239, 234, 0.45);
}

.bio-hero-subtitle {
  color: rgba(244, 239, 234, 0.65);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.bio-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 240px;
  margin-left: auto;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bio-body {
  background-color: var(--cream);
}

.bio-body-inner {
  max-width: 760px;
  margin: 0 auto;
}

.bio-cta {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(43, 30, 26, 0.1);
}

.bio-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.bio-body-inner p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  color: var(--espresso);
}

/* ==========================================================================
   RESUME PAGE
   ========================================================================== */

.resume-download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background-color: rgba(43, 30, 26, 0.1);
  margin: 3rem 0;
}

.resume-download-card {
  background-color: var(--cream);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition);
}

.resume-download-card:hover {
  background-color: var(--cream-dark);
}

.resume-download-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.resume-download-card p {
  flex: 1;
  font-size: 0.9rem;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-page-hero {
  background-color: var(--espresso);
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.contact-page-hero h1 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 1rem;
}

.contact-page-hero p {
  color: rgba(244, 239, 234, 0.65);
  max-width: 480px;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background-color: rgba(43, 30, 26, 0.1);
  margin: 3rem 0;
}

.contact-card {
  background-color: var(--cream);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--transition);
}

.contact-card:hover {
  background-color: var(--cream-dark);
}

.contact-card-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.contact-card h3 {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  word-break: break-all;
}

.contact-card-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.contact-card-link:hover {
  gap: 0.65rem;
}

/* ==========================================================================
   PRODUCTION PAGES (our-town, bright-star, little-shop)
   ========================================================================== */

.production-page-hero {
  background-color: var(--espresso);
  padding: clamp(4rem, 7vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.production-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(244,239,234,0.15), transparent);
}

.production-page-hero h1 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.production-page-hero .section-label {
  color: rgba(244, 239, 234, 0.4);
}

.production-page-hero p {
  color: rgba(244, 239, 234, 0.65);
  max-width: 560px;
  margin-top: 1rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.5);
  margin-bottom: 2rem;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--cream);
}


/* Cue list */
.cue-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cue-item {
  border-top: 1px solid rgba(43, 30, 26, 0.1);
  padding-top: 2rem;
}

.cue-item:first-child {
  border-top: none;
  padding-top: 0;
}

.cue-meta {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cue-number {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  flex-shrink: 0;
}

.cue-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--espresso);
}

.cue-desc {
  font-size: 0.85rem;
  color: var(--espresso-light);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.cue-embed {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* Placeholder cue card */
.cue-coming-soon {
  background-color: rgba(43, 30, 26, 0.04);
  border: 1px dashed rgba(43, 30, 26, 0.15);
  border-radius: var(--radius-sm);
  height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--espresso-light);
  opacity: 0.6;
}

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

.site-footer {
  background-color: var(--espresso);
  padding: clamp(3rem, 5vw, 4.5rem) var(--gutter) 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(244, 239, 234, 0.1);
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 34px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(244, 239, 234, 0.45);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 220px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: center;
}

.footer-nav-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.3);
  margin-bottom: 0.5rem;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.825rem;
  color: rgba(244, 239, 234, 0.55);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-contact {
  text-align: right;
}

.footer-contact-links-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: flex-end;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contact-icon {
  height: 44px;
  width: auto;
  opacity: 0.55;
  flex-shrink: 0;
}

.footer-contact-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.3);
  margin-bottom: 0.75rem;
}

.footer-contact a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.825rem;
  color: rgba(244, 239, 234, 0.55);
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--cream);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(244, 239, 234, 0.3);
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--gutter);
}

.error-page-inner {
  max-width: 480px;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 800;
  color: rgba(43, 30, 26, 0.08);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.error-page h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.error-page p {
  margin-bottom: 2rem;
}

/* ==========================================================================
   RESPONSIVE — 1024px
   ========================================================================== */

@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .resume-download-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   RESPONSIVE — 768px (tablet)
   ========================================================================== */

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    order: -1;
    height: 360px;
    margin: 0 calc(-1 * var(--gutter));
  }

  .hero-image::before {
    width: 100%;
    height: 40%;
    top: auto;
    bottom: 0;
    background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
  }

  .hero-content {
    padding: 2rem 0 3rem;
  }

  .hero-sub {
    max-width: 100%;
  }

  /* Production features */
  .production-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .production-feature.reverse .production-meta {
    order: 0;
    padding-left: 0;
  }

  .production-feature.reverse .production-media {
    order: 0;
  }

  .production-meta {
    padding-right: 0;
  }

  /* About preview */
  .about-preview-inner {
    grid-template-columns: 1fr;
  }

  .about-preview-image {
    max-width: 280px;
    aspect-ratio: 1/1;
  }

  /* Bio hero */
  .bio-hero-inner {
    grid-template-columns: 1fr;
  }

  .bio-photo {
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 1/1;
  }

  /* Contact options */
  .contact-options {
    grid-template-columns: 1fr;
  }

  /* Work grid */
  .work-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-contact-icon {
    margin-left: 0;
  }

  .footer-nav {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Contact strip */
  .contact-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   RESPONSIVE — 480px (mobile)
   ========================================================================== */

@media (max-width: 480px) {
  .hero-image {
    height: 280px;
  }

  .cta-button-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button-group .btn {
    width: 100%;
    justify-content: center;
  }

  .resume-download-card {
    padding: 1.5rem;
  }

  .work-card {
    padding: 1.5rem;
  }

  .production-page-hero,
  .contact-page-hero,
  .bio-hero {
    padding: 3rem 0;
  }
}

/* ==========================================================================
   RESPONSIVE — 375px (small mobile)
   ========================================================================== */

@media (max-width: 375px) {
  :root {
    --gutter: 1.25rem;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-image {
    height: 240px;
  }

  .nav-logo img {
    height: 28px;
  }

  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.8rem;
  }

  .production-title {
    font-size: 1.5rem;
  }

  .footer-inner {
    gap: 1.5rem;
  }

  .footer-contact-links-row {
    gap: 0.75rem;
  }
}

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

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

.text-red { color: var(--red); }
.text-cream { color: var(--cream); }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.btn-card {
  margin-top: 1rem;
  align-self: flex-start;
}
