/*
===========================================
  AMIR ZOVEINI - Master Stylesheet
  Child Theme: Hello Elementor Child
  Template: hello-elementor
  Version: 1.0
  Design: Cinematic, Editorial, Minimal
===========================================
*/

/* =========================================
   1. GOOGLE FONTS IMPORT
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');


/* =========================================
   2. CSS VARIABLES (DESIGN TOKENS)
   ========================================= */

:root {
  --color-bg:           #F7F4EF;
  --color-text:         #1D1D1D;
  --color-accent:       #6A1E2A;
  --color-muted:        #7A7A7A;
  --color-border:       #E0DDD8;
  --color-white:        #FFFFFF;

  --font-heading:       'EB Garamond', Georgia, serif;
  --font-body:          'Inter', system-ui, sans-serif;

  --size-xs:            0.75rem;
  --size-sm:            0.875rem;
  --size-base:          1rem;
  --size-md:            1.125rem;
  --size-lg:            1.5rem;
  --size-xl:            2rem;
  --size-2xl:           2.75rem;
  --size-3xl:           3.5rem;
  --size-4xl:           4.5rem;

  --spacing-xs:         0.5rem;
  --spacing-sm:         1rem;
  --spacing-md:         2rem;
  --spacing-lg:         4rem;
  --spacing-xl:         6rem;

  --radius:             2px;
  --transition:         all 0.25s ease;
  --max-width:          1200px;
}


/* =========================================
   3. GLOBAL RESET AND BASE
   ========================================= */

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

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--size-base);
  font-weight: 400;
  line-height: 1.75;
}


/* =========================================
   4. TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--size-4xl); }
h2 { font-size: var(--size-3xl); }
h3 { font-size: var(--size-2xl); }
h4 { font-size: var(--size-xl); }
h5 { font-size: var(--size-lg); }
h6 { font-size: var(--size-md); }

p {
  font-family: var(--font-body);
  font-size: var(--size-base);
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

p.lead {
  font-size: var(--size-md);
  font-weight: 300;
  color: var(--color-muted);
}

blockquote {
  font-family: var(--font-heading);
  font-size: var(--size-xl);
  font-style: italic;
  color: var(--color-accent);
  border-left: 2px solid var(--color-accent);
  padding-left: var(--spacing-md);
  margin: var(--spacing-md) 0;
}

strong { font-weight: 600; }

em { font-style: italic; }

small {
  font-size: var(--size-xs);
  color: var(--color-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================
   5. LINKS
   ========================================= */

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

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

a.accent-link {
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 1px;
}

a.accent-link:hover {
  opacity: 0.75;
}


/* =========================================
   6. NAVIGATION
   ========================================= */

.site-header,
header.e-con,
#site-header {
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-branding .site-title,
.site-branding .site-title a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}

.site-branding .site-description {
  font-family: var(--font-body);
  font-size: var(--size-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 2px;
}

/* Primary Navigation Menu */
.main-navigation ul,
nav.elementor-nav-menu ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.main-navigation ul li a,
nav.elementor-nav-menu ul li a {
  font-family: var(--font-body);
  font-size: var(--size-sm);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: var(--transition);
}

.main-navigation ul li a:hover,
nav.elementor-nav-menu ul li a:hover,
.main-navigation ul li.current-menu-item a {
  color: var(--color-accent);
}


/* =========================================
   7. HERO SECTION
   ========================================= */

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--color-bg);
  padding: var(--spacing-xl) 0;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--spacing-sm);
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, var(--size-4xl));
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--size-sm);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--spacing-md);
}

.hero-intro {
  font-family: var(--font-body);
  font-size: var(--size-md);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 520px;
}

.hero-portrait {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(15%);
}


/* =========================================
   8. SECTION STYLES
   ========================================= */

