/* ============================================
   Orly Backstrom Portfolio — Shared Stylesheet
   Edit this file to update styles site-wide
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  --color-rose: #b58a87;          /* Header background, accents */
  --color-rose-light: #c9a3a0;    /* Lighter accent */
  --color-cream: #f5efe5;         /* Page background - warm cream */
  --color-cream-light: #ffffff;   /* Content box - white for contrast */
  --color-ink: #1a1a1a;           /* Body text */
  --color-ink-soft: #333333;      /* Secondary text */
  --color-muted: #b58a87;         /* Inactive tabs use rose */

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1100px;
  --header-height: 90px;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ---------- Header / Navigation ---------- */
.site-header {
  background: var(--color-rose);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 3rem;
}

.site-header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.01em;
}

/* Hamburger button - hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 110;
}

.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  position: absolute;
  left: 9px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.nav-toggle-bar:nth-child(1) { top: 14px; }
.nav-toggle-bar:nth-child(2) { top: 21px; }
.nav-toggle-bar:nth-child(3) { top: 28px; }

.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .nav-toggle-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  gap: 3rem;
}

.site-nav a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  position: relative;
  transition: opacity 0.2s ease;
}

.site-nav a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: #ffffff;
  transition: width 0.25s ease, left 0.25s ease;
}

.site-nav a:hover::before {
  width: 100%;
  left: 0;
}

.site-nav a.active {
  font-weight: 500;
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: #ffffff;
}

/* ---------- Page Layout ---------- */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
}

.page-content {
  background: #ffffff;
  width: 100%;
  max-width: 820px;
  padding: 2rem 4rem 3rem;
  min-height: calc(100vh - var(--header-height));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.page-content.wide {
  max-width: 1100px;
}

.page-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.page-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-rose);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

/* ---------- Home / Hero ---------- */
.hero {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  background: #ffffff;
  border-top: 4px solid var(--color-rose);
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--color-rose);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-name {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--color-ink-soft);
  margin-bottom: 3rem;
  white-space: nowrap;
}

.hero-tagline .divider {
  color: var(--color-rose);
  margin: 0 0.75rem;
}

.hero-quote {
  border-left: 2px solid var(--color-rose);
  padding-left: 1.5rem;
  margin-bottom: 3rem;
  max-width: 500px;
}

.hero-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--color-ink);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-ink-soft);
}

.hero-meta .divider {
  color: var(--color-rose);
}

.hero-meta a {
  color: var(--color-rose);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.hero-meta a:hover {
  color: #8e6360;
}

.hero-previously {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5dcd5;
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  letter-spacing: 0.02em;
}

.hero-previously-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-right: 0.85rem;
}

.hero-previously .divider {
  color: var(--color-rose);
  margin: 0 0.5rem;
}

.hero-portrait {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

/* ---------- About Page ---------- */
.about-intro {
  max-width: 580px;
}

.about-intro p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.9rem;
  color: var(--color-ink);
}

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

/* ---------- Tabs ---------- */
.tabs {
  max-width: 580px;
  margin: 1.75rem 0 0;
}

.tab-buttons {
  display: flex;
  gap: 3rem;
  border-bottom: 1px solid #e5dcd5;
  margin-bottom: 1.5rem;
}

.tab-button {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-muted);
  padding: 0.6rem 0;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.tab-button:hover {
  color: var(--color-ink);
}

.tab-button.active {
  color: var(--color-ink);
  font-weight: 500;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--color-rose);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.tab-panel p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-ink);
}

/* "What Sets Me Apart" — bordered sections */
.apart-section {
  border-left: 2px solid var(--color-rose-light);
  padding: 0.4rem 0 0.4rem 1.5rem;
  margin-bottom: 1rem;
}

.apart-section:last-child {
  margin-bottom: 0;
}

.apart-section h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-ink);
  margin-bottom: 0.4rem;
}

.apart-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-ink);
}

/* Experience — Timeline */
.timeline-section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 1rem;
  margin-top: 0;
}

.timeline-section-label:not(:first-child) {
  margin-top: 1.5rem;
}

.timeline {
  position: relative;
  padding-left: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 20px 1fr;
  gap: 1.25rem;
  padding-bottom: 1.1rem;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-date {
  font-size: 0.8rem;
  color: var(--color-rose);
  padding-top: 0.15rem;
  letter-spacing: 0.02em;
}

.timeline-marker {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 0.35rem;
}

.timeline-marker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-rose-light);
  z-index: 1;
}

