/* ═══════════════════════════════════════════════════════
   PRIME MOMENTS — style.css
   Zwart / Wit / Groen #3F7652
   Lora (serif) + Inter (sans-serif)
═══════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --black:      #0F0F0F;
  --black-soft: #141414;
  --black-card: #191919;
  --white:      #FFFFFF;
  --green:      #3F7652;
  --green-dark: #2f5c3e;
  --green-dim:  rgba(63, 118, 82, 0.15);
  --gray-1:     #888888;
  --gray-2:     #555555;
  --gray-3:     #333333;
  --rule:       rgba(255, 255, 255, 0.08);
  --rule-green: rgba(63, 118, 82, 0.3);

  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;

  --nav-h:  72px;
  --radius: 2px;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ─── UTILITIES ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

.italic { font-style: italic; }

/* ─── TYPOGRAPHY SCALE ─── */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}
.section-intro {
  font-size: 1rem;
  color: var(--gray-1);
  max-width: 480px;
}
.section-head { margin-bottom: 64px; }

/* ─── BUTTONS ─── */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, border-color 0.4s;
}
#navbar.scrolled {
  background: rgba(15, 15, 15, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) { .nav-inner { padding: 0 24px; } }

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--green);
  transition: width 0.25s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--white); }

.nav-cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 80px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}
.mob-link {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
  color: var(--white);
  padding: 14px 0;
  text-align: center;
  border-bottom: 1px solid var(--rule);
  width: 100%;
  transition: color 0.2s;
}
.mob-link:last-of-type { border-bottom: none; }
.mob-link:hover { color: var(--green); }
.mob-btn { margin-top: 32px; display: inline-flex; }

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

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 70vh;
  min-height: 520px;
  max-height: 880px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-section {
    height: 55vh;
    min-height: 420px;
  }
}

/* Video wrap */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* VIDEO FALLBACK — görünür si video nu se incarca */
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.65) 80%,
    rgba(0,0,0,0.85) 100%
  );
}
/* Film grain */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
  animation: grainShift 6s steps(2) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-3%, 2%); }
  50%  { transform: translate(2%, -3%); }
  75%  { transform: translate(-1%, 3%); }
  100% { transform: translate(3%, -1%); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 4;
  padding: 0 48px 64px;
  max-width: 860px;
  animation: heroFadeUp 1.2s var(--ease) 0.2s both;
}
@media (max-width: 768px) {
  .hero-content { padding: 0 24px 48px; }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 400;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--white); }

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-bottom: 36px;
}
@media (max-width: 768px) { .hero-subtitle { font-size: 0.9375rem; } }

.hero-btns {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  right: 48px;
  bottom: 40px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 768px) { .hero-scroll-indicator { display: none; } }

