/*
Theme Name: Mulberry Multipage
Theme URI: https://mulberrydesignconstruction.co.uk/
Author: Mulberry Design Construction
Author URI: https://mulberrydesignconstruction.co.uk/
Description: Multipage WordPress theme for Mulberry Design Construction — dark theme with golden accents, hero slideshow, dedicated Services, Projects, About and Contact pages.
Version: 5.7.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mulberry
Tags: one-page, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ========== VARIABLES ========== */
:root {
  --bg: #0c0a09;
  --bg-surface: #1a1714;
  --text: #f5f2ec;
  --text-muted: rgba(245, 242, 236, 0.7);
  --text-faint: rgba(245, 242, 236, 0.5);
  --text-ghost: rgba(245, 242, 236, 0.4);
  --mulberry: #c9a24a;
  --brass: #b8973e;
  --border: rgba(245, 242, 236, 0.08);
  --border-light: rgba(245, 242, 236, 0.15);
}

/* ========== BASE ========== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Jost', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ========== UTILITIES ========== */
.font-serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.italic { font-style: italic; }
.brass { color: var(--brass); }
.mulberry { color: var(--mulberry); }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mulberry);
  display: block;
  margin-bottom: 1.5rem;
}

/* ========== NAV ========== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(12, 10, 9, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.site-nav .brand img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}
.site-nav .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-nav .brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  letter-spacing: 0.18em;
  color: var(--text);
}
.site-nav .brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 0.25rem;
}
.site-nav nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav nav ul li { list-style: none; margin: 0; padding: 0; }
.site-nav nav ul li a {
  color: rgba(245, 242, 236, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}
.site-nav nav ul li a:hover { color: var(--text); }
.site-nav .socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-nav .socials a {
  color: rgba(245, 242, 236, 0.5);
  transition: color 0.3s;
}
.site-nav .socials a:hover { color: var(--mulberry); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
}
.nav-toggle svg { display: block; }

.mobile-menu {
  display: none;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu-inner {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu a {
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 242, 236, 0.7);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--mulberry); }
.mobile-menu .phone {
  color: var(--mulberry);
}
.mobile-socials {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.mobile-socials a {
  color: rgba(245, 242, 236, 0.5);
  transition: color 0.3s;
}
.mobile-socials a:hover { color: var(--mulberry); }

@media (max-width: 768px) {
  .site-nav nav,
  .site-nav .socials { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu.open { display: block; }
  .site-nav .brand-text { display: none; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
  color: #fff;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.1);
}
.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-out;
}
.hero-slides img.active {
  opacity: 1;
  animation: kenBurns 14s ease-out both;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7) 60%, transparent);
  z-index: 1;
}
/* Logo watermark removed — logo now renders as a full hero slide. */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero .eyebrow {
  color: var(--brass);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s both;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  margin: 0 0 2rem;
  max-width: 18ch;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.4s both;
}
.hero h1 em { color: var(--brass); font-style: italic; }
.hero .shimmer-line {
  height: 1px;
  width: 5rem;
  background: var(--brass);
  margin-bottom: 2rem;
  opacity: 0;
  animation: shimmerLine 1.4s cubic-bezier(0.19, 1, 0.22, 1) 0.5s both;
}
.hero p {
  max-width: 52ch;
  font-weight: 300;
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.7s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.9s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  border-radius: 2px;
  font-family: inherit;
}
.btn-primary {
  background: var(--mulberry);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
}
.btn-primary:hover {
  background: var(--brass);
  padding-right: 2rem;
}
.btn-primary .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.5s ease;
}
.btn-primary:hover .dot { transform: scale(1.5); }
.btn-instagram {
  background: #fff;
  color: var(--bg);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
}
.btn-instagram:hover {
  background: var(--mulberry);
  color: #fff;
  padding-right: 2rem;
}
.btn-instagram svg {
  transition: transform 0.5s ease;
}
.btn-instagram:hover svg { transform: scale(1.1); }
.btn-link {
  color: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-link:hover {
  color: var(--mulberry);
  border-color: var(--mulberry);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 4rem;
}
.hero-dots button {
  height: 1px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(245, 242, 236, 0.3);
  transition: all 0.5s;
}
.hero-dots button.active {
  width: 3rem;
  background: var(--mulberry);
}
.hero-dots button:not(.active) {
  width: 1.5rem;
}
.hero-dots button:not(.active):hover {
  background: rgba(245, 242, 236, 0.5);
}

/* ========== SECTIONS ========== */
section { padding: 7rem 1.5rem; }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  max-width: 24ch;
}
h2 em { color: var(--brass); font-style: italic; }