.timeline-marker::after {
  content: '';
  position: absolute;
  top: 0.95rem;
  bottom: -1.1rem;
  width: 1px;
  background: #e5dcd5;
}

.timeline-item:last-child .timeline-marker::after {
  display: none;
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: 0.1rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.timeline-content p {
  font-size: 0.8rem;
  color: var(--color-ink-soft);
  margin-bottom: 0.1rem;
  line-height: 1.4;
}

.timeline-content .detail {
  color: var(--color-rose);
  font-size: 0.75rem;
}

/* ---------- Recommendations Page ---------- */
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 100%;
}

.recommendation-card {
  background: #ffffff;
  border: 1px solid #ede2d8;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.recommendation-card:hover {
  border-color: var(--color-rose);
  transform: translateY(-2px);
}

.recommendation-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--color-ink);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  position: relative;
  padding-top: 1.75rem;
}

.recommendation-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: -0.25rem;
  color: var(--color-rose);
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.85;
}

.recommendation-divider {
  border: none;
  border-top: 1px solid #e5dcd5;
  margin: 0 0 1rem;
}

.recommendation-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-rose);
  margin-bottom: 0.25rem;
}

.recommendation-role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-ink-soft);
  line-height: 1.4;
}

/* ---------- Recognition Page ---------- */
.recognition-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 0.5rem;
}

.recognition-heading {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.recognition-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-rose);
  margin-top: 1rem;
}

.recognition-intro {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-ink-soft);
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.awards-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.award-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.1rem 1rem;
  margin: 0 -1rem;
  border-bottom: 1px solid #ede2d8;
  transition: background-color 0.2s ease;
}

.award-item:first-child {
  border-top: 1px solid #ede2d8;
}

.award-item:hover {
  background-color: rgba(181, 138, 135, 0.06);
}

.award-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-rose);
  letter-spacing: 0;
  line-height: 1;
}

.award-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ink);
}

.award-company {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-rose);
  text-align: right;
}

/* ---------- Contact Page ---------- */
.contact-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  padding: 3rem 2rem;
}

.contact-content {
  background: #ffffff;
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 5rem 3rem;
  border-top: 4px solid var(--color-rose);
}

.contact-heading {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1;
}

.contact-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-rose);
  margin: 1.5rem auto 2.5rem;
}

.contact-links {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  color: var(--color-rose);
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-rose);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.contact-link:hover {
  color: #8e6360;
  border-bottom-color: #8e6360;
  transform: translateY(-1px);
}

/* ---------- Writing Page ---------- */
.writing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.writing-card {
  background: #ffffff;
  border: 1px solid #ede2d8;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.writing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.writing-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #f0e8de;
}

.writing-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-ink);
  padding: 1rem 1rem 1.25rem;
  margin: 0;
  text-align: center;
  text-wrap: pretty;
  hyphens: auto;
}

/* ---------- Featured Work Pages ---------- */
.featured-work-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.75rem 2rem 3rem;
}

.fw-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 1rem;
}

/* Tab pills (navigation between projects) */
.fw-tabs {
  background: var(--color-cream-light);
  padding: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.fw-tab {
  flex: 1;
  min-width: 180px;
  padding: 0.7rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-rose);
  background: #ffffff;
  border: 1.5px solid var(--color-rose);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.fw-tab:hover {
  background: rgba(181, 138, 135, 0.08);
}

.fw-tab.active {
  background: var(--color-rose);
  color: #ffffff;
  border-color: var(--color-rose);
}

/* Project header block */
.fw-header {
  background: var(--color-cream-light);
  padding: 1.75rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.fw-header-title-block .fw-eyebrow {
  margin-bottom: 0.75rem;
}

.fw-header h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
  max-width: 600px;
}

.fw-header h1::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-rose);
  margin: 1rem 0 0;
}

.fw-header-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  line-height: 1.45;
  max-width: 540px;
}

