/**
 * Allure — WordPress Theme
 *
 * Theme Name:   Allure
 * Theme URI:    https://alluredesign.ae
 * Author:       Allure Design Studio
 * Author URI:   https://alluredesign.ae
 * Description:  Luxury interior design theme for Allure Dubai. No page-builder required — fully self-contained PHP page templates. British editorial aesthetic, ivory/ink/brass palette.
 * Version:      3.0.0
 * Requires at least: 6.0
 * Tested up to: 6.5
 * Requires PHP: 8.0
 * License:      Proprietary
 * Text Domain:  allure
 */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --ivory:    #F5F1EA;
  --ink:      #1F1B17;
  --taupe:    #7A6F62;
  --stone:    #D9D2C5;
  --charcoal: #2B2722;
  --brass:    #A88B5C;
  --gutter:   clamp(1.5rem, 4vw, 4rem);
  --max:      1440px;
  --sec-gap:  clamp(5rem, 9vw, 9rem);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; }
h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
p  { color: var(--taupe); line-height: 1.8; }
em { font-style: italic; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
  margin-bottom: 1.2rem;
}

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section-header { text-align: center; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
section { padding: var(--sec-gap) 0; }
h2.section-title { font-size: clamp(1.9rem, 3.5vw, 3rem); line-height: 1.15; text-align: center; }
.site { padding-top: 0; }

/* ── Header ──────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(245,241,234,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--stone);
  transition: background 0.5s;
}
#site-header.scrolled { background: rgba(245,241,234,0.99); }
.header-top { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem var(--gutter) 0; }
.wordmark { text-align: center; flex: 1; }
.wordmark-name { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 1.35rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--ink); display: block; transition: color 0.3s; }
.wordmark-name:hover { color: var(--brass); }
.wordmark-sub { font-size: 9px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--taupe); display: block; margin-top: 0.15rem; }
.header-rule { width: 100%; height: 1px; background: var(--stone); margin-top: 0.9rem; }
.header-nav { display: flex; justify-content: center; gap: clamp(1.8rem, 3.5vw, 3.2rem); padding: 0.85rem var(--gutter); }
.header-nav a { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); position: relative; padding-bottom: 2px; transition: color 0.3s; }
.header-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--brass); transition: width 0.55s cubic-bezier(0.4,0,0.2,1); }
.header-nav a:hover, .header-nav a.current-menu-item { color: var(--brass); }
.header-nav a:hover::after, .header-nav a.current-menu-item::after { width: 100%; }

/* ── Scroll animations ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.clip-reveal { clip-path: inset(100% 0 0 0); transition: clip-path 1.1s cubic-bezier(0.16,1,0.3,1); }
.clip-reveal.revealed { clip-path: inset(0% 0 0 0); }
.draw-line { width: 0; height: 1px; background: var(--stone); transition: width 1.2s cubic-bezier(0.16,1,0.3,1); display: block; margin: 0 auto 3rem; }
.draw-line.revealed { width: 120px; }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.50s; }
.delay-5 { transition-delay: 0.65s; }

/* ── Page transition ─────────────────────────────────────── */
.page-transition { position: fixed; inset: 0; background: var(--charcoal); z-index: 500; transform: scaleY(0); transform-origin: top; pointer-events: none; }
.page-transition.exit { animation: ptExit 0.5s cubic-bezier(0.76,0,0.24,1) forwards; }
@keyframes ptExit { from { transform: scaleY(1); transform-origin: top; } to { transform: scaleY(0); transform-origin: top; } }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-ghost-dark { display: inline-block; font-family: 'Jost', sans-serif; font-weight: 300; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink); border: 1px solid var(--ink); padding: 0.95rem 2.6rem; transition: background 0.55s, color 0.55s; }
.btn-ghost-dark:hover { background: var(--ink); color: var(--ivory); }
.btn-ghost-light { display: inline-block; font-family: 'Jost', sans-serif; font-weight: 300; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ivory); border: 1px solid rgba(245,241,234,0.45); padding: 0.95rem 2.4rem; transition: border-color 0.55s, background 0.55s; }
.btn-ghost-light:hover { border-color: var(--brass); background: var(--brass); }
.text-link { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); position: relative; display: inline-block; padding-bottom: 3px; }
.text-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--ink); transform-origin: left; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1), background 0.3s; }
.text-link:hover { color: var(--brass); }
.text-link:hover::after { transform: scaleX(0); transform-origin: right; background: var(--brass); }
.text-link-light { color: var(--ivory); }
.text-link-light::after { background: var(--ivory); }

