/*
Theme Name: LaRue Photography
Theme URI: https://larue-photography.com/
Author: Lara Rüttgers
Author URI: https://larue-photography.com/
Description: Warmes, editorial-elegantes Theme für die Fotografin Lara Rüttgers — Portrait, Business, Hochzeit, Boudoir. Dunkle Bühne, Karamell-Akzente, Cormorant + Inter.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: larue
Tags: photography, dark, portfolio, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ------------------------------------------------------------------
   LaRue Photography — Theme Stylesheet
   Dark warm bühne · caramel accents · editorial typography
------------------------------------------------------------------ */

:root {
  --bg: #14100a;
  --bg-2: #1d1610;
  --bg-3: #241a10;
  --ink: #f2e9d4;
  --ink-dim: #b2a48a;
  --ink-mute: #7a6b54;
  --brown: #c89266;
  --brown-soft: #8c6540;
  --line: rgba(242, 233, 212, 0.08);
  --line-strong: rgba(242, 233, 212, 0.2);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1480px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; cursor: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--brown); color: var(--bg); }

/* Noise texture overlay */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* ---------- Custom Cursor ---------- */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), opacity .2s ease;
  will-change: transform;
}
.cursor {
  width: 34px; height: 34px;
  border: 1.5px solid var(--brown);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0,0,0,0.5);
}
.cursor.hover {
  width: 64px; height: 64px;
  background: rgba(200, 146, 102, 0.18);
  border-color: var(--ink);
}
.cursor-dot.hover {
  width: 3px; height: 3px;
  background: var(--brown);
}

@media (max-width: 900px) {
  body { cursor: auto; }
  a, button { cursor: pointer; }
  .cursor, .cursor-dot { display: none; }
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1;
}
.loader-la { color: var(--ink); }
.loader-rue { color: var(--brown); font-style: italic; }
.loader-dot { color: var(--brown); font-style: italic; }
.loader-sub {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding-left: 0.5em;
}
.loader-sub i {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--brown);
}
.loader-bar {
  width: 220px;
  height: 1px;
  background: var(--line);
  margin: 0 auto 24px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  width: 0;
  background: var(--brown);
  animation: load 1.8s var(--ease) forwards;
}
@keyframes load { to { width: 100%; } }
.loader-text {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 16px 48px;
  background: rgba(20, 16, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-family: var(--serif);
  line-height: 1;
  padding: 2px 0;
  transition: transform .4s var(--ease);
}
.nav-logo:hover { transform: translateY(-1px); }
.nav-logo:hover .logo-word em { color: var(--ink); }
.nav-logo:hover .logo-sub-line { width: 40px; }

.logo-word {
  font-size: 28px;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--ink);
  transition: color .4s var(--ease);
}
.logo-word em {
  font-style: italic;
  color: var(--brown);
  font-weight: 400;
  transition: color .4s var(--ease);
}
.logo-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 2px;
}
.logo-sub-line {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--brown);
  transition: width .4s var(--ease);
}
.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--brown);
  transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--line-strong);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--brown);
  transform: translateY(101%);
  transition: transform .4s var(--ease);
  z-index: -1;
}
.nav-cta:hover {
  border-color: var(--brown);
  color: var(--bg);
}
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta svg { transition: transform .35s var(--ease); }
.nav-cta:hover svg { transform: translate(3px, -3px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  width: 28px;
  height: 1px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Tablet: keep horizontal links, hide CTA */
@media (max-width: 1100px) {
  .nav { padding: 20px 28px; gap: 20px; }
  .nav.scrolled { padding: 14px 28px; }
  .nav-cta { display: none; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.18em; }
}

/* Mobile: burger only, on the right */
@media (max-width: 760px) {
  .nav { padding: 18px 22px; }
  .nav.scrolled { padding: 14px 22px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 120px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.mobile-menu-foot {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ---------- Placeholder Images ---------- */
.placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(200,146,102,0.12) 0%, rgba(200,146,102,0.03) 40%, rgba(0,0,0,0.4) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(200,146,102,0.2), transparent 60%),
    linear-gradient(180deg, #2a1e12 0%, #14100a 100%);
}
.placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(245,241,234,0.015) 0 2px, transparent 2px 12px);
}
.placeholder::after {
  content: attr(data-label);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 0 48px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-img {
  position: absolute;
  inset: 0;
  transform: scale(1.1);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(20,16,10,0.4) 50%, rgba(20,16,10,0.95) 100%),
    linear-gradient(180deg, rgba(20,16,10,0.6) 0%, transparent 30%, rgba(20,16,10,0.9) 100%);
}

.hero-meta {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  display: flex;
  gap: 32px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.hero-meta-item span { color: var(--brown); margin-right: 6px; }

.hero-content {
  position: relative;
  max-width: 1000px;
  margin-left: 80px;
  z-index: 2;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 40px;
}
.eyebrow-line {
  width: 60px;
  height: 1px;
  background: var(--brown);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 148px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.hero-title em {
  font-style: italic;
  color: var(--brown);
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 560px;
  margin-bottom: 56px;
  font-style: italic;
}

.reveal-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}
.reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s var(--ease-smooth), opacity 1s var(--ease-smooth);
  padding-bottom: 0.02em;
}
.loaded .reveal-line > span {
  transform: translateY(0);
  opacity: 1;
}
.loaded .reveal-line:nth-child(1) > span { transition-delay: 0.1s; }
.loaded .reveal-line:nth-child(2) > span { transition-delay: 0.2s; }
.loaded .reveal-line:nth-child(3) > span { transition-delay: 0.3s; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.btn svg { transition: transform .4s var(--ease); }
.btn-primary {
  background: var(--brown);
  color: var(--bg);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { color: var(--bg); }
.btn-primary span, .btn-primary svg {
  position: relative;
  z-index: 1;
  transition: color .4s var(--ease);
}
.btn-primary:hover span, .btn-primary:hover svg { color: var(--bg); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--brown);
  color: var(--brown);
}

.btn-lg { padding: 22px 40px; font-size: 12px; }

.hero-scroll {
  position: absolute;
  right: 48px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--brown), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 30%;
  background: var(--brown);
  animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(300%); }
}

.hero-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  color: var(--brown);
  opacity: 0.5;
}
.hero-corner svg { width: 100%; height: 100%; stroke-width: 1; }
.hero-corner.tl { top: 100px; left: 24px; }
.hero-corner.tr { top: 100px; right: 24px; }
.hero-corner.bl { bottom: 24px; left: 24px; }
.hero-corner.br { bottom: 24px; right: 24px; }

