/* ============================================================
   AQUATE — Enterprise Transformation Advisory
   styles.css
   ============================================================ */

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

:root {
  --black:    #0D0D0F;
  --dark:     #1A1A1D;
  --mid:      #252528;
  --grey:     #4A4D4F;
  --light:    #D9D7D2;
  --gold:     #C9A46A;
  --gold-dim: rgba(201, 164, 106, 0.12);
  --white:    #FFFFFF;

  --font-display: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
  color: var(--light);
  line-height: 1.85;
}

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

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

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

/* === UTILITIES === */
.label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.divider {
  width: 2.5rem;
  height: 1.5px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.divider--center { margin: 1.5rem auto; }

.text-white { color: var(--white); }
.text-gold  { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 { color: var(--white); }

.section-header p {
  margin: 1.5rem auto 0;
  max-width: 55ch;
  text-align: center;
  opacity: 0.7;
  font-size: 1.05rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 1rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(13, 13, 15, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 0;
  border-bottom-color: var(--gold-dim);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav__logo-img {
  height: 260px;
  width: auto;
  display: block;
  transition: opacity 0.3s, height 0.4s var(--ease);
}

.nav__logo-img:hover {
  opacity: 0.85;
}

.nav--scrolled .nav__logo-img {
  height: 180px;
}

.footer__logo-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin-bottom: 1.25rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nav__logo-mark {
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  color: var(--white);
  font-weight: 400;
}

.nav__logo-sub {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Links */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(217,215,210,0.7);
  position: relative;
  transition: color 0.3s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

/* CTA button */
.nav__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(201,164,106,0.5);
  color: var(--gold);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
  background: transparent;
}

.nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--light);
  transition: all 0.3s;
  transform-origin: center;
}

/* Mobile open state */
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav--open .nav__drawer {
  display: flex;
}

.nav__drawer .nav__links {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav__drawer .nav__links a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--light);
}

.nav__drawer .nav__links a:hover { color: var(--gold); }

.nav__drawer-cta {
  margin-top: 3rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Blueprint grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,164,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,164,106,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

/* Gold glow */
.hero__glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,164,106,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Geometric art – right side */
.hero__art {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  pointer-events: none;
  opacity: 0.4;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 20rem;
}

.hero__label { margin-bottom: 2rem; }

.hero__title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  max-width: 720px;
  margin-bottom: 2rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.1rem;
  max-width: 480px;
  line-height: 1.85;
  opacity: 0.7;
  margin-bottom: 3rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.9; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary:hover {
  background: #d9b880;
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(201,164,106,0.45);
  color: var(--gold);
}

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(201,164,106,0.08);
}

.btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  padding: 0;
  transition: gap 0.3s;
  cursor: pointer;
}

.btn--ghost:hover { gap: 1rem; }

.btn--ghost .arrow {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 0.3s;
}

.btn--ghost:hover .arrow { width: 30px; }

.btn--ghost .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ============================================================
   PRINCIPLES STRIP
   ============================================================ */
.principles {
  background: var(--dark);
  padding: 0;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.principle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid var(--gold-dim);
  transition: background 0.3s;
}

.principle:last-child { border-right: none; }
.principle:hover { background: rgba(201,164,106,0.04); }

.principle__icon {
  color: var(--gold);
  margin-bottom: 0.85rem;
  opacity: 0.8;
}

.principle__name {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light);
  opacity: 0.65;
  margin-top: 0.3rem;
}

/* ============================================================
   ABOUT INTRO (home)
   ============================================================ */
.about-intro {
  background: var(--black);
}

.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Geometric visual */
.about-intro__visual {
  position: relative;
  height: 480px;
}

.about-intro__art {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-dim);
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro__art-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 160px;
  height: 100px;
  border: 1px solid rgba(201,164,106,0.25);
  background: rgba(201,164,106,0.06);
}

.about-intro__stat-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: var(--black);
  border: 1px solid var(--gold-dim);
  padding: 1.25rem 1.5rem;
}

.about-intro__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.about-intro__stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light);
  opacity: 0.55;
  margin-top: 0.3rem;
}

