/*
Theme Name: Portfolio — Direct Response
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A warm editorial portfolio theme for D2C copywriters and creative strategists. Built for spec work presentation with a direct response aesthetic.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: portfolio-dr
Tags: portfolio, custom-colors, custom-menu, featured-images, full-width-template, responsive-layout, theme-options
*/

/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */
:root {
  --bg:             #F5F0E8;
  --text-primary:   #1A1814;
  --text-secondary: #6B6560;
  --accent:         #C4A882;
  --accent-dark:    #A8895F;
  --white:          #FFFFFF;
  --border:         #E8E0D0;
  --card-shadow:    0 2px 16px rgba(26,24,20,0.07);
  --card-shadow-hover: 0 8px 32px rgba(26,24,20,0.13);
  --max-width:      1200px;
  --content-width:  740px;
  --radius:         6px;
  --transition:     0.2s ease;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul, ol {
  list-style: none;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}

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

p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* =========================================
   LAYOUT
   ========================================= */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--narrow {
  max-width: var(--content-width);
}

.section {
  padding: 80px 0;
}

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

.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1A1814;
  margin-bottom: 0.75rem;
}

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

.section-intro {
  font-size: 1.1rem;
  max-width: 560px;
}

/* =========================================
   SITE HEADER & NAVIGATION
   ========================================= */
.site-header {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.site-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.site-logo:hover {
  color: var(--text-primary);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-nav a {
  font-size: 1rem;
  font-weight: 700;
  color: #1A1814;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}

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

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  color: var(--text-primary);
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after {
  width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  min-height: 48px;
  line-height: 1.4;
}

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

.btn--primary:hover {
  background-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,24,20,0.2);
}

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

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

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

.btn--accent:hover {
  background-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* =========================================
   CATEGORY TAG
   ========================================= */
.category-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1814;
  background-color: rgba(196,168,130,0.12);
  padding: 3px 10px;
  border-radius: 2px;
  border: 1px solid rgba(26,24,20,0.35);
}

/* =========================================
   HOME PAGE — HERO
   ========================================= */
.hero {
  padding: 100px 0 80px;
  text-align: left;
}

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1A1814;
  margin-bottom: 1.5rem;
  display: block;
}

.hero__headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero__headline em {
  font-style: italic;
  color: var(--accent-dark);
}

.hero__sub {
  font-size: 1.3rem;
  color: #1A1814;
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero__divider {
  width: 48px;
  height: 2px;
  background-color: var(--accent);
  margin-bottom: 3rem;
}

/* =========================================
   HOME PAGE — FEATURED WORK
   ========================================= */
.featured-work {
  padding: 80px 0;
  background-color: var(--white);
}

.featured-work__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.featured-work__link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A1814;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* =========================================
   PROJECT GRID
   ========================================= */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.project-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.project-card__thumbnail {
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--border);
  position: relative;
}

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

.project-card:hover .project-card__thumbnail img {
  transform: scale(1.03);
}

.project-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--border) 0%, var(--bg) 100%);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.project-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-card__brand {
  font-size: 0.72rem;
  color: #1A1814;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.project-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.project-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.project-card__cta {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1A1814;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.project-card__cta:hover {
  color: var(--accent);
}

.project-card__cta::after {
  content: '→';
  font-size: 0.9em;
}

/* =========================================
   HOME PAGE — ABOUT TEASER
   ========================================= */
.about-teaser {
  padding: 80px 0;
}

.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-teaser__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1A1814;
  margin-bottom: 0.75rem;
  display: block;
}

.about-teaser__photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--border) 0%, var(--bg) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

/* =========================================
   HOME PAGE — CONTACT NUDGE
   ========================================= */
.contact-nudge {
  padding: 60px 0;
  background-color: var(--text-primary);
  text-align: center;
}

.contact-nudge h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.contact-nudge p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}

.contact-nudge a.email-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================
   WORK PAGE — FILTER
   ========================================= */
.work-page-header {
  padding: 60px 0 40px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 40px;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.filter-btn.active {
  background-color: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--white);
}

.work-grid-section {
  padding: 40px 0 80px;
}

.no-results-msg {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
  font-style: italic;
  display: none;
}

/* =========================================
   SINGLE PROJECT PAGE
   ========================================= */
.project-hero {
  height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--border) 0%, #E8DFD0 100%);
  position: relative;
}

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