.fw-badges {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

.fw-badge {
  background: rgba(181, 138, 135, 0.12);
  color: var(--color-ink);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}

.fw-badge.solid {
  background: rgba(181, 138, 135, 0.2);
}

/* Three-column body (Opportunity / Approach / Impact) */
.fw-body {
  background: var(--color-cream-light);
  padding: 1.75rem 2.25rem 2.25rem;
  border-top: 1px solid #ede2d8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.fw-section h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 0.75rem;
}

.fw-section p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-ink);
  margin-bottom: 1rem;
}

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

/* Impact stats */
.fw-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  margin-top: 0.9rem;
}

.fw-stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1;
}

.fw-stat-label {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--color-ink-soft);
  padding-top: 0.25rem;
}

/* Earned Coverage grid */
.fw-coverage {
  margin-top: 1.75rem;
}

.fw-section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.fw-section-label::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--color-rose);
  display: inline-block;
}

.fw-coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

.fw-coverage-card {
  background: #ffffff;
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.fw-coverage-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.fw-coverage-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #f0e8de;
  flex-shrink: 0;
}

.fw-coverage-text {
  padding: 0.85rem 0.85rem 1rem;
  flex-grow: 1;
}

.fw-coverage-outlet {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-rose);
  background: rgba(181, 138, 135, 0.12);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.fw-coverage-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-ink);
  margin: 0;
  text-wrap: pretty;
  hyphens: auto;
}

/* Notable mention callout */
.fw-notable {
  margin-top: 1.25rem;
  border-left: 3px solid var(--color-rose);
  background: rgba(255, 255, 255, 0.6);
  padding: 0.85rem 1.1rem;
}

/* Featured single article (one prominent press hit) */
.fw-featured-coverage {
  margin-top: 1.75rem;
}

.fw-featured-article {
  background: #ffffff;
  border: 1px solid #ede2d8;
  max-width: 520px;
  margin: 0 auto;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fw-featured-article:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.fw-featured-article img {
  width: 100%;
  display: block;
}

.fw-featured-article-body {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--color-rose);
}

.fw-featured-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-ink);
  margin: 0 0 0.85rem;
}

.fw-featured-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-rose);
  letter-spacing: 0.02em;
}

/* Owned Content & Channels section */
.fw-owned {
  margin-top: 1.75rem;
}

.fw-owned-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.fw-owned-card {
  background: #ffffff;
  border: 1px solid #ede2d8;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.fw-owned-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.fw-owned-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--color-cream-light);
  flex-shrink: 0;
}

.fw-owned-text {
  padding: 0.85rem 1.1rem 1rem;
  flex-grow: 1;
}

.fw-owned-outlet {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 0.3rem;
}

.fw-owned-title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-ink);
  margin: 0;
  text-wrap: pretty;
}

/* Pill tag lists (e.g. Paid Brand Partnerships, National Media Coverage) */
.fw-tag-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.fw-tag-box {
  background: var(--color-cream-light);
  padding: 1.1rem 1.25rem 1.25rem;
}

.fw-tag-box-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 0.85rem;
}

.fw-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.fw-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: #ffffff;
  border: 1px solid #ede2d8;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-ink);
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fw-tag:hover {
  border-color: var(--color-rose);
  color: var(--color-rose);
  transform: translateY(-1px);
}

/* Non-clickable static card variant (same look as .fw-combined-card but no hover) */
.fw-combined-static {
  background: #ffffff;
  border: 1px solid #ede2d8;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Earned Coverage & Owned Content (combined, 3-card grid with descriptions) */
.fw-combined {
  margin-top: 1.75rem;
}

.fw-combined-intro {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-ink-soft);
  margin-bottom: 1.25rem;
  max-width: 900px;
}

.fw-combined-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.fw-combined-card {
  background: #ffffff;
  border: 1px solid #ede2d8;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.fw-combined-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.fw-combined-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
  background: var(--color-cream-light);
  flex-shrink: 0;
}

/* Video variant - fills entire thumbnail with play button overlay */
.fw-combined-card.is-video {
  position: relative;
}

.fw-combined-card.is-video .fw-combined-thumb {
  object-fit: cover;
  background: #000;
}

/* Play button - centered over the thumbnail (top half of card) */
.fw-combined-card.is-video .fw-combined-thumb-wrap {
  position: relative;
}

.fw-combined-card.is-video .fw-combined-thumb-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
  pointer-events: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.fw-combined-card.is-video .fw-combined-thumb-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #ffffff;
  z-index: 3;
  pointer-events: none;
}