.about-intro__content h2 { color: var(--white); }

.about-intro__content p {
  margin-top: 1.5rem;
  opacity: 0.72;
  font-size: 1rem;
  line-height: 1.9;
}

.about-intro__content p + p { margin-top: 1rem; }

.about-intro__content .btn--ghost { margin-top: 2.5rem; }

/* ============================================================
   SERVICES OVERVIEW (home)
   ============================================================ */
.services-overview {
  background: var(--dark);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--gold-dim);
  margin-top: 1rem;
}

.service-card {
  background: var(--dark);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover { background: var(--mid); }
.service-card:hover::after { transform: scaleX(1); }

.service-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(201,164,106,0.12);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.service-card__icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 400;
}

.service-card p {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.85;
}

.service-card .btn--ghost { margin-top: 2rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--black);
  padding: 5rem 0;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--gold-dim);
}

.stat-box {
  background: var(--black);
  padding: 3rem 2rem;
  text-align: center;
}

.stat-box__num {
  font-family: var(--font-display);
  font-size: 3.25rem;
  color: var(--gold);
  line-height: 1;
}

.stat-box__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  opacity: 0.5;
  margin-top: 0.5rem;
  display: block;
}

/* ============================================================
   INSIGHTS PREVIEW (home)
   ============================================================ */
.insights-preview {
  background: var(--dark);
}

.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--gold-dim);
  margin-top: 1rem;
}

.insight-card {
  background: var(--dark);
  padding: 2.5rem;
  transition: background 0.3s;
}

.insight-card:hover { background: var(--mid); }

.insight-card__tag {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.insight-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 400;
}

.insight-card p {
  font-size: 0.875rem;
  opacity: 0.6;
  line-height: 1.8;
}

.insight-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.68rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}

.insight-card__meta::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-band {
  background: var(--black);
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,164,106,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__content { position: relative; z-index: 1; }

.cta-band h2 {
  color: var(--white);
  max-width: 560px;
  margin: 1.5rem auto;
}

.cta-band p {
  margin: 0 auto 3rem;
  text-align: center;
  max-width: 46ch;
  opacity: 0.65;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--gold-dim);
  padding: 2.5rem 0 1.5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gold-dim);
  align-items: start;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: var(--white);
  display: block;
}

.footer__brand-sub {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 3px;
  margin-bottom: 1.5rem;
}

.footer__desc {
  font-size: 0.875rem;
  opacity: 0.55;
  line-height: 1.85;
  max-width: none;
}

.footer__col-title {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--light);
  opacity: 0.55;
  transition: opacity 0.25s, color 0.25s;
}

.footer__links a:hover { opacity: 1; color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  font-size: 0.72rem;
  color: var(--light);
  opacity: 0.35;
  letter-spacing: 0.06em;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 22rem 0 5rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,164,106,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,164,106,0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 10%, transparent 70%);
}

.page-hero__content { position: relative; z-index: 1; }

.page-hero h1 { color: var(--white); margin-top: 1.5rem; }

.page-hero__lead {
  font-size: 1.1rem;
  max-width: 56ch;
  opacity: 0.68;
  margin-top: 1.75rem;
  line-height: 1.9;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { background: var(--black); }

.about-story__inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 6rem;
  align-items: start;
}

.about-story__body p {
  opacity: 0.72;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
}

.about-story__body p:last-child { margin-bottom: 0; }

.about-story__aside {
  position: sticky;
  top: 8rem;
}

.about-callout {
  border: 1px solid var(--gold-dim);
  padding: 2.5rem;
  background: var(--dark);
}

.about-callout__quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
}

.about-callout__attr {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
  display: block;
}

/* Principles deep-dive */
.about-principles { background: var(--dark); }

.principles-deep {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--gold-dim);
  margin-top: 1rem;
}

.principle-card {
  background: var(--dark);
  padding: 2.5rem;
  transition: background 0.3s;
}

.principle-card:hover { background: var(--mid); }

