:root {
  --ink: #080a0f;
  --paper: #f4f1eb;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --silver: #9ba8b8;
  --accent: #1a2744;
  --glow: rgba(201,168,76,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'DM Mono', monospace;
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

/* Noise 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");
  pointer-events: none;
  z-index: 9997;
  opacity: 0.4;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  mix-blend-mode: normal;
}
nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 60px; right: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--paper);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 10px 24px;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 28px;
  height: 20px;
  margin-left: 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--paper);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.is-open span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}
.nav-links-mobile {
  display: none;
}
.nav-links-mobile.is-open {
  display: flex;
}
.nav-links-mobile {
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  background: rgba(8,10,15,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,0.25);
  padding: 16px 32px 24px;
  flex-direction: column;
  gap: 14px;
  z-index: 90;
}
.nav-links-mobile a,
.nav-links-mobile .nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.5rem;
  /*padding-top: 10px;*/
  /*padding-bottom: 10px;*/
  font-weight: bolder;
}
.nav-links-mobile a {
  color: var(--silver);
}
.nav-links-mobile a:hover {
  background: var(--gold);
  color: var(--ink);
}
.nav-links-mobile .nav-cta {
  display: inline-block;
  margin-top: 6px;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 100%;
}
.hero-left {
  flex: 0 1 auto;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0 0;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.hero-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.58;
  transition: opacity 0.4s ease;
}
.hero-visual:hover .hero-logo {
  opacity: 0.82;
}
.hero-copy {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.hero-copy-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: rgba(201,168,76,0.85);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0;
}
.hero-copy-sub {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.5);
  margin: 0;
  line-height: 1.4;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
              radial-gradient(ellipse 80% 100% at 20% 80%, rgba(26,39,68,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-orb,
.hero-orb2,
.hero-orb3,
.hero-glow-line {
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(201,168,76,0.28) 0%,
    rgba(201,168,76,0.12) 35%,
    rgba(201,168,76,0.04) 55%,
    transparent 72%
  );
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  animation: pulse 6s ease-in-out infinite;
  z-index: 0;
}
.hero-orb2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,39,68,0.5) 0%, transparent 70%);
  left: -50px; bottom: 10%;
  animation: pulse 8s ease-in-out infinite reverse;
}
.hero-orb3 {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  left: 35%; top: 15%;
  transform: translateX(-50%);
  animation: pulseSoft 10s ease-in-out infinite 1s;
}
@keyframes pulseSoft {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.8; transform: translateX(-50%) scale(1.15); }
}
.hero-glow-line {
  position: absolute;
  left: 15%; top: 20%;
  width: 1px;
  height: 60%;
  max-height: 400px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.15), transparent);
  opacity: 0.7;
  animation: scrollAnim 3s ease-in-out infinite;
}
@media (min-width: 1025px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  .hero-left {
    flex: 0 1 auto;
    width: 55%;
    padding-left: 160px;
  }
  .hero-right {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }
  .hero-visual {
    padding: 0;
    width: 100%;
    max-width: 420px;
  }
  .hero-copy { align-items: center; text-align: center; }
  .hero-copy-line { max-width: 320px; }
  #hero::before {
    background: radial-gradient(ellipse 100% 80% at 75% 50%, rgba(201,168,76,0.08) 0%, transparent 45%),
                radial-gradient(ellipse 60% 60% at 15% 85%, rgba(26,39,68,0.35) 0%, transparent 45%),
                radial-gradient(ellipse 50% 50% at 50% 30%, rgba(201,168,76,0.04) 0%, transparent 40%);
  }
  .hero-grid-lines { opacity: 0.9; }
}

@keyframes pulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateY(-50%) scale(1.1); opacity: 1; }
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-headline .outline {
  -webkit-text-stroke: 1px rgba(244,241,235,0.3);
  color: transparent;
}

