/* ══════════════════════════════════════════════════
   ARLOCK — Premium Editorial Design System
   ══════════════════════════════════════════════════ */

/* ═══ TOKENS ═══ */
:root {
  --ink: #030609;
  --deep: #060a14;
  --mid: #0a1020;
  --surface: #0e1628;
  --surface2: #111d35;
  --navy: #192244;
  --navy2: #1e2b55;

  --cream: #e8dac8;
  --cream2: #d4c4ae;
  --cream-dim: rgba(232, 218, 200, 0.10);
  --cream-brd: rgba(232, 218, 200, 0.18);
  --cream-glow: rgba(232, 218, 200, 0.06);

  --white: #f4f0ea;
  --text: #7a8ba8;
  --text2: #4e5e7a;
  --border: rgba(255, 255, 255, 0.055);
  --border2: rgba(255, 255, 255, 0.09);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.5s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: none;
}

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

/* ═══ CUSTOM CURSOR ═══ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: difference;
}

.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(232, 218, 200, 0.4);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease), width 0.4s var(--ease), height 0.4s var(--ease);
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 20px;
  height: 20px;
  background: var(--cream2);
}

body:has(a:hover) .cursor-trail,
body:has(button:hover) .cursor-trail {
  width: 60px;
  height: 60px;
  border-color: rgba(232, 218, 200, 0.2);
}

/* ═══ NOISE OVERLAY ═══ */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ═══ CONTAINER ═══ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══ NAVBAR ═══ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 24px 0;
  transition: padding var(--t), background var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  padding: 16px 0;
  background: rgba(6, 10, 20, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo-box {
  border: 1.5px solid rgba(244, 240, 234, 0.5);
  padding: 6px 18px;
  transition: border-color var(--t);
}

.nav-logo-box:hover {
  border-color: var(--cream);
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-link {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cream);
  transition: width var(--t);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-num {
  font-family: var(--serif);
  font-size: 10px;
  color: var(--cream);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
  padding: 10px 22px;
  border-radius: 0;
  transition: background var(--t), transform 0.2s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform var(--t), opacity var(--t);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  background: linear-gradient(145deg, #04060f 0%, #070c1a 45%, #050911 100%);
}

/* abstract grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hg-line {
  position: absolute;
  background: rgba(232, 218, 200, 0.06);
}

.hg-v1 {
  top: 0;
  left: 33.33%;
  width: 1px;
  height: 100%;
}

.hg-v2 {
  top: 0;
  right: 30%;
  width: 1px;
  height: 100%;
}

.hg-h1 {
  top: 55%;
  left: 0;
  width: 100%;
  height: 1px;
}

.hg-diag {
  position: absolute;
  top: -20%;
  right: 28%;
  width: 1px;
  height: 140%;
  background: rgba(232, 218, 200, 0.04);
  transform: rotate(22deg);
  transform-origin: top center;
}

.hg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hg-orb1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(29, 35, 68, 0.8) 0%, transparent 70%);
}

.hg-orb2 {
  width: 400px;
  height: 400px;
  bottom: -60px;
  left: 20%;
  background: radial-gradient(circle, rgba(232, 218, 200, 0.04) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
  padding-top: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.dot-live {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream);
  animation: livePulse 2.5s infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(232, 218, 200, 0.6);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 5px rgba(232, 218, 200, 0);
  }
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.hero-h1 em {
  font-style: italic;
  color: var(--cream);
}

.italic-word {
  font-style: italic;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
  max-width: 440px;
  font-weight: 300;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
  padding: 15px 30px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232, 218, 200, 0.2);
}

.btn-primary.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border2);
  padding: 15px 26px;
  transition: color 0.3s, border-color 0.3s, transform 0.2s;
}

.btn-ghost:hover {
  color: var(--cream);
  border-color: var(--cream-brd);
  transform: translateY(-2px);
}

/* ─── Hero right ─── */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.hero-logo-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-logo-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-logo-inner {
  border: 2px solid rgba(244, 240, 234, 0.55);
  padding: 22px 56px;
  position: relative;
}

/* Corner accents */
.hero-logo-inner::before,
.hero-logo-inner::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--cream);
  border-style: solid;
}

.hero-logo-inner::before {
  top: -4px;
  left: -4px;
  border-width: 2px 0 0 2px;
}

.hero-logo-inner::after {
  bottom: -4px;
  right: -4px;
  border-width: 0 2px 2px 0;
}

.hero-logo-name {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--white);
  display: block;
}

