@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap");

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --navy: #07111f;
  --navy-mid: #0f1e35;
  --navy-card: #132447;
  --gold: #c8a84b;
  --gold-light: #dfc070;
  --gold-border: rgba(200, 168, 75, 0.25);
  --silver: #8fa3be;
  --white: #ffffff;
  --off-white: #f6f7fa;
  --grey-100: #edf0f7;
  --grey-200: #d6dce9;
  --text-dark: #0e1b30;
  --text-body: #2a3a55;
  --text-muted: #5c7290;

  --shadow-sm: 0 1px 4px rgba(7, 17, 31, 0.08);
  --shadow-md: 0 4px 16px rgba(7, 17, 31, 0.1);
  --shadow-lg: 0 12px 40px rgba(7, 17, 31, 0.14);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.65;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--text-dark);
  line-height: 1.2;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 70px;
  background: rgba(7, 17, 31, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.nav-links a {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-contact {
  margin-left: 0.5rem;
  background: var(--gold) !important;
  color: var(--navy) !important;
  height: auto !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(200, 168, 75, 0.3) !important;
  transition: var(--transition) !important;
}

@media (max-width: 768px) {
  /* remove all special styling from contact in mobile */
  .nav-contact {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0.75rem 2rem !important;
  }

  .nav-contact:hover {
    background: transparent !important;
    color: var(--white) !important;
    transform: none;
  }

  /* gold left border shows active page */
  .nav-links a.active {
    color: var(--gold) !important;
    border-left: 3px solid var(--gold);
    padding-left: calc(2rem - 3px); /* compensate so text doesn't shift */
  }
}

.nav-contact:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-contact::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.8rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(200, 168, 75, 0.3);
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 20px rgba(200, 168, 75, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  background: var(--navy-card);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 60% at 75% 50%,
      rgba(200, 168, 75, 0.07) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 15% 20%,
      rgba(19, 36, 71, 0.9) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 70px;
}

.hero-title {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero-content p {
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   QUICK QUOTE CARD
───────────────────────────────────────── */
.quick-quote {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.quick-quote h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.quick-quote label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.4rem;
  margin-top: 1rem;
}

.quick-quote label:first-of-type {
  margin-top: 0;
}

.quick-quote input,
.quick-quote select {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(168, 180, 200, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  appearance: none;
}

.quick-quote input:focus,
.quick-quote select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.15);
}

.quick-quote input::placeholder {
  color: rgba(143, 163, 190, 0.6);
}
.quick-quote select option {
  background: var(--navy-mid);
}

.quick-quote .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1.25rem;
}

/* ─────────────────────────────────────────
   SERVICES STRIP
───────────────────────────────────────── */
.services-strip {
  background: var(--navy-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 2.5rem;
}

.strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.strip-item {
  padding: 1.25rem;
  border-right: 1px solid var(--gold-border);
}

.strip-item:last-child {
  border-right: none;
}

.strip-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.strip-item p {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   WHY US — your styles, extended
───────────────────────────────────────── */
.why-us {
  padding: 5rem 2.5rem;
  background: var(--off-white);
}

.why-us h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 2.5rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.why-us-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}

.why-us-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gold-border);
}

.why-us-card strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--text-dark);
}

.why-us-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band {
  background: var(--gold);
  padding: 3.5rem 2.5rem;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.cta-band-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band .btn-secondary {
  border-color: rgba(7, 17, 31, 0.35);
  color: var(--navy);
}

.cta-band .btn-secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(7, 17, 31, 0.06);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--gold-border);
  padding: 4rem 2.5rem 2rem;
  color: var(--silver);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.85rem;
}

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

.footer-brand p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a,
.footer-contact-item a {
  color: var(--silver);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover,
.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-contact-item {
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-size: 0.78rem;
  color: rgba(143, 163, 190, 0.5);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .hero-content p {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }

  .strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip-item {
    border-right: none;
    border-bottom: 1px solid var(--gold-border);
  }
  .strip-item:nth-child(3),
  .strip-item:last-child {
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gold-border);
  }

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

  .nav-links a {
    height: auto;
    padding: 0.75rem 2rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-contact {
    margin: 0.5rem 2rem !important;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  /* Your mobile scroll cards — kept as-is */
  .why-us-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .why-us-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  .strip-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .cta-band-buttons {
    flex-direction: column;
    align-items: center;
  }
}
