/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off:   #f7f7f5;
  --gray:  #888;
  --light: #e0e0e0;
  --accent: #1a1a1a;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Josefin Sans', sans-serif;
  --max: 1280px;
  --pad: clamp(1.5rem, 5vw, 4rem);
}

/* ═══════════════════════════════════════════
   BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* REVEAL */
.rv {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.rv.in { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: 0.12s; }
.rv.d2 { transition-delay: 0.24s; }
.rv.d3 { transition-delay: 0.36s; }
.rv.d4 { transition-delay: 0.48s; }

/* CAPS LABEL */
.caps {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 70px; display: flex; align-items: center;
  mix-blend-mode: normal;
  transition: background 0.4s, border-color 0.4s;
}
nav.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #eee;
  backdrop-filter: blur(10px);
}
nav.dark-hero {
  background: transparent;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--ff-sans); font-size: 0.78rem; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--white);
  transition: color 0.3s;
}
nav.scrolled .nav-logo { color: var(--black); }
.nav-links { display: flex; gap: 2.8rem; list-style: none; }
.nav-links a {
  font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  transition: color 0.25s;
}
nav.scrolled .nav-links a { color: var(--gray); }
.nav-links a:hover, nav.scrolled .nav-links a:hover { color: var(--black) !important; }

.nav-cta {
  font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.4); color: var(--white);
  transition: all 0.25s;
}
nav.scrolled .nav-cta { border-color: var(--black); color: var(--black); }
.nav-cta:hover { background: var(--white) !important; color: var(--black) !important; }
nav.scrolled .nav-cta:hover { background: var(--black) !important; color: var(--white) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1px; background: var(--white); transition: all 0.3s; }
nav.scrolled .hamburger span { background: var(--black); }

.mob-overlay {
  display: none; position: fixed; inset: 0; background: var(--black); z-index: 299;
  flex-direction: column; justify-content: center; align-items: center; gap: 3rem;
}
.mob-overlay.open { display: flex; }
.mob-overlay a {
  font-family: var(--ff-serif); font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 300;
  color: var(--white); letter-spacing: 0.04em;
}
.mob-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--ff-sans); font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════
   HERO — FULL BLEED with side numbers
═══════════════════════════════════════════ */
#hero {
  height: 100vh; min-height: 600px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}

.hero-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1800&q=90') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
  filter: brightness(0.45);
}
#hero:hover .hero-img { transform: scale(1.0); }

.hero-side-nums {
  position: absolute; left: 2rem; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 1.4rem; z-index: 2;
}
.side-num {
  font-family: var(--ff-sans); font-size: 0.6rem; font-weight: 100;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.3);
  writing-mode: horizontal-lr; transition: color 0.3s;
}
.side-num.active { color: rgba(255,255,255,0.9); }
.side-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15); margin: 0 auto;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad) clamp(3rem, 8vh, 6rem) clamp(4rem, 8vw, 8rem);
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 200;
  letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 1.2rem;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: rgba(255,255,255,0.4); }

.hero-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 300; line-height: 1.03;
  letter-spacing: -0.01em; color: var(--white);
  margin-bottom: 2rem;
  animation: fadeUp 1s 0.45s ease both;
}
.hero-h1 em { font-style: italic; font-weight: 300; }

.hero-sub {
  font-family: var(--ff-sans); font-size: 0.8rem; font-weight: 200;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.55);
  max-width: 420px; line-height: 1.9;
  margin-bottom: 2.8rem;
  animation: fadeUp 1s 0.6s ease both;
}
.hero-ctas {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  animation: fadeUp 1s 0.75s ease both;
}
.btn-hero-primary {
  font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  background: var(--white); color: var(--black);
  transition: all 0.25s;
}
.btn-hero-primary:hover { background: transparent; color: var(--white); border: 1px solid var(--white); }
.btn-hero-ghost {
  font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 200;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.25s;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; right: var(--pad); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  animation: fadeUp 1s 1s ease both;
}
.scroll-text {
  font-family: var(--ff-sans); font-size: 0.55rem; font-weight: 200;
  letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4);
  writing-mode: vertical-lr;
}
.scroll-arrow {
  width: 1px; height: 50px; background: rgba(255,255,255,0.2); position: relative;
  overflow: hidden;
}
.scroll-arrow::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.6);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

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