/* About */
.about-copy { max-width: 65ch; margin: 0 auto; }
.about-copy p {
  color: rgba(245, 242, 236, 0.75);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Stats */
.stats {
  padding: 0 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-left: 1px solid var(--border);
}
.stat:first-child { border-left: 0; }
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--text);
}
.stat .label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 3rem;
  max-width: 1280px;
  margin: 3rem auto 0;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service .icon {
  color: var(--brass);
  margin-bottom: 0.75rem;
  transition: transform 0.5s ease;
}
.service:hover .icon { transform: scale(1.1); }
.service .n {
  color: var(--brass);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  display: block;
  margin-bottom: 0.75rem;
  transition: transform 0.5s ease;
}
.service:hover .n { transform: translateX(4px); }
.service h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.service p {
  color: rgba(245, 242, 236, 0.7);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}
.service .rule {
  height: 1px;
  width: 2rem;
  background: var(--border-light);
  margin-top: 1.25rem;
  transition: all 0.5s;
}
.service:hover .rule {
  width: 5rem;
  background: var(--mulberry);
}

/* Portfolio */
.portfolio-header {
  margin-bottom: 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.featured-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brass);
  display: block;
  margin-bottom: 1rem;
}
.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin: 0;
}
.featured-title em { color: var(--brass); font-style: italic; }
.featured-desc {
  color: rgba(245, 242, 236, 0.6);
  font-size: 0.95rem;
  font-weight: 300;
  margin-top: 0.75rem;
  max-width: 60ch;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 2rem auto 0;
}
.gallery figure {
  margin: 0;
  grid-column: span 12;
}
@media (min-width: 768px) {
  .gallery figure:first-child { grid-column: span 12; }
  .gallery figure:nth-child(3n+2) { grid-column: span 7; }
  .gallery figure:nth-child(3n+3) { grid-column: span 5; }
  .gallery figure:nth-child(3n+4) { grid-column: span 6; }
}
.gallery .img-wrap {
  overflow: hidden;
  border-radius: min(1vw, 12px);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.gallery figcaption .caption-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(245, 242, 236, 0.8);
}
.gallery figcaption .counter {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-ghost);
  flex-shrink: 0;
}

.project-meta {
  max-width: 1280px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
@media (min-width: 768px) { .project-meta { grid-template-columns: repeat(4, 1fr); } }
.project-meta dt {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-ghost);
  margin-bottom: 0.5rem;
}
.project-meta dd {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin: 0;
}

/* Ethos */
.ethos { background: var(--bg-surface); }
.ethos-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) { .ethos-inner { flex-direction: row; gap: 5rem; } }
.ethos-img { width: 100%; }
@media (min-width: 900px) { .ethos-img { width: 33%; } .ethos-text { width: 67%; } }
.ethos-img .img-wrap {
  overflow: hidden;
  border-radius: min(1vw, 12px);
}
.ethos-img img {
  aspect-ratio: 2/3;
  object-fit: cover;
  width: 100%;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.ethos-img:hover img { transform: scale(1.05); }
.ethos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 700px) { .ethos-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.ethos-grid p { color: rgba(245, 242, 236, 0.7); line-height: 1.7; }

/* Testimonial */
.testimonial { text-align: center; }
.testimonial .dots {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 3rem;
}
.testimonial .dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brass);
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  max-width: 50ch;
  margin: 0 auto 2rem;
  color: rgba(245, 242, 236, 0.9);
}
.testimonial cite {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-style: normal;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-surface);
  color: var(--text-muted);
  padding: 8rem 1.5rem 3rem;
  border-top: 1px solid rgba(201, 162, 74, 0.2);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 8rem;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; gap: 3rem; } }
.footer-cta { max-width: 35ch; }
.footer-cta .eyebrow { color: var(--brass); }
.footer-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.footer-cta p { color: rgba(245, 242, 236, 0.6); margin-bottom: 2.5rem; line-height: 1.6; }
.footer-cta a {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 4px;
  transition: all 0.3s;
}
.footer-cta a:hover { color: var(--brass); border-color: var(--brass); }

.footer-contact { text-align: left; }
@media (min-width: 768px) { .footer-contact { text-align: right; } }
.footer-contact .label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-ghost);
  margin-bottom: 0.75rem;
}
.footer-contact a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--brass); }
.footer-contact .phone {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer-contact .email {
  font-size: 1.25rem;
  text-decoration: underline;
  text-decoration-color: var(--border-light);
  text-underline-offset: 8px;
}
.footer-contact .location {
  font-size: 0.9rem;
  color: var(--text-faint);
  padding-top: 0.5rem;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand img { width: 3rem; height: 3rem; object-fit: contain; }
.footer-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  letter-spacing: 0.18em;
  color: var(--brass);
}
.footer-socials {
  display: flex;
  gap: 1.5rem;
}
.footer-socials a {
  color: var(--text-faint);
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--brass); }
.footer-copy {
  color: var(--text-ghost);
  text-align: center;
}
@media (min-width: 768px) { .footer-copy { text-align: right; } }

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  clip-path: inset(0 0 8% 0);
  transition: opacity 1.1s cubic-bezier(0.19, 1, 0.22, 1),
              transform 1.1s cubic-bezier(0.19, 1, 0.22, 1),
              clip-path 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; clip-path: none; }
}