.hero-logo-tagline {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 32px;
  border: 1px solid var(--border);
  background: var(--cream-glow);
  backdrop-filter: blur(8px);
  width: 100%;
  justify-content: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hs-num {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
}

.hs-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text2);
  text-transform: uppercase;
  text-align: center;
}

.hero-stat-sep {
  width: 1px;
  height: 30px;
  background: var(--border2);
}

/* ─── Hero scroll cue ─── */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

.scroll-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text2);
  writing-mode: vertical-rl;
}

/* ─── Reveal animation classes ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

[data-reveal][data-delay="1"] {
  transition-delay: 0.12s;
}

[data-reveal][data-delay="2"] {
  transition-delay: 0.22s;
}

[data-reveal][data-delay="3"] {
  transition-delay: 0.34s;
}

[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* Also handle hero initial load */
.hero-tag.in-view,
.hero-h1.in-view,
.hero-sub.in-view,
.hero-actions.in-view,
.hero-right.in-view {
  opacity: 1;
  transform: none;
}

/* ═══ MARQUEE ═══ */
.marquee-band {
  background: var(--navy);
  border-top: 1px solid rgba(232, 218, 200, 0.08);
  border-bottom: 1px solid rgba(232, 218, 200, 0.08);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  padding-right: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

/* ═══ SECTION BASE ═══ */
.section {
  padding: 120px 0;
  background: var(--deep);
}

.section-alt {
  background: var(--mid);
}

.section-about {
  background: var(--ink);
}

.section-contact {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--cream);
  opacity: 0.5;
}

.eyebrow-text {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  text-align: center;
  margin-bottom: 72px;
  letter-spacing: -0.01em;
}

.section-h2 em {
  font-style: italic;
  color: var(--cream);
}

.section-h2.left-align {
  text-align: left;
  margin-bottom: 28px;
}

/* ═══ SERVICES LIST ═══ */
.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 0;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
  cursor: default;
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(232, 218, 200, 0.03), transparent);
  opacity: 0;
  transition: opacity var(--t);
}

.service-item:hover::before {
  opacity: 1;
}

.service-item:hover .svc-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-item:hover .svc-title em {
  color: var(--cream2);
}

.service-item.featured .svc-num {
  color: var(--cream);
  opacity: 1;
}

.svc-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text2);
  letter-spacing: 0.06em;
  padding-top: 6px;
}

.svc-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-icon {
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 4px;
}

.svc-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.005em;
}

.svc-title em {
  font-style: italic;
  color: var(--cream);
  transition: color var(--t);
}

.svc-desc {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.85;
  font-weight: 300;
  max-width: 580px;
}

.svc-tags {
  display: flex;
  gap: 18px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.svc-tags span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text2);
  position: relative;
}

.svc-tags span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -10px;
  color: var(--text2);
}

.svc-arrow {
  color: var(--cream);
  align-self: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--t), transform var(--t);
}

/* ═══ PROFILES ═══ */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 0;
}

.profile-panel {
  padding: 52px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--t);
  overflow: hidden;
}

.profile-panel:last-child {
  border-right: none;
}

.profile-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
  opacity: 0;
  transition: opacity var(--t);
}

.profile-panel:hover {
  background: var(--cream-glow);
}

.profile-panel:hover::after {
  opacity: 1;
}

.profile-panel.featured {
  background: var(--navy);
}

.profile-panel.featured::after {
  opacity: 0.6;
}

.profile-panel.featured:hover {
  background: var(--navy2);
}

.pp-number {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.profile-panel.featured .pp-number {
  opacity: 0.14;
}

.pp-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pp-content h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
}

.pp-content p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  font-weight: 300;
}