/* ═══════════════════════════════════════════
   INTRO STRIP
═══════════════════════════════════════════ */
.intro-strip {
  border-bottom: 1px solid #eee;
  padding: 2.5rem 0;
}
.intro-strip-inner {
  display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; justify-content: center;
}
.strip-item {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 200;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray);
}
.strip-sep { width: 1px; height: 18px; background: #e0e0e0; }

/* ═══════════════════════════════════════════
   ABOUT — white section
═══════════════════════════════════════════ */
#about { padding: clamp(5rem,12vh,9rem) 0; }

.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem); align-items: center;
}
.about-text { }
.about-text .caps { margin-bottom: 1.4rem; }
.about-h {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300; letter-spacing: 0.02em; line-height: 1.1;
  margin-bottom: 2rem;
}
.about-h em { font-style: italic; }
.about-p {
  font-family: var(--ff-sans); font-size: 0.82rem; font-weight: 200;
  letter-spacing: 0.06em; color: #666; line-height: 1.9;
  max-width: 440px; margin-bottom: 2.5rem;
}
.about-link {
  font-family: var(--ff-sans); font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--black);
  display: inline-flex; align-items: center; gap: 0.8rem;
  border-bottom: 1px solid var(--black); padding-bottom: 0.3rem;
  transition: gap 0.25s;
}
.about-link:hover { gap: 1.2rem; }

.about-img-col { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: grayscale(15%); display: block;
}
.about-img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--black); color: var(--white);
  padding: 2rem;
  text-align: center;
}
.badge-n {
  font-family: var(--ff-serif); font-size: 3rem; font-weight: 300; line-height: 1;
  display: block;
}
.badge-l {
  font-family: var(--ff-sans); font-size: 0.58rem; font-weight: 200;
  letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-top: 0.5rem; display: block;
}

/* ═══════════════════════════════════════════
   SERVICES — BLACK SECTION
═══════════════════════════════════════════ */
#services {
  background: var(--black); color: var(--white);
  padding: clamp(5rem,12vh,9rem) 0;
}
#services .caps { color: rgba(255,255,255,0.3); }

.svc-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: clamp(3rem, 7vw, 6rem); flex-wrap: wrap; gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.svc-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300; letter-spacing: 0.05em; line-height: 1.1;
  color: var(--white);
}
.svc-title em { font-style: italic; }
.svc-note {
  font-family: var(--ff-sans); font-size: 0.75rem; font-weight: 200;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.35);
  max-width: 280px; line-height: 1.8; text-align: right; align-self: flex-end;
}

.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.svc-col {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.svc-col:last-child { border-right: none; }
.svc-col:hover { background: rgba(255,255,255,0.03); }
.svc-col-n {
  font-family: var(--ff-sans); font-size: 0.58rem; font-weight: 100;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.2);
  margin-bottom: 2.5rem;
}
.svc-icon-box {
  width: 54px; height: 54px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  transition: border-color 0.3s;
}
.svc-col:hover .svc-icon-box { border-color: rgba(255,255,255,0.5); }
.svc-icon-box svg {
  width: 22px; height: 22px;
  stroke: rgba(255,255,255,0.7); stroke-width: 1.2; fill: none;
  transition: stroke 0.3s;
}
.svc-col:hover .svc-icon-box svg { stroke: var(--white); }
.svc-col-name {
  font-family: var(--ff-serif); font-size: 1.7rem; font-weight: 300;
  letter-spacing: 0.02em; color: var(--white);
  margin-bottom: 1.2rem; line-height: 1.2;
}
.svc-col-desc {
  font-family: var(--ff-sans); font-size: 0.75rem; font-weight: 200;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.4);
  line-height: 1.9; margin-bottom: 2rem;
}
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 2.5rem;
}
.svc-tag {
  font-family: var(--ff-sans); font-size: 0.55rem; font-weight: 200;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.35);
  transition: all 0.25s;
}
.svc-col:hover .svc-tag { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.6); }
.svc-col-link {
  font-family: var(--ff-sans); font-size: 0.58rem; font-weight: 200;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 0.7rem;
  transition: all 0.25s;
}
.svc-col-link::after {
  content: ''; display: block; width: 20px; height: 1px;
  background: rgba(255,255,255,0.3); transition: width 0.3s;
}
.svc-col:hover .svc-col-link { color: var(--white); }
.svc-col:hover .svc-col-link::after { width: 36px; background: var(--white); }

/* ═══════════════════════════════════════════
   FEATURES ORBIT — white section
═══════════════════════════════════════════ */
#features { padding: clamp(5rem,12vh,9rem) 0; }
.features-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.orbit-wrap { position: relative; width: 480px; height: 480px; max-width: 100%; }
.orbit-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid #e0e0e0;
}
.orbit-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
}
.orbit-center-title {
  font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 300;
  color: var(--white); line-height: 1.3; margin-bottom: 0.4rem;
}
.orbit-center-sub {
  font-family: var(--ff-sans); font-size: 0.52rem; font-weight: 200;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.4);
}

