/* =============================================
   EISENFORMER — Professional Forge Design System
   Clean, warm, trustworthy — for Swiss KMU
   ============================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Backgrounds — warm, dark workshop feel */
  --bg-darkest:   #111111;
  --bg-dark:      #1a1a1a;
  --bg-surface:   #222222;
  --bg-elevated:  #2a2a2a;
  --bg-hover:     #333333;
  --bg-parchment: #f5f0e8;
  --bg-parchment-dark: #e0d8cc;

  /* Red — warm, professional (from the logo) */
  --red:           #c0392b;
  --red-light:     #d44637;
  --red-bright:    #e74c3c;
  --red-dim:       #962d22;
  --red-glow:      rgba(192, 57, 43, 0.2);

  /* Warm accents — subtle, not shiny */
  --gold:          #b8975a;
  --gold-light:    #d4b77a;
  --gold-bright:   #e0c88a;
  --gold-dim:      #8a7350;
  --bronze:        #a07a52;
  --copper:        #b87333;

  /* Text */
  --text-primary:   #e8e4de;
  --text-secondary: #a09888;
  --text-muted:     #6b6560;
  --text-gold:      #b8975a;
  --text-parchment: #f0ece4;
  --text-dark:      #1a1a18;

  /* Borders */
  --border:         #2d2d2d;
  --border-gold:    rgba(184, 151, 90, 0.2);
  --border-gold-strong: rgba(184, 151, 90, 0.4);

  /* Functional */
  --success: #6a9955;
  --error:   #a04040;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Typography — clean, professional */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-detail: 'Inter', sans-serif;

  --fs-xs:    0.8rem;
  --fs-sm:    0.9rem;
  --fs-base:  1rem;
  --fs-md:    1.1rem;
  --fs-lg:    1.2rem;
  --fs-xl:    1.5rem;
  --fs-2xl:   2rem;
  --fs-3xl:   2.2rem;
  --fs-4xl:   2.8rem;
  --fs-hero:  3.2rem;

  /* Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;

  /* Shadows — no glow, just depth */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.35);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold:  0 2px 16px rgba(0,0,0,0.2);
  --shadow-red:   0 2px 16px rgba(0,0,0,0.25);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 250ms;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-darkest);
  overflow-x: hidden;
}

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

a {
  color: var(--red-light);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

a:hover {
  color: var(--red-bright);
}

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); font-size: inherit; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ---------- Section ---------- */
.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
}

/* Section with background image */
.section-bg {
  position: relative;
  overflow: hidden;
}

.section-bg > .section-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg > .section-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.6);
}

.section-bg > .section-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.7) 0%,
    rgba(17, 17, 17, 0.3) 40%,
    rgba(17, 17, 17, 0.3) 60%,
    rgba(17, 17, 17, 0.7) 100%
  );
}

.section-bg > .container {
  position: relative;
  z-index: 1;
}

/* Clean section separator */
.section-torn {
  position: relative;
}

.section-torn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--border-gold-strong);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-parchment);
  margin-bottom: var(--space-md);
}

.section-header p {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Simple divider */
.section-header .accent-line {
  display: block;
  width: 48px;
  height: 3px;
  margin: var(--space-lg) auto 0;
  background: var(--red);
  border-radius: 2px;
  font-size: 0;
  color: transparent;
  overflow: hidden;
}

.section-header .accent-line::before,
.section-header .accent-line::after {
  display: none;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--dur) var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: all var(--dur) var(--ease);
  transform: translateX(-50%);
}

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

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

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-sm);
}

.nav-toggle span {
  width: 26px;
  height: 1.5px;
  background: var(--text-parchment);
  transition: all var(--dur) var(--ease);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 40%;
  filter: brightness(0.85) saturate(0.85);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom right,
      rgba(17, 17, 17, 0.3) 0%,
      rgba(17, 17, 17, 0.4) 25%,
      rgba(17, 17, 17, 0.55) 55%,
      rgba(17, 17, 17, 0.75) 100%
    );
  z-index: 1;
}

/* Subtle vignette */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, transparent 60%, rgba(17, 17, 17, 0.1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
}

.hero-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-lg);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-lg);
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero h1 .highlight {
  color: var(--red-light);
  -webkit-text-fill-color: var(--red-light);
}

.hero p {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-2xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* Decorative scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scroll-pulse 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '↓';
  font-size: var(--fs-lg);
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

/* ---------- CTA Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text-parchment);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.btn-sm {
  padding: 10px 22px;
  font-size: var(--fs-xs);
}

/* ---------- Features (open, no boxes) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3xl) var(--space-2xl);
}

.features-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  text-align: center;
  padding: 0 var(--space-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  color: var(--red);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.feature:hover .feature-icon {
  color: var(--red-light);
  transform: scale(1.1);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-parchment);
  margin-bottom: var(--space-sm);
}

.feature p {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.feature-link {
  text-decoration: none;
}

.feature-link:hover h3 {
  color: var(--red-light);
}

.feature-btn {
  display: inline-block;
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.feature-link:hover .feature-btn {
  color: var(--red-light);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .features, .features-4 {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  transition: all var(--dur) var(--ease);
  position: relative;
}

/* No ornamental corner */
.card::before {
  display: none;
}

.card:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-lg);
  color: var(--gold);
}

.card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-sm);
  color: var(--text-parchment);
}

