@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --black: #0D0D0D;
  --off-white: #F5F3EE;
  --warm-white: #FAFAF8;
  --steel: #2B3A4A;
  --steel-mid: #3D5166;
  --steel-light: #4A6278;
  --accent: #9A8878;
  --accent-light: #B09888;
  --accent-dark: #7A6858;
  --muted: #8A9199;
  --muted-light: #9AAABB;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.08);
  --heading: 'Rajdhani', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(13,13,13,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo-wrap {
  display: flex; align-items: center; gap: 0.75rem; text-decoration: none;
}
.nav-logo-img { height: 34px; width: auto; }
.nav-logo {
  font-family: var(--heading);
  font-weight: 700; font-size: 1.35rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--off-white); text-decoration: none;
}
.nav-logo span { color: #C8202A; }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
  align-items: center; flex-wrap: nowrap;
}
.nav-links a {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,243,238,0.55); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--off-white); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--off-white) !important;
  padding: 0.58rem 1.35rem !important;
  border-radius: 2px; font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
  white-space: nowrap; flex-shrink: 0;
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--off-white);
}
.nav-mobile {
  display: none; position: fixed;
  top: 65px; left: 0; right: 0;
  background: rgba(13,13,13,0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem; flex-direction: column; gap: 1.25rem; z-index: 99;
}
.nav-mobile a {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(245,243,238,0.65); text-decoration: none;
}
.nav-mobile a.cta { color: var(--accent); font-weight: 700; }
.nav-mobile.open { display: flex; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 10rem 3rem 5rem; position: relative;
  overflow: hidden; background: var(--black);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(43,58,74,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 85% 30%, rgba(154,136,120,0.06) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
}
.page-hero-content { position: relative; max-width: 820px; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem;
}
.page-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--accent);
}
.page-title {
  font-family: var(--heading); font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem); line-height: 0.95;
  letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.page-title .accent { color: var(--accent); }
.page-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.75;
  color: rgba(245,243,238,0.65); max-width: 520px;
}

/* ── SHARED ── */
section { padding: 6rem 3rem; }
.inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.9rem;
}
.section-title {
  font-family: var(--heading); font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem); text-transform: uppercase;
  line-height: 1; margin-bottom: 1.2rem; letter-spacing: 0.02em;
}
.section-body {
  font-size: 0.97rem; font-weight: 300; line-height: 1.75;
  color: rgba(245,243,238,0.65);
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: var(--off-white);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; padding: 0.95rem 2rem; border-radius: 2px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  display: inline-block; border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-ghost {
  border: 1px solid rgba(245,243,238,0.25); color: var(--off-white);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.95rem 2rem; border-radius: 2px; text-decoration: none;
  transition: all 0.2s; display: inline-block;
}

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--off-white); font-family: 'Inter', sans-serif; font-size: 0.9rem;
  padding: 0.85rem 1rem; border-radius: 2px; width: 100%;
  outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-select option { background: var(--black); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── LIGHT SECTION ── */
.light-section { background: var(--warm-white); color: #1B2233; }
.light-section .section-title { color: #1B2233; }
.light-section .section-eyebrow { color: var(--steel-mid); }
.light-section .section-body { color: rgba(27,34,51,0.65); }

/* ── FOOTER ── */
footer {
  background: #080808; border-top: 1px solid var(--border);
  padding: 3.5rem 3rem 2rem;
}
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border); margin-bottom: 2rem;
}
.footer-logo-wrap {
  display: flex; align-items: center; gap: 0.65rem;
  margin-bottom: 0.75rem; text-decoration: none;
}
.footer-logo-img { height: 30px; width: auto; }
.footer-logo {
  font-family: var(--heading); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--off-white);
}
.footer-logo span { color: #C8202A; }
.footer-tagline { font-size: 0.82rem; font-weight: 300; line-height: 1.6; color: var(--muted); max-width: 220px; }
.footer-col-title {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--off-white); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--off-white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.72rem; color: var(--muted); }
.footer-badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #C8202A;
  border: 1px solid rgba(200,32,42,0.35); padding: 0.35rem 0.8rem; border-radius: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.68rem; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  section { padding: 4rem 1.25rem; }
  .page-hero { padding: 8rem 1.25rem 4rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── RED ACCENT TOUCHES ── */
/* Button glow on hover — soft */
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 0 24px rgba(200,32,42,0.35), 0 0 8px rgba(200,32,42,0.15);
  transform: translateY(-1px);
}
.btn-ghost:hover {
  box-shadow: 0 0 24px rgba(200,32,42,0.25), 0 0 8px rgba(200,32,42,0.1);
  border-color: rgba(200,32,42,0.4);
  transform: translateY(-1px);
}
.nav-cta:hover {
  box-shadow: 0 0 20px rgba(200,32,42,0.3), 0 0 6px rgba(200,32,42,0.15) !important;
}

/* Active nav link — red underline */
.nav-links a.active {
  color: var(--off-white);
  border-bottom: 2px solid #C8202A;
  padding-bottom: 2px;
}

/* Pull quote border — red (about page) */
.story-pull { border-left-color: #C8202A; }
.p-pull { border-left-color: #C8202A; }