section,
.elementor-section {
  padding: var(--spacing-xl) 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: var(--spacing-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--size-3xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.section-divider {
  width: 40px;
  height: 1px;
  background-color: var(--color-accent);
  margin: var(--spacing-sm) 0 var(--spacing-md);
  display: block;
}

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

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark p {
  color: var(--color-bg);
}


/* =========================================
   9. FILM / PROJECT CARDS
   ========================================= */

.film-card {
  background-color: transparent;
  border-top: 1px solid var(--color-border);
  padding: var(--spacing-md) 0;
  transition: var(--transition);
}

.film-card:hover {
  border-top-color: var(--color-accent);
}

.film-card-label {
  font-size: var(--size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--spacing-xs);
}

.film-card-title {
  font-family: var(--font-heading);
  font-size: var(--size-xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
}

.film-card-meta {
  font-size: var(--size-sm);
  color: var(--color-muted);
}

.film-card-status {
  display: inline-block;
  font-size: var(--size-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 3px 10px;
  border-radius: var(--radius);
  margin-top: var(--spacing-xs);
}


/* =========================================
   10. BUTTONS
   ========================================= */

.btn,
.elementor-button {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-text);
  color: var(--color-bg);
}

.btn-primary:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

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

.btn-outline:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover {
  opacity: 0.85;
}


/* =========================================
   11. FOOTER
   ========================================= */

.site-footer,
footer {
  background-color: var(--color-text);
  color: var(--color-bg);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  border-top: 1px solid var(--color-border);
}

.footer-name {
  font-family: var(--font-heading);
  font-size: var(--size-xl);
  font-weight: 400;
  color: var(--color-bg);
  margin-bottom: var(--spacing-xs);
}

.footer-tagline {
  font-size: var(--size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--spacing-md);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav ul li a {
  font-size: var(--size-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: var(--transition);
}

.footer-nav ul li a:hover {
  color: var(--color-bg);
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  margin-top: var(--spacing-sm);
}

.footer-social a {
  font-size: var(--size-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid #333333;
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer-copyright {
  font-size: var(--size-xs);
  color: var(--color-muted);
  letter-spacing: 0.05em;
}


/* =========================================
   12. CONTACT FORM
   ========================================= */

.wpforms-container input,
.wpforms-container textarea,
.wpforms-container select {
  background-color: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--size-base);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: var(--transition);
}

.wpforms-container input:focus,
.wpforms-container textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.wpforms-container label {
  font-family: var(--font-body);
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.wpforms-container button[type="submit"],
.wpforms-submit {
  background-color: var(--color-text);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.wpforms-container button[type="submit"]:hover {
  background-color: var(--color-accent);
}


/* =========================================
   13. UTILITY CLASSES
   ========================================= */

.text-accent   { color: var(--color-accent); }
.text-muted    { color: var(--color-muted); }
.text-upper    { text-transform: uppercase; letter-spacing: 0.1em; }
.text-center   { text-align: center; }
.text-right    { text-align: right; }

.mt-sm  { margin-top: var(--spacing-sm); }
.mt-md  { margin-top: var(--spacing-md); }
.mt-lg  { margin-top: var(--spacing-lg); }
.mb-sm  { margin-bottom: var(--spacing-sm); }
.mb-md  { margin-bottom: var(--spacing-md); }
.mb-lg  { margin-bottom: var(--spacing-lg); }

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

.divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  margin: var(--spacing-lg) 0;
}


/* =========================================
   14. RESPONSIVE - TABLET
   ========================================= */

@media (max-width: 1024px) {
  h1 { font-size: var(--size-3xl); }
  h2 { font-size: var(--size-2xl); }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, var(--size-3xl));
  }

  .hero-portrait {
    max-width: 380px;
  }
}


/* =========================================
   15. RESPONSIVE - MOBILE
   ========================================= */

@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  h1 { font-size: var(--size-2xl); }
  h2 { font-size: var(--size-xl); }

  .hero-section {
    min-height: auto;
    padding: var(--spacing-lg) 0;
    flex-direction: column;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, var(--size-2xl));
  }

  .hero-portrait {
    max-width: 100%;
    margin-bottom: var(--spacing-md);
  }

  .main-navigation ul,
  nav.elementor-nav-menu ul {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav ul {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}


/* =========================================
   16. ELEMENTOR OVERRIDES
   ========================================= */

.elementor-section .elementor-container {
  max-width: var(--max-width);
}

.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-heading);
  font-weight: 400;
}

.elementor-widget-text-editor p {
  font-family: var(--font-body);
  line-height: 1.8;
}

.elementor-button-wrapper .elementor-button {
  font-family: var(--font-body);
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

/* Remove default Elementor blue */
.elementor-button.elementor-size-md {
  background-color: var(--color-text);
  color: var(--color-bg);
}

.elementor-button.elementor-size-md:hover {
  background-color: var(--color-accent);
}

/* ============================================================
   AMIR ZOVEINI - SECTIONS 2-7 + FOOTER
   ============================================================ */

/* --- Shared Utilities --- */
.az-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6A1E2A;
  display: block;
  margin-bottom: 16px;
}

.az-divider {
  width: 50px;
  height: 2px;
  background: #6A1E2A;
  margin: 22px 0;
}

.az-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  text-decoration: none;
}

.az-btn--dark {
  color: #1D1D1D;
  border-color: #1D1D1D;
}
.az-btn--dark:hover {
  background: #1D1D1D;
  color: #F7F4EF;
}

.az-btn--light {
  color: #F7F4EF;
  border-color: rgba(247,244,239,0.5);
}
.az-btn--light:hover {
  background: #F7F4EF;
  color: #1D1D1D;
}

.az-btn--accent {
  color: #F7F4EF;
  background: #6A1E2A;
  border-color: #6A1E2A;
}
.az-btn--accent:hover {
  background: #8a2535;
  border-color: #8a2535;
}

/* --- Section 2: Featured Work --- */
.az-featured {
  background: #1D1D1D;
  padding: 100px 60px;
}

.az-featured__title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 60px;
  font-weight: 400;
  color: #F7F4EF;
  line-height: 1.1;
  margin: 0 0 10px 0;
}

.az-featured__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: #7A7A7A;
  margin: 0 0 8px 0;
}