.hero-sub {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  line-height: 1.8;
  color: var(--silver);
  max-width: 480px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-actions {
  display: flex;
  gap: 24px;
  margin-top: 56px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}
.btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 16px 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.3s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-secondary {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 16px 40px;
  text-decoration: none;
  border: 1px solid rgba(244,241,235,0.2);
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: rgba(244,241,235,0.5);
  background: rgba(244,241,235,0.05);
}

.hero-scroll {
  position: absolute;
  bottom: 48px; left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  writing-mode: vertical-rl;
}

.hero-counter {
  position: absolute;
  right: 60px;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}
.counter-item { text-align: right; }
.counter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.counter-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MARQUEE */
.marquee-section {
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 20px 0;
  overflow: hidden;
  background: rgba(201,168,76,0.03);
}
.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 80px;
}
.marquee-item::after {
  content: '◆';
  color: var(--gold);
  font-size: 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
section { padding: 100px 60px; }

.section-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 64px;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ABOUT */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  position: relative;
}
#about::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
}
.about-visual {
  position: relative;
  height: 600px;
}
.about-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0.2);
}
.about-frame-inner {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-symbol-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
}
.about-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.about-symbol {
  font-family: 'Cormorant Garamond', serif;
  font-size: 280px;
  font-weight: 300;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.15);
  line-height: 1;
  user-select: none;
  animation: floatSymbol 8s ease-in-out infinite;
}
.about-symbol-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  margin: 20px 0 12px;
}
.about-symbol-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  line-height: 1.4;
}
.about-symbol-tagline-sub {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(155,168,184,0.6);
  margin-top: 2px;
  line-height: 1.4;
}
.about-symbol-year {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(155,168,184,0.5);
  margin-top: 10px;
}
@keyframes floatSymbol {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(-3deg); }
}
.about-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.6;
}
.about-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.about-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.about-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.about-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.about-content .section-title { margin-bottom: 40px; }
.about-text {
  font-size: 14px;
  line-height: 2;
  color: var(--silver);
  margin-bottom: 24px;
}
.about-text strong { color: var(--paper); font-weight: 400; }

.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding: 20px 24px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.03);
}
.founder-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--ink);
  font-weight: 600;
  overflow: hidden;
  flex-shrink: 0;
}
.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.founder-info { flex: 1; }
.founder-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--paper);
}
.founder-role {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* PRODUCTS */
#products {
  position: relative;
}
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.1);
}
.product-card {
  background: var(--ink);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: none;
  border: 1px solid rgba(201,168,76,0.08);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.product-card:hover { background: rgba(201,168,76,0.04); }
.product-card:hover::before { transform: scaleX(1); }

.product-card.featured {
  grid-column: span 2;
  background: rgba(26,39,68,0.3);
  border: 1px solid rgba(201,168,76,0.15);
}
.product-card.featured::before { transform: scaleX(1); }

.product-num {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 32px;
}
.product-icon {
  font-size: 40px;
  margin-bottom: 24px;
  display: block;
}
.product-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--paper);
  margin-bottom: 8px;
}
.product-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.product-desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--silver);
}
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.feature-pill {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid rgba(155,168,184,0.2);
  padding: 6px 14px;
  transition: all 0.3s;
}
.product-card:hover .feature-pill {
  border-color: rgba(201,168,76,0.3);
  color: var(--gold-light);
}
.product-arrow {
  position: absolute;
  bottom: 48px; right: 48px;
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  transition: all 0.3s;
}
.product-card:hover .product-arrow {
  background: var(--gold);
  color: var(--ink);
}

/* SERVICES */
#services {
  background: rgba(201,168,76,0.02);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.services-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 100px;
  row-gap: 48px;
}
.services-header {
  grid-column: 1;
  grid-row: 1;
}
.services-header .section-intro {
  font-size: 13px;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 0;
  max-width: 340px;
}
.service-list {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-item {
  min-height: 72px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(244,241,235,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: none;
  transition: all 0.3s;
  position: relative;
  width: 100%;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
}
.service-item::before {
  content: '';
  position: absolute;
  left: -60px; top: 0;
  width: 4px; height: 0;
  background: var(--gold);
  transition: height 0.3s;
}
.service-item:hover { padding-left: 16px; }
.service-item:hover::before { height: 100%; }
.service-item.is-active { padding-left: 16px; }
.service-item.is-active::before { height: 100%; }
.service-item.is-active .service-item-name { color: var(--gold); }
.service-item-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.service-item:hover .service-item-name { color: var(--gold); }
.service-item-num {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--silver);
  opacity: 0.4;
}
.service-detail {
  padding: 40px;
  border: 1px solid rgba(201,168,76,0.12);
  background: rgba(201,168,76,0.03);
  height: fit-content;
  align-self: start;
  position: sticky;
  top: 120px;
}
.service-details {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  display: grid;
  grid-template-rows: repeat(5, minmax(72px, auto));
  align-items: start;
  gap: 0;
}
.service-detail-block {
  grid-row: var(--service-row, 1);
  position: relative;
  padding: 40px 44px;
  border: 1px solid rgba(201,168,76,0.12);
  background: rgba(201,168,76,0.03);
  border-radius: 2px;
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.26s ease, transform 0.26s ease;
}
.service-detail-block[data-service-detail="01"] { --service-row: 1; }
.service-detail-block[data-service-detail="02"] { --service-row: 2; }
.service-detail-block[data-service-detail="03"] { --service-row: 3; }
.service-detail-block[data-service-detail="04"] { --service-row: 4; }
.service-detail-block[data-service-detail="05"] { --service-row: 5; }
.service-detail-block.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: serviceDetailIn 0.3s ease forwards;
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.06);
}
.service-detail-block.is-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.6;
  border-radius: 2px 2px 0 0;
}
@keyframes serviceDetailIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.service-detail-block .service-detail-title {
  font-size: 28px;
  margin-bottom: 16px;
}
.service-detail-num {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 12px;
}
.service-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 24px;
  line-height: 1.2;
}
.service-detail-desc {
  font-size: 13px;
  line-height: 2;
  color: var(--silver);
  margin-bottom: 32px;
}
.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-bullets li {
  font-size: 12px;
  color: var(--silver);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.service-bullets li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* VISION */
#vision {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vision-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at center, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.vision-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto 64px;
  color: var(--paper);
  position: relative;
  z-index: 1;
}
.vision-quote em { color: var(--gold); }
.vision-quote::before {
  content: '"';
  position: absolute;
  top: -40px; left: -20px;
  font-size: 200px;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  z-index: -1;
}
.vision-pillars {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.pillar {
  text-align: center;
}
.pillar-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.pillar-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 8px;
}
.pillar-text {
  font-size: 12px;
  line-height: 1.7;
  color: var(--silver);
  max-width: 160px;
}