/* ══════════════════════════════════════════
   ABOUT / STATEMENT
══════════════════════════════════════════ */
.section-about {
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
}
.about-statement {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 820px;
  border: none;
}
.about-statement em { font-style: italic; color: var(--green); }
.about-sub {
  font-size: 1rem;
  color: var(--gray-1);
  max-width: 560px;
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.section-services {
  padding: 120px 0;
  background: var(--black-soft);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--black-card);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { background: #1e1e1e; }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: italic;
  color: var(--green);
  margin-bottom: 24px;
  opacity: 0.7;
}
.service-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.service-desc {
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.7;
  margin-bottom: 28px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-tags li {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--rule-green);
  color: rgba(63, 118, 82, 0.7);
  transition: border-color 0.2s, color 0.2s;
}
.service-card:hover .service-tags li {
  border-color: rgba(63, 118, 82, 0.5);
  color: var(--green);
}

/* ══════════════════════════════════════════
   PACKAGES
══════════════════════════════════════════ */
.section-packages {
  padding: 120px 0;
  background: var(--black);
}

/* Tabs */
.pkg-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.pkg-tab {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  transition: background 0.2s, outline 0.2s;
  outline: 2px solid transparent;
}
.pkg-tab.active {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
.pkg-tab:hover:not(.active) { background: var(--green-dark); }

/* Panel */
.pkg-panel { display: none; }
.pkg-panel.active { display: block; }

/* Grid */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 2px;
}
@media (max-width: 1100px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pkg-grid { grid-template-columns: 1fr; } }

/* Card */
.pkg-card {
  background: var(--black-card);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.pkg-card:hover { background: #1e1e1e; }
.pkg-card.featured {
  background: #141414;
  outline: 1px solid var(--green);
}
.pkg-card.featured:hover { background: #1a1a1a; }

.pkg-badge {
  position: absolute;
  top: 0; right: 0;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--green);
  color: var(--white);
}
.pkg-header { margin-bottom: 16px; }
.pkg-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  padding-right: 40px; /* space for badge */
}
.pkg-hours {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gray-2);
}
.pkg-price {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.pkg-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
  flex-grow: 1;
}
.pkg-items li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.pkg-items li::before {
  content: '—';
  color: var(--green);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 1px;
}
.pkg-ideal {
  font-size: 12px;
  color: var(--gray-2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.pkg-cta {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--rule-green);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.pkg-cta:hover { color: #5fa87a; border-color: rgba(95,168,122,0.5); }

/* Under packages */
.pkg-cta-row {
  margin-top: 56px;
  padding: 40px;
  background: var(--black-soft);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pkg-cta-text {
  font-size: 15px;
  color: var(--gray-1);
  max-width: 560px;
  line-height: 1.7;
}
@media (max-width: 768px) { .pkg-cta-row { flex-direction: column; align-items: flex-start; } }

/* ══════════════════════════════════════════
   PROCESS / WERKWIJZE
══════════════════════════════════════════ */
.section-process {
  padding: 120px 0;
  background: var(--black-soft);
  border-top: 1px solid var(--rule);
}
.process-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .process-layout { grid-template-columns: 1fr; gap: 56px; }
}

.process-steps { display: flex; flex-direction: column; }

.process-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.3s var(--ease);
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.process-step:hover { padding-left: 8px; }

.step-num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--green);
  min-width: 28px;
  padding-top: 3px;
  flex-shrink: 0;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.7;
}

/* Stats */
.process-stats {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 1024px) {
  .process-stats {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
}

.stat-card {
  background: var(--black-card);
  border: 1px solid var(--rule);
  padding: 32px 28px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 56px;
  font-style: italic;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-accent { color: var(--green); }
.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-1);
}
.stat-note {
  padding: 16px 20px;
  background: var(--green-dim);
  border: 1px solid var(--rule-green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
}

/* ══════════════════════════════════════════
   WHY PRIME MOMENTS
══════════════════════════════════════════ */
.section-why {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--rule);
  overflow: hidden;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
  margin: 56px 0;
}
.marquee-track { width: 100%; overflow: hidden; }
.marquee-inner {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-inner span {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.marquee-dot { color: var(--green) !important; font-style: normal !important; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--black);
  padding: 44px 36px;
  transition: background 0.3s;
}
.why-card:hover { background: #111; }

.why-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 24px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.why-card:hover .why-icon {
  border-color: var(--green);
  transform: rotate(6deg);
}
.why-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.why-desc {
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.section-contact {
  padding: 140px 0 100px;
  background: var(--black-soft);
  border-top: 1px solid var(--rule);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
@media (max-width: 1024px) { .contact-layout { grid-template-columns: 1fr; gap: 64px; } }

.contact-sub {
  font-size: 15px;
  color: var(--gray-1);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 440px;
}
.contact-links { display: flex; flex-direction: column; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.2s;
}
.contact-link:first-child { border-top: 1px solid var(--rule); }
.contact-link:hover { border-color: rgba(255,255,255,0.15); }
.contact-location { cursor: default; }
.contact-link-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-2);
  min-width: 72px;
  flex-shrink: 0;
}
.contact-link-value {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--white);
  flex-grow: 1;
  transition: color 0.2s;
}
.contact-link:hover .contact-link-value { color: var(--green); }
.contact-link-arrow {
  font-size: 16px;
  color: rgba(255,255,255,0.2);
  transition: transform 0.25s var(--ease), color 0.2s;
}
.contact-link:hover .contact-link-arrow {
  transform: translate(3px, -3px);
  color: var(--green);
}

/* Form */
.contact-form-wrap { position: relative; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-1);
}
.form-input {
  background: var(--black-card);
  border: 1px solid var(--rule);
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  border-radius: var(--radius);
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--green); }
.form-input::placeholder { color: var(--gray-2); }
.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%23888' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-select option { background: var(--black-card); color: var(--white); }
.form-submit { margin-top: 8px; align-self: flex-start; padding: 15px 36px; }
.form-note {
  font-size: 11px;
  color: var(--gray-2);
  line-height: 1.6;
  margin-top: 8px;
}
.form-success {
  padding: 24px 28px;
  background: var(--green-dim);
  border: 1px solid var(--rule-green);
  color: var(--green);
  font-size: 14px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--rule);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-nav a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--green); }
@media (max-width: 768px) {
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-nav { justify-content: center; }
}

/* ══════════════════════════════════════════
   TOAST
══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  z-index: 9000;
  transition: bottom 0.4s var(--ease);
  white-space: nowrap;
}
.toast.show { bottom: 32px; }