.fw-combined-card.is-video:hover .fw-combined-thumb-wrap::before {
  background: rgba(0, 0, 0, 0.75);
  transform: translate(-50%, -50%) scale(1.05);
}

.fw-combined-text {
  padding: 0.85rem 1.1rem 1rem;
  flex-grow: 1;
}

.fw-combined-type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.fw-combined-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-rose);
  background: rgba(181, 138, 135, 0.12);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.fw-combined-title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-ink);
  margin: 0 0 0.5rem;
  text-wrap: pretty;
}

.fw-combined-desc {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-ink-soft);
  margin: 0;
}

/* Awards & Recognition section */
.fw-awards {
  margin-top: 1.75rem;
}

.fw-awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.fw-award-card {
  background: #ffffff;
  border: 1.5px solid rgba(181, 138, 135, 0.3);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

.fw-award-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: var(--color-rose);
}

.fw-award-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #f0e8de;
  flex-shrink: 0;
}

.fw-award-text {
  padding: 0.9rem 1.1rem 1rem;
  flex-grow: 1;
}

.fw-award-outlet {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-rose);
  background: rgba(181, 138, 135, 0.12);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.fw-award-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-ink);
  margin: 0;
  text-wrap: pretty;
}

.fw-notable-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.25rem;
}

.fw-notable-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-ink-soft);
}

.fw-notable-text a {
  color: var(--color-rose);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fw-notable-text a:hover {
  color: var(--color-ink);
}

/* Podcast section */
.fw-podcasts {
  margin-top: 1.75rem;
}

.fw-podcasts-intro {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  margin-bottom: 1rem;
}

.fw-podcasts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

.fw-podcast-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fw-podcast-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.fw-podcast-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #f0e8de;
  flex-shrink: 0;
}

.fw-podcast-text {
  padding: 0.7rem 0.9rem 0.9rem;
  flex-grow: 1;
}

.fw-podcast-type {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 0.25rem;
}

.fw-podcast-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-ink);
  margin: 0;
  text-wrap: pretty;
  hyphens: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) and (min-width: 901px) {
  .writing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 1.5rem;
    height: 70px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-rose);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    padding-top: 70px;
    z-index: 105;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1.25rem;
    padding: 0.5rem 0;
  }

  .site-nav a.active::after {
    bottom: -4px;
  }

  .site-logo {
    font-size: 1.3rem;
    z-index: 110;
    position: relative;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    margin: 1.5rem auto;
    text-align: center;
  }

  .hero-name {
    font-size: 3.5rem;
  }

  .hero-tagline {
    white-space: normal;
    font-size: 0.95rem;
  }

  .hero-quote {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-portrait {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    order: -1;
  }

  .page-content {
    padding: 2.5rem 1.5rem 4rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .tab-buttons {
    gap: 1.5rem;
    overflow-x: auto;
  }

  .tab-button {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .timeline-item {
    grid-template-columns: 90px 16px 1fr;
    gap: 1rem;
  }

  .timeline-date {
    font-size: 0.85rem;
  }

  .timeline-content h4 {
    font-size: 1.25rem;
  }

  .recommendations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .recommendation-card {
    padding: 1.5rem 1.25rem;
  }

  .recognition-heading {
    font-size: 2rem;
  }

  .award-item {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

  .award-company {
    grid-column: 2;
    text-align: left;
    font-size: 0.8rem;
  }

  .contact-heading {
    font-size: 2.5rem;
  }

  .contact-links {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .writing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .featured-work-page {
    padding: 2rem 1.25rem 3rem;
  }

  .fw-tabs {
    padding: 0.75rem;
  }

  .fw-tab {
    min-width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }

  .fw-header {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .fw-badges {
    align-items: flex-start;
  }

  .fw-header h1 {
    font-size: 1.65rem;
  }

  .fw-body {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

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

  .fw-awards-grid {
    grid-template-columns: 1fr;
  }

  .fw-owned-grid {
    grid-template-columns: 1fr;
  }

  .fw-combined-grid {
    grid-template-columns: 1fr;
  }

  .fw-tag-columns {
    grid-template-columns: 1fr;
  }

  .fw-podcasts-grid {
    grid-template-columns: 1fr;
  }
}
