/* ============================================================
   BIGORIGIN CONSTRUCTIONS — MAIN STYLESHEET
   ============================================================
   TABLE OF CONTENTS
   1. CSS Variables (Brand Colours)
   2. Reset & Base
   3. Navigation
   4. Mobile Nav
   5. Buttons
   6. Section Shared Styles
   7. Scroll Reveal Animation
   8. Footer
   9. Responsive Breakpoints
   ============================================================ */


/* ── 1. CSS VARIABLES ───────────────────────────────────────── */
:root {
  --teal:        #0D4F6E;   /* primary brand teal */
  --teal-dark:   #09374E;   /* darkest bg */
  --teal-mid:    #0b4261;   /* mid-tone bg */
  --teal-light:  #155F82;   /* lighter teal */
  --gold:        #D4AF5A;   /* primary gold */
  --gold-light:  #E8CA7E;   /* hover gold */
  --gold-pale:   #F3E4B5;   /* pale gold text */
  --white:       #FFFFFF;
  --off-white:   #F7F4EE;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", sans-serif;
  background: var(--teal-dark);
  color: var(--white);
  overflow-x: hidden;
}


/* ── 3. NAVIGATION ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 80px;
  background: rgba(9, 55, 78, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 90, 0.2);
  transition: height 0.3s;
}

.nav-logo img {
  height: 58px;
  width: auto;
  display: block;
}

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

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

/* "Get Quote" CTA button inside nav */
.nav-cta {
  background: var(--gold) !important;
  color: var(--teal-dark) !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  border-radius: 1px;
  transition: background 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  box-shadow: 0 4px 20px rgba(212, 175, 90, 0.4) !important;
}

/* Hamburger icon (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}


/* ── 4. MOBILE NAV ──────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(9, 55, 78, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 30px;
  cursor: pointer;
}


/* ── 5. BUTTONS ─────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--teal-dark);
  padding: 15px 36px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  border: 2px solid var(--gold);
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(212, 175, 90, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(212, 175, 90, 0.5);
  color: var(--gold);
  padding: 15px 36px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: border-color 0.3s, background 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 90, 0.08);
}


/* ── 6. SECTION SHARED STYLES ───────────────────────────────── */
.sec { padding: 110px 60px; }

/* Background variants */
.sec-teal-dark  { background: var(--teal-dark); }
.sec-teal       { background: var(--teal); }
.sec-teal-mid   { background: var(--teal-mid); }

/* Section label (small caps above title) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-center { justify-content: center; }

/* Section title */
.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}

/* Section subtitle */
.sec-sub {
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
  opacity: 0.7;
}


/* ── 7. SCROLL REVEAL ANIMATION ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── 8. FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--teal-dark);
  border-top: 1px solid rgba(212, 175, 90, 0.15);
  padding: 72px 60px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 13.5px;
  opacity: 0.55;
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-soc {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 175, 90, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  color: var(--gold);
  transition: background 0.3s, border-color 0.3s;
}
.footer-soc:hover {
  background: rgba(212, 175, 90, 0.12);
  border-color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 28px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold); }


/* ── 9. RESPONSIVE BREAKPOINTS ──────────────────────────────── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sec { padding: 72px 24px; }
  footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}
