/*
Theme Name: SRJ Studio
Theme URI: https://srjstudio.com
Author: SRJ Studio
Author URI: https://srjstudio.com
Description: A warm, editorial brand and web design studio theme. Mobile-first, human-centered, organic.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: srj-studio
Tags: portfolio, one-page, custom-colors, custom-logo, featured-images, full-width-template
*/

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

:root {
  --ink:        #1c1818;
  --ink-light:  #3d3636;
  --blush:      #f0dada;
  --blush-deep: #e2c0c0;
  --blush-dark: #c49898;
  --petal:      #f7ecec;
  --petal-warm: #f9f0ee;
  --cream:      #faf6f3;
  --warm-mid:   #e8ddd8;
  --serif:      'Playfair Display', Georgia, serif;
  --script:     'Dancing Script', cursive;
  --sans:       'Lato', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

p { line-height: 1.75; }

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 { margin-bottom: 0.65em; margin-top: 1.5em; }

.entry-content p { margin-bottom: 1.2em; }
.entry-content ul, .entry-content ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.entry-content li { margin-bottom: 0.4em; }
.entry-content a { color: var(--blush-dark); border-bottom: 1px solid var(--blush-deep); }
.entry-content a:hover { color: var(--ink); }
.entry-content blockquote {
  border-left: 2px solid var(--blush-deep);
  padding-left: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15em;
  color: var(--ink);
  margin: 1.5em 0;
}

/* ─────────────────────────────────────────────
   UTILITY CLASSES
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  font-family: var(--script);
  font-size: 18px;
  color: var(--blush-dark);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

.section-title em { font-style: italic; color: var(--blush-dark); }

.section-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.8;
}

.section-pad { padding: 72px 0; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  text-decoration: none;
}
.btn-pill:hover { background: var(--blush-dark); color: var(--cream); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--blush-deep);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--blush-dark); color: var(--blush-dark); }

.btn-text {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--blush-dark);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-text:hover { color: var(--blush-dark); }

/* ─────────────────────────────────────────────
   SITE HEADER / NAV
───────────────────────────────────────────── */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--blush-deep);
  position: sticky;
  top: 0;
  z-index: 99;
}

.site-header .container {
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding .site-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0;
}
.site-branding .site-title a { color: inherit; }
.site-branding .custom-logo { max-height: 40px; width: auto; }

/* primary nav — hidden on mobile, shown desktop */
.primary-navigation { display: none; }

.primary-navigation ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.primary-navigation a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color 0.2s;
}
.primary-navigation a:hover { color: var(--blush-dark); }

.primary-navigation .menu-item-cta a {
  border: 1px solid var(--ink);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}
.primary-navigation .menu-item-cta a:hover {
  background: var(--ink);
  color: var(--cream);
}

/* hamburger */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 98;
  padding: 100px 40px 60px;
  flex-direction: column;
  justify-content: center;
}
.mobile-nav.is-open { display: flex; }

.mobile-nav ul { display: flex; flex-direction: column; gap: 28px; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--blush-dark); }

.mobile-nav-footer {
  margin-top: auto;
  font-size: 12px;
  font-weight: 300;
  color: var(--blush-dark);
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .primary-navigation { display: block; }
  .menu-toggle { display: none; }
}

/* ─────────────────────────────────────────────
   HERO — front-page only
───────────────────────────────────────────── */
.hero {
  background: var(--petal-warm);
  position: relative;
  overflow: hidden;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-watermark {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(140px, 42vw, 380px);
  font-weight: 400;
  color: var(--blush);
  line-height: 1;
  letter-spacing: -0.03em;
  top: 50%;
  left: 50%;
  transform: translate(-58%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  opacity: 0.55;
}

.hero .container {
  padding-top: 64px;
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--script);
  font-size: 19px;
  color: var(--blush-dark);
  margin-bottom: 16px;
  display: block;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 11vw, 72px);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; color: var(--blush-dark); }

.hero-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 38px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-photo-card {
  align-self: flex-end;
  width: 76%;
  max-width: 300px;
  position: relative;
}

.hero-photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 8px 60px 8px 60px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--blush-deep) 0%, var(--blush) 60%, var(--petal) 100%);
}

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

.hero-annotation {
  position: absolute;
  top: 22px;
  right: -10px;
  background: var(--cream);
  border: 1px solid var(--blush-deep);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: var(--script);
  font-size: 14px;
  color: var(--blush-dark);
  white-space: nowrap;
  z-index: 4;
  box-shadow: 2px 3px 12px rgba(0,0,0,0.06);
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 80px;
  height: 80px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 12s linear infinite;
  z-index: 3;
}
.hero-badge svg { width: 80px; height: 80px; }

@keyframes spin-slow { to { transform: rotate(360deg); } }

