/* ===================== RESET & BASE ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #0B0906;
  background: #F4EFE6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; color: inherit; }

/* ===================== TOKENS ===================== */
:root {
  --ink: #0B0906;
  --ink-soft: #1a120a;
  --ivory: #F4EFE6;
  --ivory-2: #EAE3D6;
  --ivory-3: #DDD3C0;
  --copper: #B87333;
  --copper-soft: #8C5A2B;
  --copper-glow: rgba(184, 115, 51, 0.15);
  --bone: #D9CFC0;
  --leather: #3E2A1C;
  --leather-dark: #2a1d12;
}

/* ===================== TYPOGRAPHY ===================== */
.serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; letter-spacing: 0.01em; }
.italic { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 300; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--copper); }
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { display: none; }
.eyebrow-center .line { width: 30px; height: 1px; background: var(--copper); }

/* ===================== LOADER ===================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease, visibility 1s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--ivory);
  overflow: hidden;
}
.loader-logo span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: loader-letter 0.7s ease forwards;
}
@keyframes loader-letter { to { opacity: 1; transform: translateY(0); } }
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(184, 115, 51, 0.2);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  animation: loader-progress 1.8s ease forwards;
}
@keyframes loader-progress { to { transform: scaleX(1); } }
.loader-content { text-align: center; }

/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: all 0.5s ease;
}
.nav.scrolled {
  background: rgba(244, 239, 230, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(11, 9, 6, 0.06);
}
.nav.dark { color: var(--ivory); }
.nav.dark .logo, .nav.dark .nav-links a { color: var(--ivory); }
.nav.dark .nav-cta { border-color: var(--ivory); color: var(--ivory); }
.nav.dark .nav-cta:hover { background: var(--ivory); color: var(--ink); }
.nav.dark .nav-burger span { background: var(--ivory); }
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.1;
  transition: color 0.5s;
}
.logo .mark { color: var(--copper); font-style: italic; }
.logo small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  font-family: 'Inter', sans-serif;
  color: var(--copper);
  margin-top: 2px;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width 0.4s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--copper); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 10px 20px;
  transition: all 0.3s;
  font-weight: 400;
}
.nav-cta:hover { background: var(--ink); color: var(--ivory); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; padding: 8px; }
.nav-burger span { width: 24px; height: 1px; background: var(--ink); transition: all 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
.mobile-menu-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-style: italic;
  color: var(--ivory);
  font-weight: 300;
  transition: color 0.3s;
}
.mobile-menu-links a:hover { color: var(--copper); }

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-block;
  background: var(--copper);
  color: var(--ink);
  padding: 16px 32px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  font-weight: 500;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--ivory);
  transition: left 0.4s ease;
}
.btn-primary span { position: relative; z-index: 2; }
.btn-primary:hover::before { left: 0; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ivory);
  padding: 16px 0;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid var(--copper);
  font-weight: 400;
  transition: all 0.3s;
}
.btn-ghost:hover { color: var(--copper); letter-spacing: 0.4em; }

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 16px 32px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  font-weight: 400;
  transition: all 0.3s;
}
.btn-outline-dark:hover { background: var(--ink); color: var(--ivory); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  display: flex;
  align-items: flex-end;
}
.hero.hero-medium { height: 70vh; min-height: 560px; }
.hero-bg {
  position: absolute;
  inset: -5% 0;
  background-size: cover;
  background-position: center 35%;
  filter: grayscale(0.5) contrast(1.05) brightness(0.7);
  will-change: transform;
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,9,6,0.4) 0%, rgba(11,9,6,0.3) 40%, rgba(11,9,6,0.85) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(184,115,51,0.1), transparent 70%);
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 8rem;
  max-width: 960px;
  width: 100%;
}
.hero-medium .hero-content { padding-bottom: 5rem; }
.hero-eyebrow {
  opacity: 0;
  animation: fade-up 1s ease 0.8s forwards;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.015em;
  margin: 2rem 0 2rem;
  color: var(--ivory);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .word {
  display: inline-block;
  transform: translateY(110%);
  animation: hero-reveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero h1 .word.d1 { animation-delay: 1.0s; }
.hero h1 .word.d2 { animation-delay: 1.1s; }
.hero h1 .word.d3 { animation-delay: 1.25s; }
.hero h1 .word.d4 { animation-delay: 1.4s; }
.hero h1 .word.d5 { animation-delay: 1.55s; }
.hero h1 em { font-style: italic; color: var(--copper); font-weight: 300; }
@keyframes hero-reveal { to { transform: translateY(0); } }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--bone);
  max-width: 540px;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0;
  animation: fade-up 1s ease 1.8s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s ease 2.1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 4rem;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--bone);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  opacity: 0;
  animation: fade-up 1s ease 2.4s forwards;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--copper), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
.hero-badge {
  position: absolute;
  top: 8rem; right: 4rem;
  border: 1px solid rgba(184, 115, 51, 0.5);
  padding: 10px 18px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  z-index: 3;
  opacity: 0;
  animation: fade-up 1s ease 2.4s forwards;
  backdrop-filter: blur(8px);
  background: rgba(11, 9, 6, 0.3);
}
.hero-side-text {
  position: absolute;
  right: 2rem;
  bottom: 8rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(217, 207, 192, 0.6);
  opacity: 0;
  animation: fade-up 1s ease 2.6s forwards;
  z-index: 3;
}

/* BREADCRUMB pour pages intérieures */
.breadcrumb {
  display: flex;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fade-up 1s ease 0.6s forwards;
}
.breadcrumb a { color: var(--bone); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb .sep { color: var(--copper); }

/* ===================== TICKER ===================== */
.ticker {
  background: var(--ink);
  color: var(--bone);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(184, 115, 51, 0.15);
  border-bottom: 1px solid rgba(184, 115, 51, 0.15);
}
.ticker-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.ticker-item::before {
  content: '✦';
  color: var(--copper);
  font-size: 16px;
  font-style: normal;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== SECTIONS ===================== */
section { padding: 8rem 4rem; position: relative; }
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 6rem;
}
.section-header .eyebrow-center {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  color: var(--copper);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
}
.section-header h2 em { font-style: italic; color: var(--copper-soft); }
.section-header p.intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: #5a4a38;
  font-weight: 300;
}