.az-featured__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(247,244,239,0.75);
  max-width: 600px;
  margin: 0 0 36px 0;
}

/* --- Section 3: Current Projects --- */
.az-projects {
  background: #F7F4EF;
  padding: 100px 60px;
}

.az-projects__intro {
  margin-bottom: 56px;
}

.az-projects__intro h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: #1D1D1D;
  margin: 0 0 14px 0;
}

.az-projects__intro p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #7A7A7A;
  max-width: 560px;
}

.az-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(29,29,29,0.12);
  border: 1px solid rgba(29,29,29,0.12);
  margin-bottom: 52px;
}

.az-project-card {
  background: #F7F4EF;
  padding: 44px 36px;
  transition: background 0.25s;
}

.az-project-card:hover { background: #ede9e1; }

.az-project-card__type {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #6A1E2A;
  display: block;
  margin-bottom: 16px;
}

.az-project-card__title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #1D1D1D;
  margin: 0 0 6px 0;
}

.az-project-card__status {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #7A7A7A;
  margin: 0 0 20px 0;
}

.az-project-card__line {
  width: 36px;
  height: 1px;
  background: #6A1E2A;
  margin-bottom: 20px;
}

.az-project-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #1D1D1D;
  opacity: 0.8;
}

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

/* --- Section 4: About Intro --- */
.az-about {
  background: #F7F4EF;
  padding: 100px 60px;
  border-top: 1px solid rgba(29,29,29,0.10);
}

.az-about__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.az-about__inner h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  color: #1D1D1D;
  margin: 0 0 6px 0;
}

.az-about__inner p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: #1D1D1D;
  margin: 0 0 36px 0;
}

.az-about__photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- Section 5: Latest Writing --- */
.az-writing {
  background: #F7F4EF;
  padding: 100px 60px;
  border-top: 1px solid rgba(29,29,29,0.10);
}

.az-writing__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}

.az-writing__header h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: #1D1D1D;
  margin: 0 0 10px 0;
}

.az-writing__header p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #7A7A7A;
  max-width: 420px;
}

.az-writing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(29,29,29,0.12);
}

.az-writing-item {
  padding: 36px 32px 36px 0;
  border-right: 1px solid rgba(29,29,29,0.12);
  text-decoration: none;
  display: block;
  transition: opacity 0.2s;
}

.az-writing-item:last-child {
  border-right: none;
  padding-right: 0;
}

.az-writing-item:not(:first-child) { padding-left: 32px; }
.az-writing-item:hover { opacity: 0.6; }