.card p {
  color: var(--text-secondary);
  font-size: var(--fs-base);
  line-height: 1.8;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

/* ---------- Steps / Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
  padding-top: var(--space-xl);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-gold-strong);
  border-radius: 50%;
  color: var(--text-parchment);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  margin: 0 auto var(--space-lg);
}

.step h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
  color: var(--text-parchment);
}

.step p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

/* Connector line between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: calc(var(--space-xl) + 26px);
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), transparent 80%);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur) var(--ease);
}

.gallery-item:hover {
  border-color: rgba(255,255,255,0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.85);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: saturate(1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,8,6,0.8) 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

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

.gallery-item .label {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--dur) var(--ease);
}

.gallery-item:hover .label {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- FAQ / Accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-parchment);
  text-align: left;
  transition: color var(--dur) var(--ease);
}

.faq-question:hover {
  color: var(--red-light);
}

.faq-question .icon {
  font-size: var(--fs-xl);
  transition: transform var(--dur) var(--ease);
  color: var(--gold-dim);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
  color: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: var(--space-lg);
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Forms ---------- */
.form-container {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-darkest);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: var(--fs-base);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a84c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* ---------- Pricing Table ---------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-xl) 0;
}

.pricing-table th,
.pricing-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-table td {
  font-size: var(--fs-base);
  color: var(--text-secondary);
}

.pricing-table .price {
  color: var(--gold-light);
  font-weight: 600;
  font-family: var(--font-heading);
}

.pricing-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ---------- Timeline / Market Dates ---------- */
.timeline {
  position: relative;
  padding-left: var(--space-3xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-dim), var(--border-gold), var(--gold-dim));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
}

.timeline-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-3xl) + 16px);
  top: calc(var(--space-lg) + 6px);
  width: 10px;
  height: 10px;
  background: var(--gold);
  border: 2px solid var(--bg-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(181, 148, 92, 0.25);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item .date {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.timeline-item .title {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--text-parchment);
}

/* ---------- About / Split Layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* About section: bigger image on left */
#about .split {
  grid-template-columns: 55% 1fr;
  gap: var(--space-4xl);
}

.split-img {
  overflow: hidden;
  border-radius: var(--radius-md);
}

#about .split-img {
  min-height: 500px;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.6s var(--ease);
}

.split-img:hover img {
  filter: brightness(1.05);
}

/* ---------- Decorative Elements ---------- */
.ornament {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  letter-spacing: 0.1em;
  padding: var(--space-lg) 0;
}

.ornament-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--border-gold-strong);
  margin: var(--space-xl) auto;
  border-radius: 1px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-md);
  display: inline-block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  padding: var(--space-xs) 0;
  transition: color var(--dur) var(--ease);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.footer-socials a {
  color: var(--text-muted);
  font-size: var(--fs-lg);
  transition: color var(--dur) var(--ease);
}

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

/* ---------- Scroll animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(10px);
  transition:
    opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Per-word stagger animation */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(10px);
  transition:
    opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-word.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  text-align: center;
  padding: var(--space-5xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-parchment);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2xl);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards-grid-3, .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step:not(:last-child)::after {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --fs-hero: 2.4rem;
    --fs-3xl:  1.8rem;
    --fs-2xl:  1.5rem;
    --nav-height: 60px;
  }

  .hero {
    min-height: 80vh;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 8, 6, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: var(--fs-md);
  }

  .cards-grid, .cards-grid-3, .cards-grid-4 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-scroll {
    display: none;
  }
}

/* ---------- Scroll Video Animation ---------- */
.scroll-video {
  position: relative;
  height: 400vh;
}

.scroll-video-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.scroll-video-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bg-darkest);
}

/* Gradient overlays — blend top and bottom into page */
.scroll-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      #111111 0%,
      rgba(17, 17, 17, 0.7) 8%,
      rgba(0, 0, 0, 0.3) 20%,
      rgba(0, 0, 0, 0.25) 50%,
      rgba(0, 0, 0, 0.3) 80%,
      rgba(17, 17, 17, 0.7) 92%,
      #111111 100%
    );
}

/* Text slides — no transitions, driven by JS */
.scroll-video-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--space-xl);
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: none;
}

.scroll-video-text h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
  max-width: 700px;
  will-change: opacity, transform;
}

.scroll-video-text p {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  line-height: 1.7;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
}

.scroll-word {
  will-change: opacity, transform;
}

@media (max-width: 768px) {
  .scroll-video {
    height: 400vh;
  }

  .scroll-video-text h2 {
    font-size: var(--fs-2xl);
  }

  .scroll-video-text p {
    font-size: var(--fs-base);
  }
}

/* ---------- Reviews ---------- */
.reviews {
  max-width: 680px;
  margin: 0 auto;
}

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
}

.review-stars {
  font-size: var(--fs-xl);
  color: var(--gold-light);
  margin-bottom: var(--space-md);
  letter-spacing: 4px;
}

.review-text {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.review-author {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
}

.review-name {
  font-weight: 500;
}

/* ---------- About Values ---------- */
.about-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-value {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--red);
}

.about-value svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: var(--red-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value strong {
  display: block;
  color: var(--text-primary);
  font-size: var(--fs-base);
  margin-bottom: 2px;
}

.about-value span {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
}

@media (max-width: 768px) {
  .review-card {
    padding: var(--space-lg);
  }

  .review-text {
    font-size: var(--fs-base);
  }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold-light); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