/* ===================== PORTRAIT / L'HOMME ===================== */
.portrait-section { background: var(--ivory); }
.portrait-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.portrait-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.portrait-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) contrast(1.05);
  transition: transform 1.2s ease;
}
.portrait-img-wrap:hover .portrait-img { transform: scale(1.04); }
.portrait-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(244, 239, 230, 0.3);
  pointer-events: none;
}
.portrait-label {
  position: absolute;
  bottom: 2rem; left: 2rem;
  color: var(--ivory);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  z-index: 2;
}
.portrait-label::before {
  content: ''; display: block;
  width: 30px; height: 1px;
  background: var(--copper);
  margin-bottom: 8px;
}
.portrait-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  margin: 1.5rem 0 2rem;
}
.portrait-text h3 em { font-style: italic; color: var(--copper-soft); }
.portrait-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--leather);
  margin-bottom: 2rem;
  font-weight: 300;
  padding-left: 1.5rem;
  border-left: 1px solid var(--copper);
}
.portrait-text p {
  font-size: 14px;
  line-height: 1.9;
  color: #3a2f25;
  margin-bottom: 1.25rem;
}
.signature {
  margin-top: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--copper-soft);
  font-weight: 500;
  transform: rotate(-2deg);
}
.signature-title {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a7b66;
  margin-top: 8px;
  font-weight: 400;
}

