/* ============================================
   ArtSesje.pl — Luxury Dark Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ─── CSS Variables ─── */
:root {
  --black:     #0a0a0a;
  --deep:      #111111;
  --surface:   #1a1a1a;
  --border:    rgba(255,255,255,0.07);
  --gold:      #c9a96e;
  --gold-lt:   #e8d5b0;
  --gold-dk:   #9a7a48;
  --white:     #f5f0eb;
  --muted:     rgba(245,240,235,0.55);
  --font-disp: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --slow:      cubic-bezier(0.16, 1, 0.3, 1);
  --radius:    2px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover { color: var(--gold); }

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }

/* ─── Grain Overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── Loader ─── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-disp);
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 120px;
  height: 1px;
  background: var(--border);
  margin: 1rem auto 0;
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: loaderLine 1.5s var(--ease) infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes loaderLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ─── Navigation ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}

#nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--gold);
  font-weight: 300;
}

.nav-logo span { font-style: normal; font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  border: 1px solid rgba(201,169,110,0.4) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius) !important;
  transition: background 0.3s var(--ease), color 0.3s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  display: block;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── Mobile Nav ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
}

.mobile-nav li {
  margin: 1.5rem 0;
  overflow: hidden;
}

.mobile-nav a {
  font-family: var(--font-disp);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.5s var(--slow), color 0.3s;
}

.mobile-nav.open a {
  transform: translateY(0);
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-nav li:nth-child(2) a { transition-delay: 0.15s; }
.mobile-nav li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-nav li:nth-child(4) a { transition-delay: 0.25s; }
.mobile-nav li:nth-child(5) a { transition-delay: 0.3s; }

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1208 50%, #0a0a0a 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.04) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 1px;
  height: 1px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--slow) 0.3s forwards;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--slow) 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 420px;
  margin-top: 2rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--slow) 0.8s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--slow) 1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s var(--slow) 1.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── Decorative Lines ─── */
.deco-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  display: inline-block;
  vertical-align: middle;
  margin: 0 1rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}

.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-lt);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,169,110,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg { transform: translateX(3px); }

/* ─── Section Basics ─── */
section {
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-padding {
  padding: 7rem 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

.section-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.9;
  margin-top: 1.5rem;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--slow), transform 0.9s var(--slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--slow), transform 0.9s var(--slow);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--slow), transform 0.9s var(--slow);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ─── Services Section ─── */
.services {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--border);
}

.service-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
  cursor: pointer;
  display: block;
  color: var(--white);
}

.service-card:last-child { border-right: none; }

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 0;
  background: linear-gradient(to top, rgba(201,169,110,0.05), transparent);
  transition: height 0.5s var(--ease);
}

.service-card:hover::before { height: 100%; }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}

.service-card:hover::after { width: 100%; }

.service-number {
  font-family: var(--font-disp);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,169,110,0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s var(--ease);
}

.service-card:hover .service-number {
  color: rgba(201,169,110,0.25);
}

.service-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.4s var(--ease);
}

.service-card:hover .service-icon {
  opacity: 1;
  transform: scale(1.1);
}

.service-title {
  font-family: var(--font-disp);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.service-card:hover .service-title { color: var(--gold-lt); }

.service-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateX(0);
}

/* ─── About / Philosophy Section ─── */
.about {
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-frame {
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about-frame-inner {
  position: absolute;
  inset: 1.5rem;
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, rgba(201,169,110,0.02) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-frame-text {
  font-family: var(--font-disp);
  font-size: 6rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  text-align: center;
  animation: slowRotate 20s linear infinite;
}

@keyframes slowRotate {
  from { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.05); }
  to { transform: rotate(-5deg) scale(1); }
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: rotateBadge 12s linear infinite;
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-badge-text {
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 600;
  line-height: 1.6;
}

.about-content .section-title {
  margin-bottom: 2rem;
}

.about-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-body p:first-child {
  font-size: 1.1rem;
  color: var(--white);
  font-style: italic;
  font-family: var(--font-disp);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-disp);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ─── Quote Band ─── */
.quote-band {
  background: linear-gradient(135deg, var(--surface) 0%, #1a1510 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  overflow: hidden;
}

.quote-inner {
  text-align: center;
}

.quote-mark {
  font-family: var(--font-disp);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.5;
  margin-bottom: 1rem;
}

.quote-text {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  color: var(--white);
}

.quote-author {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2rem;
}

/* ─── Process Section ─── */
.process {
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dk), transparent);
  z-index: 0;
}

.process-step {
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background: var(--black);
  border: 1px solid var(--gold-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-disp);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  transition: background 0.3s, border-color 0.3s;
}

.process-step:hover .step-number {
  background: var(--gold);
  color: var(--black);
}

.step-title {
  font-family: var(--font-disp);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.step-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── CTA Section ─── */
.cta-section {
  background: var(--black);
  text-align: center;
  padding: 8rem 0;
}

.cta-section .section-title {
  margin-bottom: 1.5rem;
}

.cta-section .section-lead {
  margin: 0 auto 3rem;
  text-align: center;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-disp);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 3rem;
}

.cta-phone svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* ─── Footer ─── */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .nav-logo {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--gold-lt);
  padding-left: 0.5rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.footer-contact a:hover { color: var(--gold-lt); }

.footer-contact svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(245,240,235,0.3);
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(245,240,235,0.3);
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--gold); }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1208 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,169,110,0.07) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.breadcrumb a { color: var(--gold); }

.breadcrumb-sep { opacity: 0.3; }

/* ─── Content Section (inner pages) ─── */
.content-section {
  background: var(--black);
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: start;
}

.content-body h2 {
  font-family: var(--font-disp);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-lt);
  margin: 2.5rem 0 1rem;
}

.content-body h2:first-child { margin-top: 0; }

.content-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 1.2rem;
}

.content-body p:first-of-type {
  font-size: 1.1rem;
  color: var(--white);
  font-family: var(--font-disp);
  font-style: italic;
  line-height: 1.7;
}

.content-sidebar {
  position: sticky;
  top: 7rem;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.sidebar-card-title {
  font-family: var(--font-disp);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.sidebar-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--surface), #1a1510);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 2.5rem;
  text-align: center;
}

.sidebar-cta p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ─── Gallery Placeholder ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 4rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-disp);
  font-size: 2rem;
  font-style: italic;
  color: rgba(201,169,110,0.15);
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover .gallery-item-inner {
  transform: scale(1.05);
}

/* ─── Marquee ─── */
.marquee-section {
  overflow: hidden;
  padding: 2rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  gap: 4rem;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-disp);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Animations ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .container { padding: 0 2rem; }
  #nav { padding: 1.5rem 2rem; }
  #nav.scrolled { padding: 1rem 2rem; }
  .about-grid { gap: 4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 2rem; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 5rem); }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process-steps::before { display: none; }

  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .section-padding { padding: 5rem 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