@media (max-width: 900px) {
  .hero { padding: 0 24px; }
  .hero-meta { display: none; }
  .hero-content { margin-left: 0; }
  .hero-scroll { right: 24px; }
  .hero-corner { display: none; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  color: var(--ink);
}
.marquee-track .dot {
  color: var(--brown);
  font-style: normal;
  font-size: 20px;
  display: flex;
  align-items: center;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Sections shared ---------- */
.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-title em { color: var(--brown); font-style: italic; }
.section-desc {
  color: var(--ink-dim);
  max-width: 520px;
  margin-top: 20px;
  font-size: 15px;
}

/* ---------- Intro ---------- */
.intro {
  padding: 160px 48px;
  position: relative;
}
.intro-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr 420px;
  gap: 64px;
  align-items: start;
}
.intro-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.intro-title em { color: var(--brown); font-style: italic; }
.intro-body p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 520px;
}
.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--brown);
  margin-top: 36px;
}

.intro-right { position: relative; }
.intro-image {
  aspect-ratio: 3/4;
  width: 100%;
}
.intro-badge {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}
.badge-num {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  font-style: italic;
}
.badge-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .intro { padding: 100px 24px; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-left { display: none; }
  .intro-badge { width: 110px; height: 110px; bottom: -30px; left: auto; right: -10px; }
}

/* ---------- Portfolio ---------- */
.portfolio {
  padding: 120px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.portfolio-head {
  max-width: var(--maxw);
  margin: 0 auto 60px;
}
.portfolio-filter {
  max-width: var(--maxw);
  margin: 0 auto 48px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--line-strong);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: all .3s var(--ease);
}
.filter-btn:hover { color: var(--ink); border-color: var(--brown); }
.filter-btn.active {
  background: var(--brown);
  color: var(--bg);
  border-color: var(--brown);
}

.portfolio-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.pf-item {
  position: relative;
  overflow: hidden;
  background: #000;
  display: block;
  transition: opacity .5s var(--ease);
}
.pf-item.hide { opacity: 0.15; pointer-events: none; filter: grayscale(1); }
.pf-tall { grid-row: span 2; }
.pf-wide { grid-column: span 2; }