/* ===================== STATS ===================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 8rem;
  border-top: 1px solid rgba(11, 9, 6, 0.12);
  border-bottom: 1px solid rgba(11, 9, 6, 0.12);
  background: var(--ivory-2);
}
.stat {
  padding: 3rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(11, 9, 6, 0.08);
  position: relative;
  transition: background 0.4s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--ivory-3); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 300;
  color: var(--leather);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.stat-num em { font-style: italic; color: var(--copper); }
.stat-num .unit { font-size: 0.5em; color: #8a7b66; }
.stat-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6b5a47;
  margin-top: 14px;
  font-weight: 400;
}

/* ===================== SERVICES / UNIVERS ===================== */
.services { background: var(--ink); color: var(--ivory); }
.services .section-header h2 { color: var(--ivory); }
.services .section-header p.intro { color: var(--bone); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184, 115, 51, 0.2);
  max-width: 1300px;
  margin: 0 auto;
}
.services-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.service {
  background: var(--ink);
  padding: 3rem 2.5rem;
  transition: background 0.5s;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--copper);
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service:hover { background: #140F0A; }
.service:hover::before { width: 100%; }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--copper);
  letter-spacing: 0.2em;
  margin-bottom: 2.5rem;
}
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 2rem;
  transition: transform 0.5s;
}
.service:hover .service-icon { transform: rotate(8deg) scale(1.05); }
.service h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: var(--ivory);
}
.service h4 em { font-style: italic; color: var(--copper); }
.service p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--bone);
  margin-bottom: 2rem;
  flex-grow: 1;
}
.service-link {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  font-weight: 400;
}
.service-link-arrow {
  width: 30px; height: 1px;
  background: var(--copper);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service:hover .service-link-arrow { width: 60px; }

/* ===================== QUOTE BLOCK PARALLAX ===================== */
.quote-block {
  height: 80vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  text-align: center;
  padding: 0;
}
.quote-block-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.8) contrast(1.1) brightness(0.55);
  will-change: transform;
}
.quote-block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,9,6,0.6) 0%, rgba(11,9,6,0.4) 50%, rgba(11,9,6,0.7) 100%);
}
.quote-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  line-height: 0.3;
  color: var(--copper);
  opacity: 0.4;
  margin-bottom: 2rem;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 2.5rem;
}
.quote-author {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 2rem;
}

/* ===================== SHOWCASE GALLERY ===================== */
.showcase { background: var(--ivory); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 1.25rem;
  max-width: 1300px;
  margin: 0 auto;
}
.showcase-item {
  position: relative;
  overflow: hidden;
  background: var(--leather);
}
.showcase-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 9, 6, 0.9) 100%);
  z-index: 2;
  transition: opacity 0.5s;
}
.showcase-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4) contrast(1.05);
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.showcase-item:hover .showcase-img { transform: scale(1.08); }
.showcase-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.75rem;
  right: 1.75rem;
  color: var(--ivory);
  z-index: 3;
}
.showcase-caption .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-style: italic;
  color: var(--copper);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  display: block;
}
.showcase-caption h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  font-style: italic;
}
.s-1 { grid-column: span 5; grid-row: span 3; }
.s-2 { grid-column: span 4; grid-row: span 2; }
.s-3 { grid-column: span 3; grid-row: span 2; }
.s-4 { grid-column: span 4; grid-row: span 2; }
.s-5 { grid-column: span 3; grid-row: span 3; }

/* ===================== CONTENT SECTION - TWO COLS ===================== */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.two-cols.reverse .col-left { order: 2; }
.two-cols .col-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.two-cols .col-img-inner {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) contrast(1.05);
  transition: transform 1.2s ease;
}
.two-cols .col-img:hover .col-img-inner { transform: scale(1.04); }
.two-cols .col-img .frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(244, 239, 230, 0.3);
  pointer-events: none;
}
.two-cols h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  margin: 1.5rem 0 2rem;
}
.two-cols h3 em { font-style: italic; color: var(--copper-soft); }
.two-cols p {
  font-size: 14px;
  line-height: 1.9;
  color: #3a2f25;
  margin-bottom: 1.25rem;
}
.two-cols .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--leather);
  margin-bottom: 2rem;
  font-weight: 300;
  padding-left: 1.5rem;
  border-left: 1px solid var(--copper);
}
.two-cols ul { margin: 1.5rem 0; padding: 0; list-style: none; }
.two-cols ul li {
  font-size: 14px;
  line-height: 1.9;
  color: #3a2f25;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.two-cols ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 12px;
}