/* CONTACT */
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}
.contact-info { }
.contact-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 48px;
  color: var(--paper);
}
.contact-tagline em { font-style: italic; color: var(--gold); }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-item-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
}
.contact-item-value {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.6;
}
.contact-item-value a {
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-item-value a:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-group {
  position: relative;
}
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(244,241,235,0.03);
  border: 1px solid rgba(244,241,235,0.1);
  color: var(--paper);
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(201,168,76,0.5);
}
.form-group select option { background: var(--ink); }
.form-group textarea { height: 120px; }
.form-submit {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 48px;
  cursor: none;
  transition: all 0.3s;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  transition: left 0.3s ease;
  z-index: -1;
}
.form-submit:hover { color: var(--ink); }
.form-submit:hover::before { left: 0; }

/* FOOTER */
footer {
  padding: 60px;
  border-top: 1px solid rgba(201,168,76,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--paper);
  letter-spacing: 0.05em;
}
.footer-logo span { color: var(--gold); }
.footer-copy {
  font-size: 11px;
  color: var(--silver);
  opacity: 0.5;
  letter-spacing: 0.1em;
}
.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s;
  opacity: 0.5;
}
.footer-links a:hover { color: var(--gold); opacity: 1; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  nav { padding: 24px 32px; }
  nav::after { left: 32px; right: 32px; }
  .nav-links { display: none; }
   .nav-cta { display: none; }
   .nav-toggle { display: block; }
  section { padding: 100px 32px; }
  #hero { padding: 100px 32px 80px; }
  #about { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: 300px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card.featured { grid-column: auto; }
  .services-layout { grid-template-columns: 1fr; grid-template-rows: auto auto 1fr; row-gap: 32px; }
  .services-header { grid-column: 1; grid-row: 1; }
  .service-list { grid-column: 1; grid-row: 2; }
  .service-details { grid-column: 1; grid-row: 3; }
  .service-detail { position: static; }
  #contact { grid-template-columns: 1fr; gap: 60px; }
  footer { flex-direction: column; gap: 24px; text-align: center; }
  .hero-counter { display: none; }
  .vision-pillars { flex-wrap: wrap; gap: 48px; }
}

/* Multi-page */
.page-content { padding-top: 100px; }
.products-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1024px) {
  .products-grid--2 { grid-template-columns: 1fr; }
}

/* Product detail page */
.product-detail-hero { padding: 140px 60px 80px; position: relative; }
.product-detail-hero .section-label { margin-bottom: 16px; }
.product-detail-hero .section-title { margin-bottom: 24px; }
.product-detail-content { max-width: 720px; margin-top: 48px; font-size: 14px; line-height: 2; color: var(--silver); }
.product-detail-content p { margin-bottom: 24px; }
.product-detail-content strong { color: var(--paper); font-weight: 400; }
.back-link {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--silver); text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 32px; transition: color 0.3s;
}
.back-link:hover { color: var(--gold); }

/* Legal placeholder */
.legal-page { padding: 140px 60px 200px; max-width: 720px; }
.legal-page h1 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 48px; margin-bottom: 32px; color: var(--paper); }
.legal-page h2 { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: 0.05em; color: var(--paper); margin-top: 40px; margin-bottom: 16px; }
.legal-page p { font-size: 14px; line-height: 2; color: var(--silver); margin-bottom: 24px; }
.legal-page ul { margin: 0 0 24px 1.2em; padding: 0; }
.legal-page li { font-size: 14px; line-height: 2; color: var(--silver); margin-bottom: 8px; }
.legal-page a { color: var(--gold); text-decoration: black; }
.legal-page a:hover { text-decoration: underline; }
.legal-page .legal-meta { font-size: 12px; color: var(--silver); opacity: 0.8; margin-bottom: 32px; }