/* ── Hero ────────────────────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 680px; overflow: hidden; display: flex; align-items: flex-end; }
.hero-parallax { position: absolute; inset: -10% 0; will-change: transform; }
.hero-parallax img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,27,23,0.80) 0%, rgba(31,27,23,0.28) 50%, rgba(31,27,23,0.12) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 0 var(--gutter) clamp(3.5rem, 7vw, 6rem); }
.hero-content .eyebrow { color: rgba(245,241,234,0.6); opacity: 0; animation: heroLine 1s 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-content h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); color: var(--ivory); line-height: 1.06; max-width: 720px; margin-bottom: 2rem; opacity: 0; animation: heroLine 1.1s 0.85s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-cta-wrap { display: flex; gap: 1.8rem; align-items: center; opacity: 0; animation: heroLine 1s 1.1s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes heroLine { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-cta { display: inline-flex; align-items: center; gap: 0.8rem; font-family: 'Jost', sans-serif; font-weight: 300; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ivory); border: 1px solid rgba(245,241,234,0.5); padding: 0.95rem 2.4rem; transition: border-color 0.55s, background 0.55s; }
.hero-cta:hover { border-color: var(--brass); background: var(--brass); color: var(--ivory); }
.hero-text-link { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245,241,234,0.65); position: relative; padding-bottom: 2px; }
.hero-text-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: rgba(245,241,234,0.4); transform-origin: left; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1), background 0.3s; }
.hero-text-link:hover { color: var(--brass); }
.hero-text-link:hover::after { transform: scaleX(0); transform-origin: right; background: var(--brass); }
.hero-scroll-indicator { position: absolute; bottom: 2.5rem; right: var(--gutter); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; opacity: 0; animation: heroLine 1s 1.5s ease forwards; }
.hero-scroll-indicator span { writing-mode: vertical-rl; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,241,234,0.4); }
.scroll-line { width: 1px; height: 64px; background: rgba(245,241,234,0.2); overflow: hidden; position: relative; }
.scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 1px; height: 100%; background: rgba(245,241,234,0.7); animation: scrollDrop 2s ease infinite; }
@keyframes scrollDrop { 0% { top: -100%; } 100% { top: 100%; } }

/* ── Portfolio grid ──────────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--stone); }
.portfolio-card { position: relative; aspect-ratio: 445 / 635; overflow: hidden; cursor: pointer; background: var(--charcoal); }
.portfolio-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94); }
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,27,23,0.82) 0%, transparent 55%); opacity: 0; transition: opacity 0.7s; }
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }
.portfolio-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; transform: translateY(10px); opacity: 0; transition: transform 0.65s cubic-bezier(0.16,1,0.3,1), opacity 0.65s; }
.portfolio-card:hover .portfolio-card-info { transform: translateY(0); opacity: 1; }
.portfolio-card-info .eyebrow { color: rgba(245,241,234,0.55); margin-bottom: 0.3rem; }
.portfolio-card-info h3 { font-size: 1.55rem; color: var(--ivory); line-height: 1.2; }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee-strip { background: var(--charcoal); border-top: 1px solid rgba(217,210,197,0.15); border-bottom: 1px solid rgba(217,210,197,0.15); overflow: hidden; padding: 1.1rem 0; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marqueeScroll 28s linear infinite; }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 2rem; padding: 0 2.5rem; font-family: 'Jost', sans-serif; font-weight: 300; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(245,241,234,0.45); }
.marquee-dot { width: 4px; height: 4px; background: var(--brass); border-radius: 50%; flex-shrink: 0; }

/* ── Statement ───────────────────────────────────────────── */
#home-statement { text-align: center; }
.statement-inner { max-width: 820px; margin: 0 auto; }
.statement-text { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.5; color: var(--ink); }
.statement-attribution { margin-top: 2.5rem; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--taupe); }

/* ── Stats ───────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--stone); }
.stat-item { padding: clamp(2rem, 3.5vw, 3.5rem); border-right: 1px solid var(--stone); text-align: center; position: relative; overflow: hidden; }
.stat-item:last-child { border-right: none; }
.stat-item::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--brass); transition: width 0.7s cubic-bezier(0.16,1,0.3,1); }
.stat-item:hover::after { width: 100%; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2.8rem, 5vw, 4.5rem); color: var(--ink); line-height: 1; display: block; }
.stat-label { display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); margin-top: 0.6rem; }

/* ── Process ─────────────────────────────────────────────── */
#home-process { border-top: 1px solid var(--stone); padding-bottom: 0 !important; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--stone); }
.process-step { padding: clamp(2.5rem, 4vw, 4rem); border-right: 1px solid var(--stone); display: flex; flex-direction: column; gap: 1.5rem; transition: background 0.55s; }
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(217,210,197,0.10); }
.process-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(4rem, 6vw, 6rem); color: var(--stone); line-height: 1; letter-spacing: -0.02em; display: block; }
.process-step h3 { font-size: 1.25rem; color: var(--ink); margin: 0; }
.process-step p { font-size: 14px; }

