/* ═══════════════════════════════════════════════════
   MACAK & CO. — Design System v2.0
   Editorial luxury / warm ink & gold
═══════════════════════════════════════════════════ */

:root {
  --ink: #0a0a0a;
  --ink-soft: #1a1815;
  --paper: #f5f0eb;
  --cream: #ede7df;
  --warm: #c9b99a;
  --accent: #8b6914;
  --accent-light: #b8941f;
  --muted: #6b635a;
  --light-muted: #9a9189;
  --white: #fefcf9;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: var(--accent); color: var(--white); }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════ UTILITIES ═══════════ */
.container { max-width: 1300px; margin: 0 auto; padding: 0 3rem; }
.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.section-label.light { color: var(--warm); }
.section-label.light::before { background: var(--warm); }
.section-label.center { justify-content: center; }

/* ═══════════ BUTTONS ═══════════ */
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 105, 20, 0.25);
}
.btn-outline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline.light { color: var(--warm); border-color: var(--warm); }
.btn-outline.light:hover { background: var(--warm); color: var(--ink); }
.btn-ghost {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-muted);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-ghost:hover { color: var(--warm); }
.btn-ghost .arrow { transition: transform 0.3s; font-size: 1.1rem; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ═══════════ 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;
  transition: all 0.5s ease;
}
nav.dark-mode {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.15) 70%, transparent 100%);
}
nav.dark-mode .nav-logo,
nav.dark-mode .nav-links a { color: var(--paper); }
nav.dark-mode .nav-cta { border-color: rgba(245, 240, 235, 0.5); color: var(--paper); }
nav.dark-mode .nav-toggle span { background: var(--paper); }
nav.scrolled {
  background: rgba(245, 240, 235, 0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
nav.scrolled .nav-logo,
nav.scrolled .nav-links a,
nav.scrolled .nav-cta { color: var(--ink) !important; }
nav.scrolled .nav-cta { border-color: var(--ink) !important; }
nav.scrolled .nav-toggle span { background: var(--ink) !important; }

.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
}
nav.dark-mode .nav-logo,
nav.dark-mode .nav-links a { color: var(--paper); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { opacity: 0.7; }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: all 0.3s;
}
nav.dark-mode .nav-cta { border-color: var(--paper); color: var(--paper); }
.nav-cta:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
  display: block;
}
nav.dark-mode .nav-toggle span { background: var(--paper); }

/* Mobile nav */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-overlay.open { display: flex; opacity: 1; }
.mobile-overlay a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--paper);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-overlay a:hover { color: var(--warm); }

/* ═══════════ COOKIE CONSENT ═══════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ink);
  border-top: 1px solid rgba(201, 185, 154, 0.15);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden { display: none; }
.cookie-text {
  font-size: 0.85rem;
  color: var(--light-muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 700px;
}
.cookie-text a {
  color: var(--warm);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-buttons {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-accept {
  background: var(--accent);
  color: var(--white);
}
.cookie-accept:hover { background: var(--accent-light); }
.cookie-decline {
  background: transparent;
  color: var(--light-muted);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.3); color: var(--paper); }

/* ═══════════ PAGE HEADERS ═══════════ */
.page-header {
  padding: 10rem 3rem 5rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 105, 20, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 185, 154, 0.3), transparent);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .section-label { color: var(--warm); }
.page-header .section-label::before { background: var(--warm); }
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--paper);
  max-width: 700px;
}
.page-header h1 em { font-style: italic; color: var(--warm); }
.page-header .page-header-sub {
  font-size: 1.05rem;
  color: var(--light-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 550px;
  margin-top: 1.5rem;
}

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 105, 20, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 185, 154, 0.3), transparent);
}
.hero-badge {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--paper);
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.5s forwards;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--warm); }
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 300;
  color: var(--light-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}
.hero-cta {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--warm);
  animation: scrollDown 2s ease infinite;
}

/* ═══════════ SECTIONS ═══════════ */
.section-light { background: var(--paper); padding: 7rem 0; }
.section-cream { background: var(--cream); padding: 7rem 0; }
.section-white { background: var(--white); padding: 7rem 0; }
.section-dark { background: var(--ink); padding: 7rem 0; }