.pf-img {
  width: 100%;
  height: 100%;
  transition: transform 1.2s var(--ease-smooth), filter .6s var(--ease);
}
.pf-item:hover .pf-img {
  transform: scale(1.08);
  filter: brightness(0.6);
}
.pf-info {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s var(--ease);
}
.pf-item:hover .pf-info { opacity: 1; transform: translateY(0); }
.pf-cat {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}
.pf-title {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.portfolio-cta {
  max-width: var(--maxw);
  margin: 64px auto 0;
  text-align: center;
}

@media (max-width: 1100px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .portfolio { padding: 80px 24px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .pf-wide { grid-column: span 2; }
  .pf-tall { grid-row: span 1; }
}

/* ---------- Services ---------- */
.services { padding: 160px 48px; }
.services-head {
  max-width: var(--maxw);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: end;
}
.services-list {
  max-width: var(--maxw);
  margin: 0 auto;
}
.service {
  display: grid;
  grid-template-columns: 120px 1fr 280px 60px;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: none;
  transition: padding .5s var(--ease);
  overflow: hidden;
}
.service:first-child { border-top: 1px solid var(--line); }
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(200,146,102,0.06) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: 0;
}
.service:hover::before { opacity: 1; }
.service:hover { padding: 48px 24px; }
.service > * { position: relative; z-index: 1; }

.service-num {
  font-family: var(--serif);
  font-size: 72px;
  font-style: italic;
  color: var(--brown-soft);
  opacity: 0.5;
  transition: all .5s var(--ease);
}
.service:hover .service-num {
  color: var(--brown);
  opacity: 1;
  transform: translateX(8px);
}
.service-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-desc {
  color: var(--ink-dim);
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 16px;
}
.service-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
}
.service-image {
  width: 280px;
  height: 180px;
  transition: transform .6s var(--ease);
}
.service:hover .service-image { transform: scale(1.04); }
.service-arrow {
  font-size: 28px;
  color: var(--brown-soft);
  transition: all .5s var(--ease);
  text-align: right;
}
.service:hover .service-arrow {
  color: var(--brown);
  transform: translateX(10px);
}

@media (max-width: 1100px) {
  .service { grid-template-columns: 80px 1fr; gap: 24px; }
  .service-image, .service-arrow { display: none; }
}
@media (max-width: 700px) {
  .services { padding: 80px 24px; }
  .services-head { grid-template-columns: 1fr; gap: 16px; }
  .service-title { font-size: 32px; }
  .service-num { font-size: 48px; }
}

/* ---------- Process ---------- */
.process {
  padding: 160px 48px;
  background: var(--bg-3);
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,146,102,0.08), transparent 60%);
  pointer-events: none;
}
.process-head {
  max-width: var(--maxw);
  margin: 0 auto 80px;
  text-align: center;
}
.process-steps {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brown-soft), transparent);
}
.step { position: relative; text-align: left; }
.step-num {
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1;
  background: var(--bg-3);
  display: inline-block;
  padding-right: 16px;
  position: relative;
  z-index: 1;
}
.step h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}
.step p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .process { padding: 80px 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
}
@media (max-width: 500px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 160px 48px;
  overflow: hidden;
}
.tst-head {
  max-width: var(--maxw);
  margin: 0 auto 80px;
  text-align: center;
}
.tst-track {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  min-height: 280px;
}
.tst {
  position: absolute;
  inset: 0;
  text-align: center;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  pointer-events: none;
}
.tst.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.tst p {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 40px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.tst p em {
  color: var(--brown);
}
.tst cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.tst cite span:first-child { color: var(--brown); }

.tst-controls {
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.tst-btn {
  width: 52px; height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 18px;
  transition: all .3s var(--ease);
}
.tst-btn:hover {
  background: var(--brown);
  color: var(--bg);
  border-color: var(--brown);
}
.tst-count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-dim);
}
.tst-count span:first-child { color: var(--brown); }

@media (max-width: 700px) {
  .testimonials { padding: 80px 24px; }
}

/* ---------- Journal ---------- */
.journal {
  padding: 160px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.journal-head {
  max-width: var(--maxw);
  margin: 0 auto 60px;
}
.journal-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.jrn {
  display: block;
  transition: transform .5s var(--ease);
}
.jrn:hover { transform: translateY(-8px); }
.jrn-img {
  aspect-ratio: 4/3;
  margin-bottom: 20px;
  overflow: hidden;
}
.jrn-img::before { transition: transform 1s var(--ease); }
.jrn:hover .jrn-img::before { transform: scale(1.05); }
.jrn-meta {
  display: flex;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}
.jrn h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color .3s;
}
.jrn:hover h3 { color: var(--brown); }

