/* ── ASHISH BISARIA · SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display&display=swap');

:root {
  --ink: #0f1117;
  --teal: #006B54;
  --teal-dim: #005242;
  --teal-pale: #e6f0ed;
  --gold: #F0C040;
  --amber: #e67e22;
  --cream: #faf9f6;
  --card-bg: #ffffff;
  --muted: #8a8d96;
  --border: #e8e4de;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --display: 'Cormorant Garamond', Georgia, serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); -webkit-font-smoothing: antialiased; }

/* ── NAVIGATION ── */
.site-nav {
  background: var(--ink);
  padding: 0 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0,107,84,.15);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  letter-spacing: .5px;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--muted); margin: 4px 0; transition: .2s;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px; text-decoration: none;
  transition: background .2s;
}
.btn-primary:hover { background: var(--teal-dim); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--teal);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 32px; border-radius: 2px; border: 1px solid var(--teal);
  text-decoration: none; transition: all .2s;
}
.btn-secondary:hover { background: var(--teal); color: #fff; }
.btn-secondary.dark { color: #fff; border-color: rgba(255,255,255,.3); }
.btn-secondary.dark:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--ink);
  padding: 80px 72px 72px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--teal) 0%, var(--gold) 100%);
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,107,84,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,107,84,.03) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.page-header-eyebrow {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
  position: relative; z-index: 2;
}
.page-header-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.page-header-eyebrow-text {
  font-size: 13px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400; color: #fff; line-height: 1.05;
  margin-bottom: 16px; position: relative; z-index: 2;
}
.page-header-sub {
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 300; font-style: italic;
  color: var(--muted); position: relative; z-index: 2;
}

/* ── SECTION BASE ── */
.section { padding: 96px 72px; }
.section-light { background: var(--cream); }
.section-dark { background: var(--ink); }
.section-white { background: #fff; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}
.section-label.gold { color: var(--gold); }
.section-label.amber { color: var(--amber); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400; line-height: 1.1; margin-bottom: 20px;
}
.section-title.light { color: #fff; }
.section-desc { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 560px; }
.section-desc.light { color: rgba(255,255,255,.7); }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid var(--teal);
  padding: 20px 28px;
  margin: 40px 0;
  background: var(--teal-pale);
}
.pull-quote p {
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300; font-style: italic;
  color: var(--ink); line-height: 1.4;
}


/* ── UNIFIED FOOTER ── */
.site-footer {
  background: var(--ink);
  padding: 64px 72px 48px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.06);
}
.site-footer::before {
  content:''; position:absolute; left:0; top:0; width:4px; height:100%;
  background: linear-gradient(180deg, var(--teal) 0%, var(--gold) 100%);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px; align-items: stretch;
  margin-bottom: 40px;
}
.footer-left {}
.footer-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.footer-name {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 6px;
}
.footer-location {
  font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 24px;
}
.footer-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-center {
  display: flex; align-items: center; justify-content: center;
  align-self: stretch;
}
.footer-quote {
  font-family: var(--display);
  font-size: 32px; font-weight: 300; font-style: italic;
  color: #ffffff; line-height: 1.4;
  text-align: center;
}
.footer-right {
  display: flex; flex-direction: column; justify-content: center;
  gap: 20px; padding-top: 4px;
}
.footer-advisory {
  font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.7;
}
.footer-advisory strong { color: var(--gold); font-weight: 600; }
.footer-op-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 19px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--teal);
  text-decoration: none; transition: color .2s;
  border-bottom: 1px solid rgba(0,107,84,.3); padding-bottom: 2px;
  margin-top: 2em;
}
.footer-op-link:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-left {
  font-size: 12px; color: var(--gold);
  letter-spacing: .5px; font-weight: 500;
}
.footer-bottom-right { display: flex; gap: 24px; }
.footer-bottom-right a {
  font-size: 12px; color: #9098a8; text-decoration: none;
  letter-spacing: .5px; transition: color .2s;
}
.footer-bottom-right a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .site-footer { padding: 48px 28px 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-center { justify-content: flex-start; }
  .footer-quote { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ── CARD ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,.09); }
.card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), rgba(0,107,84,.3));
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 0 28px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--ink); padding: 24px 28px; gap: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-mobile-toggle { display: block; }
  .page-header { padding: 56px 28px 48px; }
  .section { padding: 64px 28px; }
  .site-footer { padding: 56px 28px 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-buttons { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── GOLD BUTTON ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--ink);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px; text-decoration: none;
  transition: background .2s;
}
.btn-gold:hover { background: #d9ac30; }

/* ── BTN BLACK (X button) ── */
.btn-black {
  display: inline-flex; align-items: center; gap: 8px;
  background: #000; color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px; text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  transition: background .2s;
}
.btn-black:hover { background: #1a1a1a; }