.pp-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.pp-content li {
  font-size: 0.85rem;
  color: var(--text2);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pp-content li::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--cream);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ═══ ABOUT ═══ */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual-block {
  position: relative;
  width: 380px;
  height: 380px;
}

.av-outer-ring,
.av-inner-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(232, 218, 200, 0.1);
  transform: translate(-50%, -50%);
}

.av-outer-ring {
  width: 340px;
  height: 340px;
  animation: rotSlow 40s linear infinite;
}

.av-inner-ring {
  width: 200px;
  height: 200px;
  border-color: rgba(232, 218, 200, 0.18);
  animation: rotSlow 25s linear infinite reverse;
}

@keyframes rotSlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.av-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cream);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 24px var(--cream), 0 0 60px rgba(232, 218, 200, 0.3);
}

.av-label {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--cream-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.av-label-av {
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.av-label-fin {
  bottom: 38px;
  right: 28px;
}

.av-label-re {
  bottom: 38px;
  left: 28px;
}

.av-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 1px;
  background: linear-gradient(90deg, var(--cream), transparent);
  transform-origin: left center;
  opacity: 0.18;
}

.av-line-1 {
  transform: rotate(-70deg);
}

.av-line-2 {
  transform: rotate(50deg);
}

.av-line-3 {
  transform: rotate(175deg);
}

.av-quote-card {
  position: absolute;
  bottom: -10px;
  right: -24px;
  background: var(--navy);
  border: 1px solid rgba(232, 218, 200, 0.15);
  padding: 18px 22px;
  max-width: 200px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.av-quote-text {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.6;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-body-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-body-wrap p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.9;
  font-weight: 300;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.ab-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ab-pillar-line {
  width: 1px;
  height: 36px;
  background: var(--cream);
  opacity: 0.4;
  flex-shrink: 0;
  margin-top: 3px;
}

.ab-pillar>div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ab-pillar strong {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
}

.ab-pillar span {
  font-size: 0.84rem;
  color: var(--text2);
  font-weight: 300;
}

/* ═══ CONTACT ═══ */
.contact-deco {
  position: absolute;
  bottom: -60px;
  right: -40px;
  font-family: var(--serif);
  font-size: 20vw;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  opacity: 0.018;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.contact-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-intro {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.85;
  font-weight: 300;
}

.contact-address {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--border);
  background: var(--cream-glow);
  margin-top: 8px;
}

.contact-address svg {
  color: var(--cream);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-address strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}

.contact-address p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
}

/* ─── Form ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border2);
  padding: 44px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text2);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 0.93rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
  appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cream-brd);
  box-shadow: 0 0 0 3px var(--cream-dim);
}

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

.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  padding-right: 36px;
  cursor: pointer;
}

.select-wrap select option {
  background: var(--surface);
}

.select-caret {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text2);
  pointer-events: none;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo-box {
  border: 1px solid rgba(244, 240, 234, 0.3);
  padding: 5px 14px;
  display: inline-block;
}

.footer-logo-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.26em;
  color: rgba(244, 240, 234, 0.7);
}

.footer-logo-sub {
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text2);
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-copy {
  font-size: 11px;
  color: var(--text2);
  letter-spacing: 0.06em;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-right {
    align-items: flex-start;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-left {
    order: -1;
  }

  .about-visual-block {
    width: 300px;
    height: 300px;
  }

  .av-outer-ring {
    width: 270px;
    height: 270px;
  }

  .av-inner-ring {
    width: 160px;
    height: 160px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .profile-panel {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .profile-panel:last-child {
    border-bottom: none;
  }
}

@media (max-width: 720px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(4, 6, 15, 0.97);
    backdrop-filter: blur(20px);
    padding: 28px 28px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
  }

  .hero-h1 {
    font-size: clamp(2.8rem, 10vw, 3.6rem);
  }

  .service-item {
    grid-template-columns: 56px 1fr;
  }

  .svc-arrow {
    display: none;
  }

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

  .contact-form {
    padding: 28px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-logo-inner {
    padding: 16px 36px;
  }

  .container {
    padding: 0 24px;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-trail {
    display: none;
  }
}