@media (max-width: 900px) {
  .journal { padding: 80px 24px; }
  .journal-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 160px 48px;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.cta-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.cta-title em { color: var(--brown); font-style: italic; }
.cta-circle {
  position: relative;
  width: 220px;
  height: 220px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .5s var(--ease);
}
.cta-circle:hover {
  background: var(--brown);
  border-color: var(--brown);
}
.cta-circle-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}
.cta-circle-text text {
  fill: var(--ink-dim);
  font-size: 10px;
  letter-spacing: 0.3em;
  font-family: var(--sans);
}
.cta-circle:hover .cta-circle-text text { fill: var(--bg); }
.cta-arrow {
  font-size: 48px;
  font-family: var(--serif);
  color: var(--brown);
  font-style: italic;
  transition: all .4s var(--ease);
}
.cta-circle:hover .cta-arrow {
  color: var(--bg);
  transform: rotate(-45deg);
}

@keyframes spin { 100% { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .cta-banner { padding: 80px 24px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-circle { width: 160px; height: 160px; }
  .cta-arrow { font-size: 32px; }
}

/* ---------- Contact ---------- */
.contact {
  padding: 160px 48px;
  border-top: 1px solid var(--line);
}
.contact-head {
  max-width: var(--maxw);
  margin: 0 auto 80px;
}
.contact-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 120px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.info-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
}
.info-value {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
}
a.info-value:hover { color: var(--brown); }
.info-social {
  display: flex;
  gap: 16px;
  font-family: var(--serif);
  font-size: 18px;
}
.info-social a:hover { color: var(--brown); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form label span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  transition: border-color .3s;
  cursor: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brown);
}
.contact-form select option { background: var(--bg); color: var(--ink); }
.contact-form textarea { resize: vertical; }
.form-note {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 8px;
}

@media (max-width: 1000px) {
  .contact { padding: 80px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 100px 48px 0;
  position: relative;
  overflow: hidden;
}
.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--serif);
  line-height: 1;
}
.footer-logo .logo-word { font-size: 38px; letter-spacing: -0.02em; }
.footer-logo .logo-sub { padding-left: 2px; }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-dim);
  max-width: 400px;
  text-align: right;
}

.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.footer-grid h5 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-grid a {
  display: block;
  color: var(--ink-dim);
  font-size: 14px;
  padding: 6px 0;
  transition: color .3s;
}
.footer-grid a:hover { color: var(--ink); }

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  position: relative;
  z-index: 1;
}
.footer-bottom > div { display: flex; gap: 32px; }
.footer-bottom a:hover { color: var(--ink); }

.footer-giant {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 28vw, 420px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.03em;
}

@media (max-width: 900px) {
  .footer { padding: 60px 24px 0; }
  .footer-top { flex-direction: column; gap: 24px; align-items: flex-start; padding-bottom: 40px; }
  .footer-tag { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; padding: 24px 0; }
  .footer-bottom > div { flex-wrap: wrap; gap: 16px; }
}

/* ---------- Scroll reveal ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ---------- WordPress required & utility classes ---------- */
.screen-reader-text {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px; width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: var(--bg);
  clip: auto !important;
  clip-path: none;
  color: var(--brown);
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 12px 18px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.alignleft  { float: left;  margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption {
  font-style: italic;
  font-family: var(--serif);
  color: var(--ink-dim);
  font-size: 14px;
  margin-top: 8px;
  text-align: center;
}

/* Admin bar */
body.admin-bar .nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .nav { top: 46px; }
}

/* WP image inside placeholders/wrappers */
.pf-img img, .hero-img img, .intro-image img, .service-image img, .jrn-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: absolute; inset: 0;
}
.pf-img, .hero-img, .intro-image, .service-image, .jrn-img { position: relative; }

/* Hide placeholder pseudo when image is loaded */
.pf-img.has-image::before, .pf-img.has-image::after,
.hero-img.has-image::before, .hero-img.has-image::after,
.intro-image.has-image::before, .intro-image.has-image::after,
.service-image.has-image::before, .service-image.has-image::after,
.jrn-img.has-image::before, .jrn-img.has-image::after { display: none; }

/* Single Portfolio / Journal article */
.single-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 180px 24px 120px;
}
.single-article-meta {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 24px;
}
.single-article-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.single-article-image {
  margin: 40px -40px;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.single-article-image img { width: 100%; height: 100%; object-fit: cover; }
.single-article .entry-content {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-dim);
}
.single-article .entry-content p { margin-bottom: 20px; }
.single-article .entry-content h2,
.single-article .entry-content h3 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 40px 0 16px;
  font-weight: 400;
}
.single-article .entry-content a {
  color: var(--brown);
  border-bottom: 1px solid var(--brown);
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .3s;
}
.back-link:hover { color: var(--brown); }

/* 404 */
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.error-404 .err-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 22vw, 280px);
  color: var(--brown);
  line-height: 1;
}
.error-404 h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  margin: 20px 0;
}
.error-404 p {
  color: var(--ink-dim);
  max-width: 480px;
  margin: 0 auto 32px;
}