/* 5 nodes around the orbit */
.orbit-node {
  position: absolute; width: 42px; height: 42px;
  border-radius: 50%; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%,-50%);
  cursor: pointer; transition: background 0.25s, transform 0.25s;
}
.orbit-node:hover { background: #333; transform: translate(-50%,-50%) scale(1.15); }
.orbit-node svg { width: 16px; height: 16px; stroke: var(--white); stroke-width: 1.3; fill: none; }

/* Positioning (on the circle radius ~190px from center of 240,240) */
.orbit-node:nth-child(1) { top: calc(50% - 190px); left: 50%; }
.orbit-node:nth-child(2) { top: calc(50% - 90px); left: calc(50% + 175px); }
.orbit-node:nth-child(3) { top: calc(50% + 155px); left: calc(50% + 100px); }
.orbit-node:nth-child(4) { top: calc(50% + 155px); left: calc(50% - 100px); }
.orbit-node:nth-child(5) { top: calc(50% - 90px); left: calc(50% - 175px); }

.feat-text { }
.feat-text .caps { margin-bottom: 1.4rem; }
.feat-h {
  font-family: var(--ff-serif); font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300; letter-spacing: 0.02em; line-height: 1.15;
  margin-bottom: 1.8rem;
}
.feat-h em { font-style: italic; }
.feat-list { list-style: none; display: flex; flex-direction: column; }
.feat-item {
  display: flex; align-items: flex-start; gap: 1.4rem;
  padding: 1.6rem 0; border-bottom: 1px solid #eee;
}
.feat-item:first-child { border-top: 1px solid #eee; }
.feat-item-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid #e0e0e0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.1rem;
}
.feat-item-icon svg { width: 16px; height: 16px; stroke: var(--black); stroke-width: 1.3; fill: none; }
.feat-item-n {
  font-family: var(--ff-sans); font-size: 0.55rem; font-weight: 200;
  letter-spacing: 0.2em; color: #ccc; margin-bottom: 0.35rem;
}
.feat-item-title {
  font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 400;
  letter-spacing: 0.02em; margin-bottom: 0.35rem;
}
.feat-item-desc {
  font-family: var(--ff-sans); font-size: 0.75rem; font-weight: 200;
  letter-spacing: 0.04em; color: #888; line-height: 1.75;
}

/* ═══════════════════════════════════════════
   IMAGE SECTION — full bleed with text overlay
═══════════════════════════════════════════ */
.img-section {
  height: clamp(360px, 55vw, 620px);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.img-section-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=1800&q=90') center/cover no-repeat;
  filter: brightness(0.4);
  transform: scale(1.04);
  transition: transform 6s ease;
}
.img-section:hover .img-section-bg { transform: scale(1.0); }
.img-section-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: clamp(2rem,5vw,4rem) var(--pad);
  width: 100%;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem;
}
.img-section-quote {
  font-family: var(--ff-serif); font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 300; font-style: italic; color: var(--white);
  max-width: 700px; line-height: 1.3; letter-spacing: 0.01em;
}
.img-section-source {
  font-family: var(--ff-sans); font-size: 0.6rem; font-weight: 200;
  letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   PROCESS — white section
═══════════════════════════════════════════ */
#process { padding: clamp(5rem,12vh,9rem) 0; background: var(--off); }

.proc-head {
  text-align: center; margin-bottom: clamp(3rem, 7vw, 6rem);
}
.proc-head .caps { justify-content: center; margin-bottom: 1.2rem; }
.proc-head .caps::before { display: none; }
.proc-title {
  font-family: var(--ff-serif); font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300; letter-spacing: 0.1em; line-height: 1.1;
}

.proc-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border: 1px solid #e8e8e8; background: #e8e8e8;
}
.proc-step {
  background: var(--off); padding: 3rem 2.2rem;
  border-right: 1px solid #e8e8e8;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.proc-step:last-child { border-right: none; }
.proc-step:hover { background: var(--white); }

.proc-n {
  font-family: var(--ff-serif);
  font-size: clamp(4rem, 6vw, 6rem); font-weight: 300;
  color: #e8e8e8; line-height: 1;
  -webkit-text-stroke: 1px #d0d0d0;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.proc-step:hover .proc-n { color: transparent; }
.proc-icon {
  width: 42px; height: 42px; border: 1px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem; transition: border-color 0.3s;
}
.proc-step:hover .proc-icon { border-color: var(--black); }
.proc-icon svg { width: 17px; height: 17px; stroke: #666; stroke-width: 1.3; fill: none; transition: stroke 0.3s; }
.proc-step:hover .proc-icon svg { stroke: var(--black); }
.proc-step h4 {
  font-family: var(--ff-sans); font-size: 0.7rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--black);
  margin-bottom: 0.9rem;
}
.proc-step p {
  font-family: var(--ff-sans); font-size: 0.75rem; font-weight: 200;
  letter-spacing: 0.05em; color: #888; line-height: 1.8;
}
.proc-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--black);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.proc-step:hover .proc-bar { transform: scaleX(1); }

/* ═══════════════════════════════════════════
   CTA — BLACK BAND
═══════════════════════════════════════════ */
.cta-band {
  background: var(--black); padding: clamp(5rem,12vh,9rem) 0;
}
.cta-band-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.cta-band .caps { color: rgba(255,255,255,0.25); justify-content: center; margin-bottom: 2rem; }
.cta-band .caps::before { background: rgba(255,255,255,0.25); }
.cta-h {
  font-family: var(--ff-serif); font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300; letter-spacing: 0.02em; line-height: 1.1; color: var(--white);
  margin-bottom: 1.4rem;
}
.cta-h em { font-style: italic; }
.cta-sub {
  font-family: var(--ff-sans); font-size: 0.78rem; font-weight: 200;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 3.5rem;
}
.cta-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
.btn-cta-primary {
  font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1rem 2.8rem; background: var(--white); color: var(--black);
  transition: all 0.25s;
}
.btn-cta-primary:hover { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-cta-ghost {
  font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 200;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1rem 2.8rem;
  background: transparent; color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s;
}
.btn-cta-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
#contact { padding: clamp(5rem,12vh,9rem) 0; }
.contact-top {
  padding-bottom: 3rem; margin-bottom: 3rem;
  border-bottom: 1px solid #eee;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem;
}
.contact-h {
  font-family: var(--ff-serif); font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 300; letter-spacing: 0.02em; line-height: 1.1;
}
.contact-h em { font-style: italic; }
.contact-note {
  font-family: var(--ff-sans); font-size: 0.75rem; font-weight: 200;
  letter-spacing: 0.08em; color: #888; max-width: 280px;
  text-align: right; line-height: 1.8; align-self: flex-end;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 7rem);
}
.contact-info { }
.contact-info p {
  font-family: var(--ff-sans); font-size: 0.8rem; font-weight: 200;
  letter-spacing: 0.06em; color: #666; line-height: 1.9; margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.3rem; }
.cd-row { display: flex; align-items: center; gap: 1rem; }
.cd-ico {
  width: 36px; height: 36px; border: 1px solid #eee;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cd-ico svg { width: 14px; height: 14px; stroke: #999; stroke-width: 1.4; fill: none; }
.cd-text {
  font-family: var(--ff-sans); font-size: 0.72rem; font-weight: 200;
  letter-spacing: 0.08em; color: #666;
}

form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.fg label {
  display: block; font-family: var(--ff-sans); font-size: 0.58rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase; color: #aaa; margin-bottom: 0.5rem;
}
.fg input, .fg textarea, .fg select {
  width: 100%;
  font-family: var(--ff-sans); font-size: 0.82rem; font-weight: 200; letter-spacing: 0.04em;
  color: var(--black); background: transparent;
  border: none; border-bottom: 1px solid #ddd;
  padding: 0.7rem 0; outline: none;
  transition: border-color 0.25s;
  appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-bottom-color: var(--black); }
.fg input::placeholder, .fg textarea::placeholder { color: #ccc; }
.fg textarea { resize: none; height: 100px; }
.btn-submit {
  align-self: flex-start;
  font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.9rem 2.4rem; background: var(--black); color: var(--white);
  border: 1px solid var(--black); transition: all 0.25s; cursor: pointer;
}
.btn-submit:hover { background: transparent; color: var(--black); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--black);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: var(--ff-sans); font-size: 0.72rem; font-weight: 200;
  letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.footer-links { display: flex; gap: 2.5rem; list-style: none; }
.footer-links a {
  font-family: var(--ff-sans); font-size: 0.58rem; font-weight: 200;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy {
  font-family: var(--ff-sans); font-size: 0.58rem; font-weight: 200;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-img-col { max-width: 420px; }
  .about-img-badge { right: 0; bottom: -1rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .features-inner { grid-template-columns: 1fr; }
  .orbit-wrap { margin: 0 auto; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-note { text-align: left; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  nav .nav-cta { display: none; }
  .hamburger { display: flex; }
  .intro-strip-inner { gap: 1.5rem; }
  .strip-sep { display: none; }
  .proc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .orbit-wrap { width: 320px; height: 320px; }
  .orbit-circle { width: 260px; height: 260px; }
  .orbit-center { width: 110px; height: 110px; }
  .orbit-node:nth-child(1) { top: calc(50% - 130px); }
  .orbit-node:nth-child(2) { top: calc(50% - 60px); left: calc(50% + 118px); }
  .orbit-node:nth-child(3) { top: calc(50% + 105px); left: calc(50% + 68px); }
  .orbit-node:nth-child(4) { top: calc(50% + 105px); left: calc(50% - 68px); }
  .orbit-node:nth-child(5) { top: calc(50% - 60px); left: calc(50% - 118px); }
  .cta-band-inner { text-align: center; }
}