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

:root {
  --ink:    #08080f;
  --deep:   #0d0d18;
  --card:   #111120;
  --card2:  #161628;
  --border: rgba(255,255,255,0.07);
  --border2:rgba(255,255,255,0.12);
  --gold:   #c9a96e;
  --gold2:  #e8c98a;
  --white:  #f0eeea;
  --muted:  rgba(240,238,234,0.48);
  --muted2: rgba(240,238,234,0.72);
  --radius: 2px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* noise grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none; z-index: 900; opacity: 0.5;
}

/* ── TYPE ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; }
h1 { font-size: clamp(3rem, 6vw, 5.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.7rem); }
p  { color: var(--muted); line-height: 1.8; }
a  { color: inherit; text-decoration: none; }
strong { font-weight: 500; color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6rem;
}
.eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5vw;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8,8,15,0.95);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--white);
}
.nav-logo em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
  color: var(--muted); font-size: 0.83rem; letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  padding: 0.55rem 1.6rem; border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.22s, color 0.22s;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1px; background: var(--white); display: block; }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--deep); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 2.6rem;
  color: var(--white); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 1.6rem; right: 5vw; font-size: 2rem; cursor: pointer; color: var(--muted); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 2.4rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.22s;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1px solid var(--border2); color: var(--muted2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { background: transparent; color: var(--muted2); padding-left: 0; padding-right: 0; }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::after { transform: translateX(5px); }

/* ── SECTION SHARED ── */
.section { padding: 7rem 5vw; }
.section-sm { padding: 4rem 5vw; }
.section-dark { background: var(--deep); }
.section-card { background: var(--card); }

.section-header { max-width: 700px; margin-bottom: 4.5rem; }
.section-header p { margin-top: 1.2rem; font-size: 1rem; max-width: 560px; }
.section-header-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header-center p { margin-left: auto; margin-right: auto; }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 14vh 5vw 10vh; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 85% 35%, rgba(201,169,110,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 5% 85%, rgba(100,120,180,0.04) 0%, transparent 55%),
    linear-gradient(155deg, var(--deep) 0%, var(--ink) 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black, transparent);
}
.hero-content { position: relative; max-width: 680px; }
.hero-content h1 { margin-bottom: 1.8rem; }
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  max-width: 540px; font-size: 1.05rem; color: var(--muted2);
  margin-bottom: 2.8rem; line-height: 1.85;
}
.hero-actions { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; color: var(--gold); line-height: 1; font-weight: 300;
}
.stat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }

/* hero animation */
.hero-content .eyebrow { opacity: 0; animation: fadeUp 0.7s 0.1s forwards; }
.hero-content h1      { opacity: 0; animation: fadeUp 0.8s 0.25s forwards; }
.hero-sub             { opacity: 0; animation: fadeUp 0.8s 0.4s forwards; }
.hero-actions         { opacity: 0; animation: fadeUp 0.8s 0.55s forwards; }
.hero-stats           { opacity: 0; animation: fadeUp 0.8s 0.8s forwards; }

/* ── INTRO BAND ── */
.intro-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 5vw;
  background: var(--deep);
}
.intro-band-inner {
  max-width: 820px; margin: 0 auto; text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  line-height: 1.75; color: var(--muted2);
}
.intro-band-inner strong { color: var(--gold); font-weight: 400; }

/* ── SOLUTIONS (numbered, NAP-style) ── */
.solutions-list { display: flex; flex-direction: column; gap: 0; }
.solution-item {
  display: grid; grid-template-columns: 90px 1fr 1fr;
  gap: 0; border-bottom: 1px solid var(--border);
  padding: 4rem 0; align-items: start;
  transition: background 0.3s;
}
.solution-item:first-child { border-top: 1px solid var(--border); }
.solution-item:hover { background: rgba(255,255,255,0.015); }
.solution-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; color: var(--gold); opacity: 0.2;
  line-height: 1; padding-top: 0.2rem;
}
.solution-left h3 { font-size: 1.8rem; margin-bottom: 1rem; padding-right: 3rem; }
.solution-left p  { font-size: 0.9rem; line-height: 1.85; padding-right: 2rem; }
.solution-left .btn-ghost { margin-top: 1.5rem; font-size: 0.8rem; }
.solution-tags { display: flex; flex-direction: column; gap: 0; justify-content: flex-start; padding-top: 0.4rem; }
.solution-tag {
  padding: 0.7rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.85rem; color: var(--muted2);
  display: flex; align-items: center; gap: 0.8rem;
}
.solution-tag:last-child { border-bottom: none; }
.solution-tag::before { content: '—'; color: var(--gold); font-size: 0.7rem; }