.principle-card__letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(201,164,106,0.18);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.principle-card h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.principle-card p {
  font-size: 0.875rem;
  opacity: 0.65;
  line-height: 1.8;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list { background: var(--black); }

.service-item {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  padding: 5rem 0;
  border-bottom: 1px solid var(--gold-dim);
  align-items: start;
}

.service-item:last-child { border-bottom: none; }

.service-item__head {
  position: sticky;
  top: 8rem;
}

.service-item__num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(201,164,106,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-item__name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.service-item__tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0;
}

.service-item__body p {
  opacity: 0.72;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.service-item__deliverables { margin-top: 2.5rem; }

.service-item__dl-title {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.service-item__dl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-item__dl-list li {
  font-size: 0.875rem;
  opacity: 0.7;
  padding-left: 1.5rem;
  position: relative;
}

.service-item__dl-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   INSIGHTS PAGE
   ============================================================ */
.insights-list { background: var(--black); }

.insights-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--gold-dim);
  margin-top: 1rem;
}

.insight-full-card {
  background: var(--black);
  padding: 3rem;
  transition: background 0.3s;
}

.insight-full-card:hover { background: var(--dark); }

.insight-full-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.insight-full-card__tag {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.insight-full-card h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 400;
}

.insight-full-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 400;
}

.insight-full-card p {
  font-size: 0.9rem;
  opacity: 0.62;
  line-height: 1.85;
}

.insight-full-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.68rem;
  color: var(--grey);
}

.insight-full-card__meta::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--black); }

.contact__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 6rem;
  align-items: start;
}

.contact__info-group {
  margin-bottom: 2.5rem;
}

.contact__info-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact__info-value {
  font-size: 1rem;
  color: var(--light);
  opacity: 0.85;
}

.contact__info-value a:hover { color: var(--gold); }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid rgba(201,164,106,0.2);
  color: var(--light);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A46A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option { background: var(--dark); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(217,215,210,0.3); }

.form__notice {
  font-size: 0.8rem;
  opacity: 0.45;
}

.form__success {
  display: none;
  border: 1px solid rgba(201,164,106,0.3);
  padding: 1.5rem 2rem;
  background: rgba(201,164,106,0.06);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.in-view { opacity: 1; transform: translateY(0); }

.fade-up--d1 { transition-delay: 0.1s; }
.fade-up--d2 { transition-delay: 0.2s; }
.fade-up--d3 { transition-delay: 0.3s; }
.fade-up--d4 { transition-delay: 0.4s; }
.fade-up--d5 { transition-delay: 0.5s; }
.fade-up--d6 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-intro__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro__visual { height: 320px; }
  .about-story__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-story__aside { position: static; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-item { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-item__head { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .principles__grid { grid-template-columns: repeat(3, 1fr); }
  .principle:nth-child(3) { border-right: none; }
  .principle:nth-child(4),
  .principle:nth-child(5),
  .principle:nth-child(6) {
    border-top: 1px solid var(--gold-dim);
  }
  .principles-deep { grid-template-columns: repeat(2, 1fr); }
  .insights-full { grid-template-columns: 1fr; }
  .insight-full-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  .nav__menu { display: none; }
  .nav__toggle { display: flex; }

  .hero__title { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .hero__art { display: none; }

  .principles__grid { grid-template-columns: repeat(2, 1fr); }
  .principle:nth-child(2) { border-right: none; }
  .principle:nth-child(3) { border-right: 1px solid var(--gold-dim); border-top: 1px solid var(--gold-dim); }
  .principle:nth-child(4) { border-right: none; border-top: 1px solid var(--gold-dim); }
  .principle:nth-child(5) { border-right: 1px solid var(--gold-dim); border-top: 1px solid var(--gold-dim); }
  .principle:nth-child(6) { border-right: none; border-top: 1px solid var(--gold-dim); }

  .services__grid { grid-template-columns: 1fr; }
  .insights__grid { grid-template-columns: 1fr; }
  .principles-deep { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

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

  .page-hero { padding: 9rem 0 4rem; }
  .cta-band { padding: 5rem 0; }
}