/* ── Feature band ────────────────────────────────────────── */
#home-feature { position: relative; height: 78vh; min-height: 560px; overflow: hidden; display: flex; align-items: center; padding: 0; margin-top: 0; }
.feature-bg-img { position: absolute; inset: -10% 0; will-change: transform; }
.feature-bg-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.feature-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(31,27,23,0.88) 0%, rgba(31,27,23,0.35) 60%, transparent 100%); }
.feature-content { position: relative; z-index: 2; max-width: 560px; padding: 0 var(--gutter); }
.feature-content .eyebrow { color: rgba(245,241,234,0.5); }
.feature-content h2 { font-size: clamp(2rem, 4vw, 3.6rem); color: var(--ivory); line-height: 1.1; margin-bottom: 1.4rem; }
.feature-content p { color: rgba(245,241,234,0.65); margin-bottom: 2.5rem; }

/* ── Page hero ───────────────────────────────────────────── */
.page-hero { padding-top: calc(var(--sec-gap) + 120px); padding-bottom: var(--sec-gap); border-bottom: 1px solid var(--stone); text-align: center; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1.08; }
.page-hero p { max-width: 600px; margin: 1.8rem auto 0; }

/* ── Services ────────────────────────────────────────────── */
.services-feature { position: relative; height: 60vh; min-height: 440px; overflow: hidden; }
.services-feature img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.services-feature-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,27,23,0.6), transparent 60%); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--stone); }
.service-item { padding: clamp(2.5rem, 4vw, 4.5rem); border-right: 1px solid var(--stone); border-bottom: 1px solid var(--stone); transition: background 0.6s; }
.service-item:nth-child(even) { border-right: none; }
.service-item:hover { background: rgba(217,210,197,0.13); }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; color: var(--stone); line-height: 1; display: block; margin-bottom: 1.5rem; }
.service-item h3 { font-size: clamp(1.4rem, 2vw, 2rem); margin-bottom: 1rem; }
.service-item p { max-width: 480px; }
.service-cta-strip { text-align: center; padding: var(--sec-gap) 0; border-top: 1px solid var(--stone); }
.service-cta-strip h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin: 1rem 0 2.5rem; }

/* ── About ───────────────────────────────────────────────── */
.about-intro { padding-top: calc(var(--sec-gap) + 120px); }
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.about-hero-text h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1.08; margin-bottom: 1.6rem; }
.about-hero-text p { margin-bottom: 1.2rem; }
.about-hero-img { aspect-ratio: 445 / 595; overflow: hidden; position: relative; }
.about-hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94); }
.about-hero-img:hover img { transform: scale(1.04); }
#about-values { background: var(--charcoal); }
.values-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.value-item { padding: clamp(2.5rem, 4vw, 4.5rem); border-right: 1px solid rgba(217,210,197,0.15); transition: background 0.6s; }
.value-item:last-child { border-right: none; }
.value-item:hover { background: rgba(245,241,234,0.04); }
.value-item .eyebrow { color: var(--brass); }
.value-item h3 { font-size: 1.5rem; color: var(--ivory); margin-bottom: 1rem; }
.value-item p { color: rgba(245,241,234,0.5); font-size: 14px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 3.5vw, 3.5rem); }
.team-card { display: flex; flex-direction: column; gap: 1.2rem; }
.team-portrait { aspect-ratio: 445 / 560; overflow: hidden; position: relative; }
.team-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94); }
.team-card:hover .team-portrait img { transform: scale(1.05); }
.team-card h3 { font-size: 1.3rem; }
.team-card .role { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }
.team-card p { font-size: 14px; margin-top: 0.3rem; }
#about-awards { border-top: 1px solid var(--stone); }
.awards-list { list-style: none; border: 1px solid var(--stone); }
.award-item { display: grid; grid-template-columns: 100px 1fr 1fr; align-items: center; gap: 2rem; padding: 1.8rem 2.5rem; border-bottom: 1px solid var(--stone); transition: background 0.5s; }
.award-item:last-child { border-bottom: none; }
.award-item:hover { background: rgba(217,210,197,0.15); }
.award-year { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--stone); }
.award-name { font-size: 15px; color: var(--ink); }
.award-body { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); text-align: right; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 9rem); align-items: start; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1.8rem; }
.contact-detail { display: flex; flex-direction: column; margin-bottom: 2rem; }
.contact-detail-label { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.3rem; }
.contact-detail-value { font-size: 15px; color: var(--ink); line-height: 1.7; }
.contact-hours { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--stone); }
.contact-hours h4 { font-size: 1.1rem; margin-bottom: 0.8rem; }
.contact-map { height: 320px; background: repeating-linear-gradient(135deg,#e8e3da 0,#e8e3da 2px,#ede8e0 2px,#ede8e0 24px); display: flex; align-items: center; justify-content: center; border-top: 1px solid var(--stone); font-family: monospace; font-size: 11px; color: var(--taupe); letter-spacing: 0.1em; }
form.allure-form { display: flex; flex-direction: column; }
.form-group { display: flex; flex-direction: column; border-bottom: 1px solid var(--stone); transition: border-color 0.4s; }
.form-group:first-of-type { border-top: 1px solid var(--stone); }
.form-group:focus-within { border-color: var(--brass); }
.form-group label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--taupe); padding: 1.2rem 0 0; transition: color 0.4s; }
.form-group:focus-within label { color: var(--brass); }
.form-group input, .form-group select, .form-group textarea { background: transparent; border: none; outline: none; font-family: 'Jost', sans-serif; font-weight: 300; font-size: 15px; color: var(--ink); padding: 0.5rem 0 1.2rem; resize: none; -webkit-appearance: none; border-radius: 0; }
.form-group select option { background: var(--ivory); }
.form-group textarea { min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
.form-submit { margin-top: 2.5rem; display: flex; justify-content: space-between; align-items: center; }
.form-submit-note { font-size: 12px; color: var(--taupe); }

/* ── Journal ─────────────────────────────────────────────── */
.journal-featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(3rem, 6vw, 7rem); align-items: center; padding-bottom: var(--sec-gap); border-bottom: 1px solid var(--stone); }
.journal-featured-img { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.journal-featured-img img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; transition: transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94); }
.journal-featured:hover .journal-featured-img img { transform: scale(1.04); }
.journal-featured-body h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.12; margin-bottom: 1.2rem; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 3.5vw, 3.5rem); }
.journal-card { display: flex; flex-direction: column; }
.journal-card-img { aspect-ratio: 4 / 3; overflow: hidden; position: relative; margin-bottom: 1.6rem; }
.journal-card-img img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; transition: transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94); }
.journal-card:hover .journal-card-img img { transform: scale(1.06); }
.journal-card-body h3 { font-size: clamp(1.1rem, 1.6vw, 1.5rem); line-height: 1.2; margin-bottom: 0.8rem; }
.journal-card-body p { font-size: 14px; }
.journal-newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 8rem); align-items: center; }
.journal-newsletter-field { border-bottom: 1px solid rgba(217,210,197,0.3); }