/* ===================== PRICING CARDS ===================== */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.price-card {
  background: var(--ivory);
  padding: 3rem 2.5rem;
  position: relative;
  border: 1px solid rgba(11, 9, 6, 0.08);
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}
.price-card:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
}
.price-card.featured {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--copper);
}
.price-card.featured h4 { color: var(--ivory); }
.price-card.featured p, .price-card.featured li { color: var(--bone); }
.price-card.featured .price-value { color: var(--ivory); }
.price-tag {
  position: absolute;
  top: -1px; right: -1px;
  background: var(--copper);
  color: var(--ink);
  padding: 6px 14px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}
.price-card .num-small {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-style: italic;
  color: var(--copper);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.price-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.price-card h4 em { font-style: italic; color: var(--copper-soft); }
.price-card .price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--leather);
  line-height: 1;
  margin: 1.5rem 0 1rem;
}
.price-card .price-value em { font-style: italic; color: var(--copper); }
.price-card .price-value .cur { font-size: 0.6em; color: #8a7b66; margin-right: 4px; }
.price-card .price-duration {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8a7b66;
  margin-bottom: 2rem;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}
.price-card ul li {
  font-size: 13px;
  line-height: 1.9;
  color: #3a2f25;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.price-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 14px;
}
.price-card .btn-primary { margin-top: auto; }

/* ===================== CIRCUIT CARDS ===================== */
.circuits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.circuit {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.circuit-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) contrast(1.05);
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.circuit:hover .circuit-img { transform: scale(1.08); }
.circuit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,9,6,0.2) 0%, rgba(11,9,6,0.3) 50%, rgba(11,9,6,0.95) 100%);
  z-index: 2;
  transition: opacity 0.4s;
}
.circuit-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 3;
  color: var(--ivory);
}
.circuit-content .eyebrow { color: var(--copper); margin-bottom: 0.75rem; }
.circuit-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  font-style: italic;
}
.circuit-content p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--bone);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.circuit:hover .circuit-content p { max-height: 200px; margin-top: 0.5rem; }
.circuit-duration {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--copper);
  margin-top: 0.75rem;
}

/* ===================== HORSE BREED CARDS ===================== */
.breeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}
.breed {
  position: relative;
  overflow: hidden;
}
.breed-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}
.breed-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) contrast(1.05);
  transition: transform 1.2s ease;
}
.breed:hover .breed-img { transform: scale(1.04); }
.breed-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--copper);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.breed h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  margin: 0 0 1.5rem;
  line-height: 1.1;
}
.breed h3 em { font-style: italic; color: var(--copper-soft); }
.breed p {
  font-size: 14px;
  line-height: 1.9;
  color: #3a2f25;
  margin-bottom: 1.25rem;
}
.breed-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 2rem 0;
  border-top: 1px solid rgba(11, 9, 6, 0.12);
}
.breed-spec {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(11, 9, 6, 0.08);
}
.breed-spec:nth-child(odd) { padding-right: 1rem; }
.breed-spec-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a7b66;
  margin-bottom: 6px;
}
.breed-spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--leather);
}

/* ===================== CONTACT ===================== */
.contact {
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.contact-bg-accent {
  position: absolute;
  top: -10%; right: -5%;
  width: 40%; height: 70%;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  mix-blend-mode: screen;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-info-block .eyebrow { color: var(--copper); }
.contact-info-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  margin: 1.5rem 0 2rem;
  color: var(--ivory);
}
.contact-info-block h2 em { font-style: italic; color: var(--copper); }
.contact-info-block p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--bone);
  max-width: 440px;
  margin-bottom: 3rem;
}
.contact-info-detail {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 2;
  color: var(--ivory);
  border-top: 1px solid rgba(184, 115, 51, 0.3);
  padding-top: 2rem;
  font-weight: 300;
}
.contact-info-detail strong {
  font-weight: 500;
  color: var(--copper);
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  margin-top: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
  position: relative;
}
.form-field label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 400;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 239, 230, 0.25);
  color: var(--ivory);
  padding: 12px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  outline: none;
  transition: border-color 0.4s;
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-bottom-color: var(--copper); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(244, 239, 230, 0.3); }
.form-field select option { background: var(--ink); color: var(--ivory); }
.form-submit {
  background: var(--copper);
  color: var(--ink);
  border: none;
  padding: 18px 40px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 1.5rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.form-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--ivory);
  transition: left 0.5s ease;
}
.form-submit span { position: relative; z-index: 2; }
.form-submit:hover::before { left: 0; }