@media (min-width: 640px) {
  .hero .container {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 56px;
  }
  .hero-text-block { flex: 1; min-width: 280px; }
  .hero-photo-card { margin: 0; flex-shrink: 0; width: 280px; align-self: auto; }
}

@media (min-width: 1024px) {
  .hero-watermark { font-size: 380px; }
  .hero-photo-card { width: 320px; }
}

/* ─────────────────────────────────────────────
   MARQUEE
───────────────────────────────────────────── */
.marquee-strip {
  background: var(--blush);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--blush-deep);
  border-bottom: 1px solid var(--blush-deep);
}
.marquee-track {
  display: inline-flex;
  animation: scroll-left 22s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-light);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.marquee-track span::after {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blush-dark);
  flex-shrink: 0;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   IS THIS YOU
───────────────────────────────────────────── */
.is-this-you { background: var(--blush); }

.isthisyou-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.isthisyou-item {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.5;
  border: 1px solid var(--blush-deep);
}

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.services-section { background: var(--cream); }

.services-intro { margin-bottom: 48px; }

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--petal);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.service-card:nth-child(1) { border-radius: 4px 40px 4px 4px; }
.service-card:nth-child(2) { border-radius: 40px 4px 4px 4px; }
.service-card:nth-child(3) { border-radius: 4px 4px 40px 4px; }
.service-card:hover { background: var(--blush); }

.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  color: var(--blush-deep);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.service-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 24px;
}
.service-ghost {
  position: absolute;
  bottom: -16px;
  right: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 110px;
  color: var(--blush-deep);
  line-height: 1;
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s;
}
.service-card:hover .service-ghost { opacity: 0.65; }

@media (min-width: 768px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .service-card { height: 100%; }
}

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.about-section { background: var(--petal-warm); }

.about-layout {
  display: flex;
  flex-direction: column;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--blush-deep) 0%, var(--blush) 50%, var(--petal) 100%);
  position: relative;
  overflow: hidden;
}
.about-photo img { width:100%; height:100%; object-fit:cover; }
.about-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(250,246,243,0.88);
  padding: 12px 20px;
  font-family: var(--script);
  font-size: 15px;
  color: var(--blush-dark);
}

.about-text { padding: 52px 0 64px; }

.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  border-left: 2px solid var(--blush-deep);
  padding-left: 20px;
  margin: 28px 0;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--blush-deep);
  margin-top: 44px;
}
.stat-cell {
  background: var(--petal-warm);
  padding: 28px 24px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush-dark);
  font-weight: 300;
}

@media (min-width: 768px) {
  .about-layout { flex-direction: row; }
  .about-photo { width: 50%; flex-shrink: 0; aspect-ratio: auto; min-height: 520px; }
  .about-text { padding: 64px 60px; }
}

/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
.process-section {
  background: var(--ink);
  color: var(--cream);
}
.process-section .section-label { color: var(--blush); }
.process-section .section-title { color: var(--cream); }

.process-list {
  margin-top: 44px;
  border-top: 1px solid #2e2a2a;
}
.process-row {
  border-bottom: 1px solid #2e2a2a;
  padding: 28px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: padding 0.2s;
}
.process-row:hover { background: #231f1f; padding-left: 12px; padding-right: 12px; margin: 0 -12px; }

.process-n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--blush);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.process-step-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 8px;
}
.process-step-body {
  font-size: 13px;
  font-weight: 300;
  color: #8a8080;
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   PORTFOLIO
───────────────────────────────────────────── */
.portfolio-section { background: var(--cream); }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}
.portfolio-item { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; }
.portfolio-item.feature { grid-column: span 2; }

.portfolio-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  padding: 20px 18px;
  transition: transform 0.4s ease;
  background: linear-gradient(135deg, var(--blush-deep) 0%, var(--blush) 100%);
}
.portfolio-item.feature .portfolio-thumb { aspect-ratio: 16/9; }
.portfolio-item:nth-child(2) .portfolio-thumb { background: linear-gradient(135deg, #c8a8a8 0%, var(--blush-deep) 100%); }
.portfolio-item:nth-child(3) .portfolio-thumb { background: linear-gradient(135deg, var(--blush-deep) 0%, #e0c8c8 100%); }
.portfolio-item:hover .portfolio-thumb { transform: scale(1.02); }
.portfolio-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.portfolio-label-wrap {
  background: rgba(250,246,243,0.9);
  padding: 10px 14px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.portfolio-cat {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush-dark);
  display: block;
  margin-bottom: 3px;
}
.portfolio-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}
.portfolio-footer { text-align: center; margin-top: 36px; }

/* ─────────────────────────────────────────────
   TESTIMONIAL
───────────────────────────────────────────── */
.testimonial-section {
  background: var(--blush);
  padding: 72px 0;
}
.testi-marks {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--blush-dark);
  line-height: 0.6;
  display: block;
  margin-bottom: 20px;
  opacity: 0.5;
}
.testi-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.testi-name {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush-dark);
}

/* ─────────────────────────────────────────────
   IS THIS YOU / PRICING / EMAIL CTA
───────────────────────────────────────────── */
.pricing-section { background: var(--petal-warm); }

.pricing-card {
  background: var(--cream);
  border: 1px solid var(--blush-deep);
  border-radius: 4px 32px 4px 32px;
  padding: 40px 28px;
  margin-top: 36px;
}
.pricing-card-title {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 20px;
}
.pricing-includes { margin-bottom: 32px; }
.pricing-includes li {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-light);
  padding: 11px 0;
  border-bottom: 1px solid var(--blush);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-includes li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blush-dark);
  flex-shrink: 0;
}