.az-writing-item__type {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #6A1E2A;
  display: block;
  margin-bottom: 14px;
}

.az-writing-item__line {
  width: 30px;
  height: 1px;
  background: rgba(29,29,29,0.15);
  margin-bottom: 14px;
}

.az-writing-item__title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #1D1D1D;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.az-writing-item__source {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #7A7A7A;
}

/* --- Section 6: Press Strip --- */
.az-press {
  background: #F7F4EF;
  padding: 80px 60px;
  border-top: 1px solid rgba(29,29,29,0.10);
}

.az-press__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.az-press__inner h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  color: #1D1D1D;
  margin: 0 0 10px 0;
}

.az-press__inner > div > p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #7A7A7A;
  margin-bottom: 32px;
}

.az-press__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.az-press__list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #1D1D1D;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.az-press__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: #6A1E2A;
}

/* --- Section 7: Contact CTA --- */
.az-contact-cta {
  background: #1D1D1D;
  padding: 120px 60px;
  text-align: center;
}

.az-contact-cta h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 58px;
  font-weight: 400;
  color: #F7F4EF;
  margin: 0 0 20px 0;
}

.az-contact-cta__text {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(247,244,239,0.65);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 44px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .az-featured,
  .az-projects,
  .az-about,
  .az-writing,
  .az-press,
  .az-contact-cta { padding: 70px 24px; }

  .az-featured__title { font-size: 40px; }
  .az-projects__grid { grid-template-columns: 1fr; }
  .az-about__inner { grid-template-columns: 1fr; gap: 40px; }
  .az-about__photo { height: 360px; }
  .az-writing__grid { grid-template-columns: 1fr; }
  .az-writing-item { border-right: none; border-bottom: 1px solid rgba(29,29,29,0.12); padding: 28px 0; }
  .az-writing-item:not(:first-child) { padding-left: 0; }
  .az-writing-item:last-child { border-bottom: none; }
  .az-press__inner { grid-template-columns: 1fr; gap: 40px; }
  .az-contact-cta h2 { font-size: 36px; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.az-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #F7F4EF;
  padding: 60px 40px 60px;
  gap: 40px;
}

.az-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.az-hero__name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  color: #1D1D1D;
  letter-spacing: -1px;
  margin: 0 0 20px 0;
}

.az-hero__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #7A7A7A;
  margin: 0 0 28px 0;
}

.az-hero__tagline span {
  color: #6A1E2A;
  padding: 0 6px;
}

.az-hero__intro {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: #1D1D1D;
  opacity: 0.85;
  max-width: 440px;
  margin: 0 0 40px 0;
}

.az-hero__right {
  position: relative;
  overflow: hidden;
}

.az-hero__photo {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(8%);
}

/* Hero Mobile */
@media (max-width: 768px) {
  .az-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 20px;
    gap: 20px;
  }

  .az-hero__photo {
    height: 380px;
    object-position: center top;
  }

  .az-hero__name {
    font-size: 48px;
  }
}

/* ============================================================
   HERO GRID FIX - Elementor Override
   ============================================================ */
.az-hero {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: center !important;
}

.az-hero .az-hero__left,
.az-hero .az-hero__right {
  width: 100% !important;
  float: none !important;
}