.project-hero__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8DFD0 0%, var(--border) 100%);
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-meta-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.project-meta-bar__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.project-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.project-meta-item__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.project-meta-item__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.project-meta-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border);
}

.project-content-area {
  padding: 60px 0;
}

.project-content-area h2 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}

.project-content-area h2:first-child {
  margin-top: 0;
}

.project-overview {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.project-overview__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1814;
  margin-bottom: 0.75rem;
  display: block;
}

.project-work-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1814;
  margin-bottom: 1.5rem;
  display: block;
  padding-top: 0;
}

/* Block Editor content in project */
.project-work-content {
  font-size: 1rem;
  line-height: 1.75;
}

.project-work-content h2,
.project-work-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.project-work-content p {
  margin-bottom: 1.25rem;
}

.project-work-content img {
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  margin: 1.5rem 0;
}

/* Next Project Navigation */
.project-nav {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.project-nav__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: block;
}

.project-nav__link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.project-nav__link::after {
  content: '→';
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: transform var(--transition);
}

.project-nav__link:hover {
  color: var(--accent-dark);
}

.project-nav__link:hover::after {
  transform: translateX(4px);
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-hero {
  padding: 80px 0;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.about-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--border) 0%, #E8DFD0 100%);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: sticky;
  top: 90px;
}

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

.about-content__headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.about-content__headline em {
  font-style: italic;
  color: var(--accent-dark);
}

.about-content__divider {
  width: 40px;
  height: 2px;
  background-color: var(--accent);
  margin: 1.5rem 0;
}

.about-bio {
  margin-bottom: 2rem;
}

/* What I Bring Section */
.what-i-bring {
  padding: 80px 0;
  background-color: var(--white);
}

.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.value-prop {
  padding: 0;
}

.value-prop__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.value-prop__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.value-prop__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

/* About CTA */
.about-cta {
  padding: 60px 0;
  text-align: center;
}

.about-cta h2 {
  margin-bottom: 0.75rem;
}

.about-cta p {
  margin-bottom: 1.5rem;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-page {
  padding: 80px 0;
}

.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1A1814;
  margin-bottom: 1rem;
  display: block;
}

.contact-info__intro {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-info__email-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 0.4rem;
}

.contact-info__email {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact Form */
.contact-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn {
  width: 100%;
}

/* Form Success/Error */
.form-notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-notice--success {
  background-color: rgba(196,168,130,0.15);
  border: 1px solid rgba(196,168,130,0.4);
  color: var(--accent-dark);
}

.form-notice--error {
  background-color: rgba(220,53,69,0.08);
  border: 1px solid rgba(220,53,69,0.25);
  color: #b02030;
}

/* =========================================
   PAGE HEADER (Generic)
   ========================================= */
.page-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}

.page-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* =========================================
   SITE FOOTER
   ========================================= */
.site-footer {
  background-color: var(--text-primary);
  padding: 40px 0;
  margin-top: auto;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

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

.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* =========================================
   GUTENBERG / BLOCK EDITOR STYLES
   ========================================= */
.wp-block-image img {
  border-radius: var(--radius);
}

.wp-block-separator {
  border-color: var(--border);
  opacity: 1;
}

.wp-block-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--text-secondary);
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.text-center { text-align: center; }
.text-accent  { color: var(--accent-dark); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* =========================================
   RESPONSIVE — TABLET (max 1024px)
   ========================================= */
@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }

  .about-teaser__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
  }

  .contact-page__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }

  .value-props {
    gap: 2rem;
  }
}

/* =========================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================= */
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background-color: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    z-index: 99;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .primary-nav li {
    width: 100%;
  }

  .primary-nav a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  /* Project grid */
  .project-grid {
    grid-template-columns: 1fr;
  }

  /* About page */
  .about-hero__inner,
  .about-teaser__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo {
    position: static;
    aspect-ratio: 3/2;
  }

  /* Contact page */
  .contact-page__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Value props */
  .value-props {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Featured work header */
  .featured-work__header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Footer */
  .site-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  /* Hero */
  .hero {
    padding: 64px 0 48px;
  }

  /* Project page */
  .project-hero {
    height: 260px;
  }

  .project-meta-bar__inner {
    gap: 1rem;
  }

  .project-meta-divider {
    display: none;
  }

  /* Contact form */
  .contact-form {
    padding: 1.75rem 1.25rem;
  }
}

/* =========================================
   PRINT
   ========================================= */
@media print {
  .site-header,
  .site-footer,
  .filter-bar,
  .btn {
    display: none;
  }
}