/* ========== KEYFRAMES ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmerLine {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}
@keyframes kenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* ========== MULTIPAGE TEMPLATES ========== */
.page-hero { padding: 10rem 1.5rem 4rem; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero .eyebrow { font-size: .75rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--mulberry); display: block; margin-bottom: 1.5rem; }
.page-hero .eyebrow-brass { font-size: .75rem; letter-spacing: .3em; text-transform: uppercase; color: var(--brass); display: block; margin-bottom: 1rem; }
.page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.05; max-width: 22ch; margin: 0; }
.page-title em { color: var(--brass); font-style: italic; }
.page-hero .rule { height: 1px; width: 5rem; background: var(--brass); margin: 2rem 0; }
.page-lede { color: var(--text-muted); font-weight: 300; max-width: 60ch; font-size: 1.0625rem; }

/* Project page */
.project-section { padding: 4rem 1.5rem; }
.project-inner { max-width: 1200px; margin: 0 auto; }
.project-header { margin-bottom: 2.5rem; max-width: 60ch; }
.eyebrow-brass { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--brass); display: block; margin-bottom: 1rem; }
.project-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.25rem); margin: 0 0 1rem; }
.project-title em { color: var(--brass); font-style: italic; }
.project-blurb { color: var(--text-muted); font-weight: 300; }
.project-cover img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; }
.gallery-item figcaption { display: flex; justify-content: space-between; gap: 1.5rem; margin-top: 1rem; font-size: .875rem; }
.gallery-item figcaption span:first-child { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--text-muted); }
.gallery-item figcaption .num { font-size: .65rem; letter-spacing: .3em; color: var(--text-ghost); text-transform: uppercase; flex-shrink: 0; }
.project-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.project-meta dt { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--text-ghost); margin-bottom: .5rem; }
.project-meta dd { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; margin: 0; }

/* CTA card */
.cta-card { padding: 4rem 1.5rem 8rem; }
.cta-card-inner { max-width: 800px; margin: 0 auto; text-align: center; padding: 3rem 2rem; border: 1px dashed var(--border-light); border-radius: 12px; }
.cta-card-inner h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0 0 1rem; max-width: 28ch; margin-left: auto; margin-right: auto; }
.cta-card-inner p { color: var(--text-muted); font-weight: 300; max-width: 48ch; margin: 0 auto 2rem; }

/* Services page */
.services-section { padding: 4rem 1.5rem 6rem; max-width: 1200px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem 3rem; }
.service-card { display: flex; flex-direction: column; }
.service-num { color: var(--brass); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: .875rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 .75rem; }
.service-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; margin: 0; }
.service-rule { height: 1px; width: 2rem; background: var(--border-light); margin-top: 1.25rem; transition: width .5s, background .5s; }
.service-card:hover .service-rule { width: 5rem; background: var(--mulberry); }

/* About / Ethos pages */
.about-section { padding: 2rem 1.5rem 6rem; }
.about-inner { max-width: 800px; margin: 0 auto; }
.about-copy p { color: var(--text-muted); font-weight: 300; font-size: 1.0625rem; line-height: 1.75; margin: 0 0 1.5rem; }
.ethos-section { padding: 4rem 1.5rem 8rem; background: var(--bg-surface); }
.ethos-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: center; }
.ethos-image img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 8px; }
.ethos-copy .eyebrow { font-size: .75rem; letter-spacing: .3em; text-transform: uppercase; color: var(--mulberry); display: block; margin-bottom: 2rem; }
.ethos-copy h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.5rem); margin: 0 0 2rem; max-width: 18ch; }
.ethos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.ethos-grid p { color: var(--text-muted); line-height: 1.7; margin: 0; }
@media (max-width: 768px) { .ethos-inner, .ethos-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Contact page */
.contact-section { padding: 2rem 1.5rem 8rem; }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
@media (max-width: 768px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.eyebrow-small { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--text-ghost); display: block; margin-bottom: .5rem; }
.contact-large { font-family: 'Cormorant Garamond', serif; font-size: 1.375rem; color: var(--text); text-decoration: none; transition: color .3s; }
.contact-large:hover { color: var(--mulberry); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; background: var(--bg-surface); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border); }
.contact-form label { display: flex; flex-direction: column; gap: .5rem; }
.contact-form label > span { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text-faint); }
.contact-form input, .contact-form textarea { background: transparent; border: none; border-bottom: 1px solid var(--border-light); color: var(--text); padding: .65rem 0; font-family: inherit; font-size: 1rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-bottom-color: var(--mulberry); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-success, .form-error { padding: 1.25rem 1.5rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: .95rem; }
.form-success { background: rgba(184, 151, 62, 0.12); border: 1px solid var(--brass); color: var(--text); }
.form-error { background: rgba(220, 80, 80, 0.1); border: 1px solid rgba(220, 80, 80, 0.4); color: #f3c0c0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .9rem 1.5rem; font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border-radius: 4px; border: 0; cursor: pointer; transition: background .3s, color .3s; }
.btn-primary { background: var(--mulberry); color: #0c0a09; }
.btn-primary:hover { background: var(--brass); color: #fff; }