/* Mobile - stack vertically */
@media (max-width: 768px) {
  .az-hero {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   FOOTER OVERRIDE FIX
   ============================================================ */
.az-footer {
  display: block !important;
  width: 100% !important;
  background: #1D1D1D !important;
  padding: 40px 60px !important;
}

.az-footer__inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.az-footer__name {
  font-family: 'EB Garamond', Georgia, serif !important;
  font-size: 20px !important;
  color: rgba(247,244,239,0.65) !important;
}

.az-footer__links {
  display: flex !important;
  flex-direction: row !important;
  gap: 32px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.az-footer__links a,
.az-footer__links a:visited,
.az-footer__links a:link {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: rgba(247,244,239,0.4) !important;
  text-decoration: none !important;
}

.az-footer__links a:hover {
  color: #F7F4EF !important;
}

.az-footer__copy {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  color: rgba(247,244,239,0.25) !important;
  letter-spacing: 1px !important;
}

@media (max-width: 768px) {
  .az-footer {
    padding: 36px 24px !important;
  }
  .az-footer__inner {
    flex-direction: column !important;
    text-align: center !important;
  }
  .az-footer__links {
    justify-content: center !important;
  }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Hero Banner */
.az-page-hero {
  background: #1D1D1D;
  padding: 140px 60px 80px;
}

.az-page-hero__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6A1E2A;
  display: block;
  margin-bottom: 20px;
}

.az-page-hero__title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  color: #F7F4EF;
  margin: 0 0 16px 0;
  line-height: 1.05;
}

.az-page-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7A7A7A;
  margin: 0;
}

/* Bio Section */
.az-bio {
  background: #F7F4EF;
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.az-bio__text h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  color: #1D1D1D;
  margin: 0 0 24px 0;
}

.az-bio__text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: #1D1D1D;
  margin: 0 0 20px 0;
}

.az-bio__photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Director's Statement */
.az-statement {
  background: #1D1D1D;
  padding: 100px 60px;
}

.az-statement__inner {
  max-width: 780px;
}

.az-statement h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: #F7F4EF;
  margin: 0 0 36px 0;
}

.az-statement p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.85;
  color: rgba(247,244,239,0.80);
  margin: 0 0 24px 0;
}

/* Timeline */
.az-timeline {
  background: #F7F4EF;
  padding: 100px 60px;
  border-top: 1px solid rgba(29,29,29,0.10);
}

.az-timeline h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: #1D1D1D;
  margin: 0 0 56px 0;
}

.az-timeline__items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(29,29,29,0.15);
  padding-left: 0;
  max-width: 800px;
}

.az-timeline__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 36px 0 36px 40px;
  border-bottom: 1px solid rgba(29,29,29,0.08);
  position: relative;
}

.az-timeline__item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 44px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6A1E2A;
}

.az-timeline__year {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #6A1E2A;
  padding-top: 2px;
}

.az-timeline__content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1D1D1D;
  margin: 0 0 10px 0;
}

.az-timeline__content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #7A7A7A;
  margin: 0;
}

/* Education */
.az-education {
  background: #F7F4EF;
  padding: 80px 60px;
  border-top: 1px solid rgba(29,29,29,0.10);
}

.az-education h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: #1D1D1D;
  margin: 0 0 48px 0;
}

.az-education__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(29,29,29,0.10);
  border: 1px solid rgba(29,29,29,0.10);
  max-width: 800px;
}

.az-education__item {
  background: #F7F4EF;
  padding: 36px 32px;
}

.az-education__item h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: #1D1D1D;
  margin: 0 0 10px 0;
}

.az-education__item p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #7A7A7A;
  margin: 0;
}

/* Areas of Work */
.az-areas {
  background: #F7F4EF;
  padding: 80px 60px;
  border-top: 1px solid rgba(29,29,29,0.10);
}

.az-areas h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: #1D1D1D;
  margin: 0 0 40px 0;
}

.az-areas__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.az-areas__list li {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1D1D1D;
  border: 1px solid rgba(29,29,29,0.25);
  padding: 10px 20px;
}

/* About Page Responsive */
@media (max-width: 900px) {
  .az-page-hero { padding: 120px 24px 60px; }
  .az-bio { grid-template-columns: 1fr; gap: 40px; padding: 70px 24px; }
  .az-bio__photo { height: 380px; }
  .az-statement { padding: 70px 24px; }
  .az-timeline { padding: 70px 24px; }
  .az-timeline__item { grid-template-columns: 100px 1fr; gap: 20px; }
  .az-education { padding: 70px 24px; }
  .az-education__grid { grid-template-columns: 1fr; }
  .az-areas { padding: 70px 24px; }
}

/* ============================================================
   INNER PAGES - FILMOGRAPHY, PROJECTS, WRITING, PRESS, CONTACT
   ============================================================ */

/* --- Shared Page Hero --- */
.az-page-hero {
  background: #1D1D1D;
  padding: 140px 60px 80px;
}

.az-page-hero__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6A1E2A;
  display: block;
  margin-bottom: 20px;
}