/* ── Footer ──────────────────────────────────────────────── */
footer { background: var(--charcoal); padding: clamp(3rem, 5vw, 5.5rem) 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: clamp(2rem, 4vw, 5rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(217,210,197,0.15); }
.footer-wordmark { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 1.2rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ivory); display: block; margin-bottom: 0.8rem; }
.footer-sub { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(245,241,234,0.3); display: block; }
.footer-desc { font-size: 13px; color: rgba(245,241,234,0.4); line-height: 1.8; margin-top: 1.2rem; max-width: 260px; }
.footer-nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-nav-col h5 { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,241,234,0.35); margin-bottom: 1.2rem; }
.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav-col a { font-size: 13px; color: rgba(245,241,234,0.55); transition: color 0.3s; }
.footer-nav-col a:hover { color: var(--brass); }
.footer-contact-col { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-contact-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,241,234,0.3); margin-bottom: 0.4rem; }
.footer-contact-col a { font-size: 13px; color: rgba(245,241,234,0.55); transition: color 0.3s; }
.footer-contact-col a:hover { color: var(--brass); }
.footer-contact-col span { font-size: 13px; color: rgba(245,241,234,0.35); line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; }
.footer-bottom p { font-size: 11px; color: rgba(245,241,234,0.25); letter-spacing: 0.08em; }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,241,234,0.3); transition: color 0.3s; }
.footer-social a:hover { color: var(--brass); }

/* ── Cursor ──────────────────────────────────────────────── */
.cursor-dot { position: fixed; width: 8px; height: 8px; background: var(--brass); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); opacity: 0; transition: opacity 0.3s, transform 0.15s; }
.cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid var(--brass); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); opacity: 0; transition: width 0.4s, height 0.4s, opacity 0.3s; }
body:hover .cursor-dot, body:hover .cursor-ring { opacity: 1; }
.cursor-ring.expanded { width: 60px; height: 60px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-top: 1px solid var(--stone); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--stone); }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-img { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .values-inner { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid rgba(217,210,197,0.15); }
  .team-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav-links { grid-template-columns: 1fr; }
  .award-item { grid-template-columns: 60px 1fr; }
  .award-body { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--stone); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .journal-featured { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-newsletter { grid-template-columns: 1fr; }
  .header-nav { gap: 1.2rem; }
}
