@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --navy: #0d1b2a;
  --navy-mid: #162032;
  --navy-light: #1e2f45;
  --gold: #c9a84c;
  --gold-light: #e0c070;
  --gold-pale: #f5e9c8;
  --cream: #faf7f2;
  --slate: #6b7e94;
  --text: #2c3e50;
  --text-light: #8a9bb0;
  --white: #ffffff;
  --border: rgba(201,168,76,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 3rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: slideDown 0.6s ease both;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.logo-mark::after {
  content: '';
  width: 12px; height: 12px;
  background: var(--gold);
  transform: rotate(0deg);
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}

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

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

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.45rem 1.2rem;
  letter-spacing: 0.1em;
  transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-cta::after { display: none; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(30,47,69,0.8) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-line {
  position: absolute;
  top: 0; bottom: 0;
  right: 38%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6rem;
  max-width: 720px;
  animation: fadeUp 1s 0.3s ease both;
}

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

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

.hero p {
  font-size: 0.92rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.85;
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── SECTIONS ── */
.section {
  padding: 6rem 6rem;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-navy-mid {
  background: var(--navy-mid);
  color: var(--white);
}

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}

h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

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

.section-dark h2.section-title,
.section-navy-mid h2.section-title { color: var(--white); }

.section-subtitle {
  font-size: 0.88rem;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.section-dark .section-subtitle,
.section-navy-mid .section-subtitle { color: var(--text-light); }

/* ── FOCUS PILLARS ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-top: 3rem;
}

.pillar {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { transform: translateY(-3px); }

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.75;
}

/* ── PHILOSOPHY ── */
.philosophy-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.philosophy-text {
  padding: 5rem 4rem 5rem 6rem;
  background: var(--navy);
  color: var(--white);
}

.philosophy-quote {
  padding: 5rem 4rem;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--navy);
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.15);
}

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

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

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

.service-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.83rem;
  color: var(--slate);
  line-height: 1.8;
}

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem; left: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.2));
}

.step {
  padding: 0 1.5rem;
  padding-top: 0;
  text-align: left;
  animation: fadeUp 0.6s ease both;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

.step-num {
  width: 4rem; height: 4rem;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--navy);
  position: relative;
  z-index: 1;
}

.step-num span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
}

.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── ABOUT INTRO ── */
.about-intro {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 5rem;
  align-items: start;
  padding: 7rem 6rem;
  background: var(--navy);
}

.about-intro-text h2.section-title { color: var(--white); }

.about-intro-text p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.sidebar-box {
  background: var(--navy-light);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  margin-top: 4rem;
}

.sidebar-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
}

.sidebar-box ul li {
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-box ul li:last-child { border-bottom: none; }

.sidebar-box ul li::before {
  content: '◈';
  color: var(--gold);
  font-size: 0.6rem;
}

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201,168,76,0.08);
}

.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.value-card h3::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  transform: rotate(45deg);
}

.value-card p {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.8;
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.contact-info {
  background: var(--navy);
  padding: 5rem 4rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2.section-title { color: var(--white); }

.contact-detail {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-item-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-size: 0.9rem;
  color: var(--white);
}

.contact-form-area {
  background: var(--cream);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-area h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.8rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

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

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

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

.disclaimer {
  font-size: 0.72rem;
  color: var(--slate);
  line-height: 1.7;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  font-style: italic;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold);
  padding: 4rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
  max-width: 600px;
  line-height: 1.2;
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s, transform 0.2s;
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 3rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-copyright {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 10rem 6rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
}

.page-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content { position: relative; z-index: 2; max-width: 700px; }

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.page-hero p {
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.85;
}

/* ── UTILITIES ── */
.max-600 { max-width: 600px; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

@media (max-width: 900px) {
  header { padding: 0 1.5rem; }
  .hero-content { padding: 0 2rem; }
  .section { padding: 4rem 2rem; }
  .pillars { grid-template-columns: 1fr; }
  .philosophy-block { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { padding: 3rem 2rem; }
  .contact-form-area { padding: 3rem 2rem; }
  .cta-band { flex-direction: column; padding: 3rem 2rem; }
  footer { flex-direction: column; text-align: center; padding: 2rem; }
  .about-intro { grid-template-columns: 1fr; padding: 4rem 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 8rem 2rem 3rem; }
  nav { gap: 1.25rem; }
  nav a.nav-cta { display: none; }
}