.email-cta-section {
  background: var(--ink);
  padding: 72px 0;
  text-align: center;
}
.email-cta-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 7vw, 42px);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 10px;
}
.email-cta-sub {
  font-size: 13px;
  font-weight: 300;
  color: #7a7070;
  margin-bottom: 36px;
}
.email-form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}
.email-form-row input {
  background: #2a2424;
  border: none;
  border-bottom: 1px solid #3d3636;
  padding: 14px 4px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.email-form-row input::placeholder { color: #5a5252; }
.email-form-row input:focus { border-color: var(--blush); }
.email-form-row .btn-pill {
  align-self: flex-start;
  margin-top: 4px;
  background: var(--blush);
  color: var(--ink);
}
.email-form-row .btn-pill:hover { background: var(--blush-dark); color: var(--cream); }

@media (min-width: 540px) {
  .email-form-row { flex-direction: row; align-items: flex-end; }
  .email-form-row input { flex: 1; }
  .email-form-row .btn-pill { margin-top: 0; flex-shrink: 0; }
}

/* ─────────────────────────────────────────────
   SITE FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid #2a2424;
  padding: 64px 0 40px;
  color: var(--cream);
}
.footer-logo-large {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(54px, 18vw, 120px);
  font-weight: 400;
  color: var(--blush);
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 52px;
  display: block;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}
@media (min-width: 640px) {
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; }
}
.footer-col-head {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a4242;
  margin-bottom: 18px;
  display: block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 14px;
  font-weight: 300;
  color: #7a7070;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--blush); }
.footer-bottom {
  border-top: 1px solid #2a2424;
  padding-top: 28px;
  font-size: 11px;
  font-weight: 300;
  color: #4a4242;
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero {
  background: var(--petal-warm);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero-watermark {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(100px, 30vw, 260px);
  color: var(--blush);
  opacity: 0.4;
  line-height: 1;
  right: -20px;
  bottom: -20px;
  pointer-events: none;
  user-select: none;
}
.page-hero-eyebrow { margin-bottom: 10px; }
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 9vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.page-hero-title em { font-style: italic; color: var(--blush-dark); }

/* ─────────────────────────────────────────────
   SINGLE POST / PAGE CONTENT
───────────────────────────────────────────── */
.content-wrap {
  padding: 64px 0 80px;
  background: var(--cream);
}

.entry-header { margin-bottom: 40px; }
.entry-title {
  font-family: var(--serif);
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.entry-meta {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush-dark);
  font-weight: 300;
}

.post-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 40px;
}

/* ─────────────────────────────────────────────
   ARCHIVE / BLOG
───────────────────────────────────────────── */
.archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 64px 0;
}
@media (min-width: 640px) {
  .archive-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (min-width: 1024px) {
  .archive-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card { background: var(--petal); border-radius: 4px 24px 4px 4px; overflow: hidden; transition: background 0.2s; }
.post-card:hover { background: var(--blush); }
.post-card-thumb { width: 100%; aspect-ratio: 3/2; object-fit: cover; background: var(--blush-deep); }
.post-card-body { padding: 24px 24px 28px; }
.post-card-cat {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush-dark);
  display: block;
  margin-bottom: 8px;
}
.post-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 10px;
}
.post-card-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ─────────────────────────────────────────────
   404
───────────────────────────────────────────── */
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 28px;
  background: var(--petal-warm);
}
.error-404 .four-oh-four {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(80px, 22vw, 180px);
  color: var(--blush);
  line-height: 1;
  margin-bottom: 24px;
}
.error-404 .error-title {
  font-family: var(--serif);
  font-size: clamp(24px, 5vw, 36px);
  margin-bottom: 16px;
}
.error-404 .error-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-light);
  margin-bottom: 36px;
  max-width: 380px;
}

/* ─────────────────────────────────────────────
   SCROLL FADE (JS-driven)
───────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   WORDPRESS CORE CLASSES
───────────────────────────────────────────── */
.wp-block-image { margin: 1.5em 0; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--blush-dark); font-style: italic; margin-top: 8px; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { margin: 0 auto 1.5em; display: block; }
.alignwide { margin-left: -28px; margin-right: -28px; }
.alignfull { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); width: 100vw; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