.az-page-hero__title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  color: #F7F4EF;
  margin: 0 0 16px 0;
  line-height: 1.05;
}

.az-page-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7A7A7A;
  margin: 0;
}

/* ============================================================
   FILMOGRAPHY PAGE
   ============================================================ */

.az-filmography {
  background: #F7F4EF;
  padding: 100px 60px;
}

.az-filmography__intro {
  margin-bottom: 80px;
  max-width: 700px;
}

.az-filmography__intro p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: #7A7A7A;
  margin: 0 0 16px 0;
}

/* Film Category Section */
.az-film-category {
  margin-bottom: 100px;
}

.az-film-category__title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  color: #1D1D1D;
  margin: 0 0 48px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(29,29,29,0.10);
}

.az-film-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(29,29,29,0.10);
}

.az-film-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.az-film-item__title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: #1D1D1D;
  margin: 0 0 12px 0;
}

.az-film-item__meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6A1E2A;
  margin: 0 0 20px 0;
}

.az-film-item__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #1D1D1D;
  margin: 0;
  opacity: 0.85;
}

.az-film-item__photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* External Links */
.az-external-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.az-external-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6A1E2A;
  text-decoration: none;
  border-bottom: 1px solid #6A1E2A;
  transition: color 0.2s;
}

.az-external-link:hover {
  color: #1D1D1D;
  border-color: #1D1D1D;
}

/* Filmography Responsive */
@media (max-width: 900px) {
  .az-page-hero { padding: 120px 24px 60px; }
  .az-filmography { padding: 70px 24px; }
  .az-film-item { grid-template-columns: 1fr; gap: 40px; }
  .az-film-item__photo { height: 300px; }
}

@media (max-width: 600px) {
  .az-page-hero__title { font-size: 40px; }
  .az-page-hero__subtitle { font-size: 12px; }
}

/* ============================================================
   MOBILE PADDING FIX - ALL SECTIONS
   ============================================================ */

@media (max-width: 768px) {
  /* Home Page Sections */
  .az-featured,
  .az-projects,
  .az-about,
  .az-writing,
  .az-press,
  .az-contact-cta {
    padding: 70px 20px !important;
  }

  /* Page Hero */
  .az-page-hero {
    padding: 100px 20px 60px !important;
  }

  .az-page-hero__title {
    font-size: 36px !important;
  }

  /* Bio & Timeline */
  .az-bio {
    padding: 70px 20px !important;
  }

  .az-statement {
    padding: 70px 20px !important;
  }

  .az-timeline {
    padding: 70px 20px !important;
  }

  .az-education {
    padding: 70px 20px !important;
  }

  .az-areas {
    padding: 70px 20px !important;
  }

  /* Filmography */
  .az-filmography {
    padding: 70px 20px !important;
  }

  /* Writing Page */
  .az-writing-posts {
    padding: 60px 20px !important;
  }

  /* All grids on mobile */
  .az-projects__grid,
  .az-writing__grid,
  .az-education__grid {
    grid-template-columns: 1fr !important;
  }

  /* Film items */
  .az-film-item {
    grid-template-columns: 1fr !important;
  }

  /* Writing items */
  .az-writing-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(29,29,29,0.12) !important;
    padding: 28px 0 !important;
  }

  .az-writing-item:not(:first-child) {
    padding-left: 0 !important;
  }

  /* Press section */
  .az-press__inner {
    grid-template-columns: 1fr !important;
  }

  /* About intro grid */
  .az-about__inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 480px) {
  /* Extra small screens - more padding reduction */
  .az-featured,
  .az-projects,
  .az-about,
  .az-writing,
  .az-press,
  .az-contact-cta,
  .az-bio,
  .az-statement,
  .az-timeline,
  .az-education,
  .az-areas,
  .az-filmography,
  .az-writing-posts {
    padding: 50px 16px !important;
  }

  .az-page-hero {
    padding: 80px 16px 50px !important;
  }

  .az-page-hero__title {
    font-size: 28px !important;
  }

  .az-contact-cta h2 {
    font-size: 28px !important;
  }

  .az-featured__title {
    font-size: 28px !important;
  }

  h2 {
    font-size: 24px !important;
  }
}