/* ═══════════ INTRO GRID ═══════════ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.intro-grid h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}
.intro-grid h2 em { font-style: italic; color: var(--accent); }
.intro-text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}
.intro-text p + p { margin-top: 1.5rem; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ═══════════ SERVICES GRID ═══════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.service-card {
  padding: 3rem 2.5rem;
  background: var(--ink);
  transition: all 0.5s ease;
  position: relative;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2.5rem;
  right: 2.5rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: rgba(139, 105, 20, 0.04); }
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.9;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 1rem;
}
.service-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--light-muted);
  font-weight: 300;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.service-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(201, 185, 154, 0.2);
  color: var(--warm);
  transition: all 0.3s;
}
.service-card:hover .service-tag { border-color: rgba(201, 185, 154, 0.4); }

/* ═══════════ SERVICE DETAILS ═══════════ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: start;
}
.service-detail:last-child { border-bottom: none; }
.service-detail-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.service-detail h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.service-detail h3 em { font-style: italic; color: var(--accent); }
.service-detail-tagline {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  font-style: italic;
}
.service-detail-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}
.service-detail-body p + p { margin-top: 1.2rem; }
.service-detail-list {
  list-style: none;
  margin-top: 1.5rem;
}
.service-detail-list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-weight: 300;
}
.service-detail-list li::before {
  content: '—';
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
}

/* ═══════════ MARQUEE ═══════════ */
.marquee-section { padding: 4rem 0; overflow: hidden; }
.marquee-section .languages-label {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--ink);
  white-space: nowrap;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.marquee-item:hover { opacity: 1; }
.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════ PROCESS ═══════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.process-step {
  padding: 3rem 2rem 3rem 0;
  border-right: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}
.step-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.process-step h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.process-step p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

/* ═══════════ PRICING ═══════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.price-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  background: var(--white);
}
.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.price-card.featured { background: var(--ink); border-color: var(--ink); }
.price-card.featured:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.price-card.featured * { color: var(--paper); }
.price-card.featured .price-tier { color: var(--warm); }
.price-card.featured .price-tag-label { color: var(--warm); }
.price-card.featured .price-feature { color: var(--light-muted); border-color: rgba(255,255,255,0.08); }
.price-card.featured .price-feature::before { color: var(--warm); }
.price-tier {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.price-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.price-tag-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.price-features { list-style: none; }
.price-feature {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-weight: 300;
}
.price-feature::before {
  content: '—';
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
}
.price-card-cta { margin-top: 2rem; }

/* ═══════════ VALUES ═══════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.value-item {
  position: relative;
  padding-top: 2rem;
}
.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}
.value-item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.value-item p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

/* ═══════════ ABOUT ═══════════ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.about-story-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.about-story-text h2 em { font-style: italic; color: var(--accent); }
.about-story-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}
.about-story-text p + p { margin-top: 1.5rem; }
.about-story-text p strong { color: var(--ink); font-weight: 500; }
.about-sidebar {
  background: var(--white);
  padding: 3rem;
  border: 1px solid rgba(0,0,0,0.06);
}
.about-sidebar h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.about-sidebar-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.about-sidebar-item:last-child { border-bottom: none; }
.about-sidebar-item .label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light-muted);
  margin-bottom: 0.3rem;
}
.about-sidebar-item .value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
}
.mission-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 5rem;
  align-items: start;
}
.mission-grid h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--paper);
}
.mission-grid h2 em { font-style: italic; color: var(--warm); }
.mission-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--light-muted);
  font-weight: 300;
}
.mission-text p + p { margin-top: 1.5rem; }

/* ═══════════ CONTACT FORM ═══════════ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--light-muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23c9b99a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-field select option { background: var(--white); color: var(--ink); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.2rem 2.5rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 105, 20, 0.25);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ═══════════ CTA BAND ═══════════ */
.cta-band {
  background: var(--ink);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 105, 20, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--paper);
  margin-bottom: 1rem;
  position: relative;
}
.cta-band h2 em { font-style: italic; color: var(--warm); }
.cta-band p {
  font-size: 1rem;
  color: var(--light-muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  position: relative;
}
.cta-band .btn-primary { position: relative; }

/* ═══════════ FOOTER ═══════════ */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 3rem 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 300;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--paper); }

/* ═══════════ LEGAL PAGES ═══════════ */
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--ink);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1rem;
}
.legal-content p strong { color: var(--ink); font-weight: 500; }
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content ul {
  list-style: none;
  margin: 1rem 0;
}
.legal-content ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ═══════════ PRICING TABLES ═══════════ */
.pricing-table {
  width: 100%;
  margin-top: 2rem;
  border-collapse: collapse;
}
.pricing-table th {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: left;
  padding: 1rem 0;
  border-bottom: 2px solid rgba(0,0,0,0.1);
}
.pricing-table td {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: top;
}
.pricing-table td:first-child {
  color: var(--ink);
  font-weight: 400;
  padding-right: 2rem;
}
.pricing-table td:last-child {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 500;
  white-space: nowrap;
}
.pricing-category { margin-bottom: 5rem; }
.pricing-category:last-child { margin-bottom: 0; }
.pricing-category h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.pricing-category h3 em { font-style: italic; color: var(--accent); }
.pricing-category-desc {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}
.pricing-note {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}
.pricing-note strong { color: var(--ink); font-weight: 500; }

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); padding: 2.5rem 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .mission-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 0 1.5rem 4rem; }
  .hero-scroll { display: none; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .page-header { padding: 8rem 1.5rem 3.5rem; }
  .section-light, .section-cream, .section-white, .section-dark { padding: 4.5rem 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2.5rem 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal { justify-content: center; }
  .cookie-banner { flex-direction: column; padding: 1.5rem; gap: 1rem; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