/* ── WHY CHOOSE (NAP-style numbered cards) ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--border); }
.why-card {
  background: var(--card); padding: 3rem 2.5rem;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.why-card:hover { background: var(--card2); }
.why-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; color: var(--gold); opacity: 0.12;
  line-height: 1; margin-bottom: -1rem;
}
.why-card h3 { font-size: 1.4rem; margin-bottom: 0.9rem; margin-top: 0.5rem; }
.why-card p { font-size: 0.88rem; line-height: 1.85; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; margin-top: 4rem; }
.process-grid::before {
  content: '';
  position: absolute; top: 2.2rem; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2) 20%, var(--border2) 80%, transparent);
}
.process-step { padding: 0 1.2rem; padding-top: 5.5rem; position: relative; }
.process-step-num {
  position: absolute; top: 0;
  width: 4.4rem; height: 4.4rem;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold);
  background: var(--deep);
}
.process-step h4 { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500; margin-bottom: 0.6rem; color: var(--white); }
.process-step p { font-size: 0.82rem; line-height: 1.75; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 0; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 400;
  color: var(--muted2); transition: color 0.2s;
  list-style: none;
}
.faq-question:hover { color: var(--white); }
.faq-question.open { color: var(--white); }
.faq-icon {
  width: 28px; height: 28px; border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; color: var(--gold);
  transition: transform 0.3s;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer.open { max-height: 300px; padding-bottom: 1.5rem; }
.faq-answer p { font-size: 0.88rem; line-height: 1.85; color: var(--muted); }

/* ── INDUSTRIES GRID ── */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1px; border: 1px solid var(--border); margin-top: 3.5rem; }
.industry-card { background: var(--card); padding: 2.2rem 2rem; transition: background 0.3s; }
.industry-card:hover { background: var(--card2); }
.industry-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.industry-card p { font-size: 0.85rem; line-height: 1.75; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 7rem; align-items: start; }
.contact-info-detail { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.6rem; }
.contact-icon { width: 38px; height: 38px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.contact-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.contact-val { font-size: 0.9rem; color: var(--muted2); }
.contact-val a { color: var(--gold); }

.form-grid { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.45rem; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--card); border: 1px solid var(--border);
  color: var(--white); padding: 0.9rem 1.1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; outline: none;
  transition: border-color 0.22s; border-radius: var(--radius);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field select option { background: var(--card); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.6rem; line-height: 1.6; }

/* ── SUBSCRIBE ── */
.subscribe-band {
  background: var(--card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 5rem 5vw; text-align: center;
}
.subscribe-form { display: flex; gap: 0; max-width: 480px; margin: 2rem auto 0; }
.subscribe-form input {
  flex: 1; background: var(--deep); border: 1px solid var(--border2);
  border-right: none; color: var(--white); padding: 0.9rem 1.2rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; outline: none;
}
.subscribe-form input:focus { border-color: var(--gold); }
.subscribe-form button {
  padding: 0.9rem 1.8rem; background: var(--gold); color: var(--ink);
  border: none; font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s;
}
.subscribe-form button:hover { background: var(--gold2); }

/* ── CTA BANNER ── */
.cta-banner { padding: 7rem 5vw; text-align: center; }
.cta-banner h2 { margin-bottom: 1.3rem; }
.cta-banner p { max-width: 480px; margin: 0 auto 2.5rem; font-size: 1rem; }

/* ── PAGE HERO ── */
.page-hero {
  min-height: 38vh; display: flex; align-items: flex-end;
  padding: 14vh 5vw 5vh; position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--deep) 0%, var(--ink) 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 85% 30%, rgba(201,169,110,0.07), transparent 65%);
}
.page-hero-inner { position: relative; }
.page-hero-inner .eyebrow { opacity: 1; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem); line-height: 1.65;
  color: var(--muted2); margin-bottom: 2rem;
}
.about-body-text p { margin-bottom: 1.4rem; font-size: 0.93rem; line-height: 1.9; }
.about-aside { background: var(--card); border: 1px solid var(--border); padding: 2.8rem; }
.about-aside-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.4rem; line-height: 1.6; color: var(--white); margin-bottom: 2rem;
}
.about-aside p { font-size: 0.87rem; line-height: 1.85; border-top: 1px solid var(--border); padding-top: 1.5rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--border); margin-top: 4rem; }
.value-card { background: var(--card); padding: 2.4rem 2rem; transition: background 0.3s; }
.value-card:hover { background: var(--card2); }
.value-card h3 { font-size: 1.3rem; color: var(--gold); margin-bottom: 0.8rem; }
.value-card p { font-size: 0.86rem; line-height: 1.8; }

/* ── SERVICES PAGE ── */
.service-block {
  display: grid; grid-template-columns: 80px 1fr 1fr;
  gap: 0; padding: 4rem 0; border-bottom: 1px solid var(--border);
}
.service-block:first-child { border-top: 1px solid var(--border); }
.service-block-num { font-family:'Cormorant Garamond',serif; font-size:3rem; color:var(--gold); opacity:0.2; line-height:1; }
.service-block-main h3 { font-size: 1.8rem; margin-bottom: 1rem; padding-right: 3rem; }
.service-block-main p { font-size: 0.92rem; line-height: 1.85; padding-right: 2rem; }
.service-block-bullets { padding-top: 0.2rem; }
.service-block-bullets ul { list-style: none; }
.service-block-bullets li {
  padding: 0.55rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.87rem; color: var(--muted2);
  display: flex; align-items: flex-start; gap: 0.8rem;
}
.service-block-bullets li:last-child { border-bottom: none; }
.service-block-bullets li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: var(--ink); border-top: 1px solid var(--border);
  padding: 4.5rem 5vw 2.5rem;
}
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; letter-spacing: 0.06em; }
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-tagline { font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; margin-bottom: 1.5rem; }
.footer-contact a { display: block; color: var(--gold); font-size: 0.88rem; margin-bottom: 0.4rem; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { color: var(--muted); font-size: 0.86rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 2rem;
  font-size: 0.78rem; color: var(--muted);
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: var(--muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
.reveal { opacity:0; transform:translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .solution-item { grid-template-columns: 70px 1fr; }
  .solution-tags { display: none; }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
  .process-grid::before { display: none; }
  .process-step { padding-top: 5.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 2rem; }
  .service-block { grid-template-columns: 60px 1fr; }
  .service-block-bullets { display: none; }
}
@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