/* ===================== SHOP / BOUTIQUE ===================== */
.shop-hero-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  background: var(--ivory-2);
  border: 1px solid rgba(11, 9, 6, 0.1);
}
.shop-hero-placeholder .copper-circle {
  width: 80px; height: 80px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-style: italic;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.shop-product {
  position: relative;
  cursor: pointer;
}
.shop-product-img {
  aspect-ratio: 3/4;
  background: var(--ivory-3);
  margin-bottom: 1.25rem;
  overflow: hidden;
  position: relative;
}
.shop-product-img-inner {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) contrast(1.05);
  transition: transform 1.2s ease;
}
.shop-product:hover .shop-product-img-inner { transform: scale(1.06); }
.shop-product-img .badge-soon {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--copper);
  color: var(--ink);
  padding: 6px 12px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.shop-product h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 0.5rem;
  transition: color 0.3s;
}
.shop-product:hover h4 { color: var(--copper-soft); }
.shop-product-cat {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.shop-product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--leather);
  font-weight: 400;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #050302;
  color: var(--bone);
  padding: 5rem 4rem 2.5rem;
  border-top: 1px solid rgba(184, 115, 51, 0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto 4rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.footer-logo .mark { color: var(--copper); font-style: italic; }
.footer-logo small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  font-family: 'Inter', sans-serif;
  color: var(--copper);
  margin-top: 4px;
  font-weight: 400;
}
.footer p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--bone);
  max-width: 320px;
}
.footer h6 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 1.75rem;
  font-weight: 400;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
}
.footer-links a {
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover {
  color: var(--copper);
  padding-left: 8px;
}
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(184, 115, 51, 0.15);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b5a47;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.shown { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-left.shown { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-right.shown { opacity: 1; transform: translateX(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal-stagger.shown > *:nth-child(1) { transition-delay: 0.0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.shown > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.shown > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.shown > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.shown > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger.shown > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* ===================== JOURNAL / BLOG ===================== */
.journal { background: var(--ivory-2); }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.article { position: relative; }
.article-img-wrap {
  aspect-ratio: 4/3;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.article-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4) contrast(1.05);
  transition: transform 1s ease;
}
.article:hover .article-img { transform: scale(1.06); }
.article-meta {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.meta-dot { width: 3px; height: 3px; background: var(--copper); border-radius: 50%; }
.article h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 0.75rem;
  transition: color 0.3s;
}
.article:hover h4 { color: var(--copper-soft); }
.article p { font-size: 13px; line-height: 1.8; color: #5a4a38; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  section { padding: 6rem 2rem; }
  .nav { padding: 1.25rem 2rem; }
  .nav.scrolled { padding: 0.9rem 2rem; }
  .hero-content { padding: 0 2rem 6rem; }
  .hero-scroll { left: 2rem; }
  .hero-badge { right: 2rem; top: 7rem; }
  .nav-links { gap: 1.5rem; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .portrait-grid, .contact-grid, .footer-grid, .two-cols, .breeds { grid-template-columns: 1fr; gap: 3rem; }
  .two-cols.reverse .col-left { order: 0; }
  .services-grid, .journal-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(11, 9, 6, 0.08); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(11, 9, 6, 0.08); }
  .showcase-grid { grid-template-columns: repeat(6, 1fr); }
  .s-1, .s-2, .s-3, .s-4, .s-5 { grid-column: span 6; grid-row: span 2; }
  .hero-scroll, .hero-badge, .hero-side-text { display: none; }
  .ticker-item { font-size: 20px; gap: 3rem; }
  .footer { padding: 4rem 2rem 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .quote-text { font-size: 22px; }
  .circuit-content p { max-height: 200px; margin-top: 0.5rem; }
}
