/* === FONTS === */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");

/* === VARIABLES === */
:root {
  --navy: #04042c;
  --gold: #ac7d36;
  --white: #ffffff;
  --font-main: "Poppins", sans-serif;
  --font-logo: "DM Serif Display", serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: var(--font-main);
  color: var(--navy);
  background: var(--white);
  padding-top: var(--nav-height);
  overflow-x: hidden;
  max-width: 100%;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
p {
  font-size: 1rem;
  line-height: 1.75;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
  line-height: 1;
}
.btn:hover {
  opacity: 0.85;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--gold {
  background: var(--gold);
  color: var(--white);
}
.section__title {
  text-align: center;
  margin-bottom: 3rem;
}
.section__title h2 {
  margin-bottom: 0.75rem;
}
.section__title p {
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--navy);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__logo {
  font-family: var(--font-logo);
  color: var(--white);
  font-size: 1.75rem;
  white-space: nowrap;
  margin-right: auto;
}
.nav_icon {
  height: 50px;
  width: auto;
  display: block;
  padding-top: 6px;
}
.nav__links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav__links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}
.nav__cta {
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 4rem;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.footer__logo {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer__slogan {
  font-size: 0.875rem;
  opacity: 0.7;
}
.footer__col img {
  max-height: 130px;
  width: auto;
  max-width: 100%;
}
.footer__col h3 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer__col ul li {
  margin-bottom: 0.5rem;
}
.footer__col a,
.footer__col p {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer__col a:hover {
  opacity: 1;
}
.footer__col p {
  margin-bottom: 0.4rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 1.25rem 1.5rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem;
  width: 100%;
}
@media (max-width: 768px) {
  .page-hero {
    min-height: 420px;
  }
  .page-hero__content {
    padding: 4rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .page-hero {
    min-height: 320px;
  }
  .page-hero__content {
    padding: 3rem 1.5rem;
  }
}
.page-hero h1 {
  margin-bottom: 0.75rem;
}
.page-hero p {
  opacity: 0.75;
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* === CARD GRID === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(4, 4, 44, 0.08);
  border-top: 3px solid var(--gold);
}
.card__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.card h3 {
  margin-bottom: 0.75rem;
}
.card p {
  font-size: 0.925rem;
  opacity: 0.8;
}

/* === CTA BANNER === */
.cta-banner {
  text-align: center;
  padding: 4rem 0;
}
.cta-banner h2 {
  margin-bottom: 0.75rem;
}
.cta-banner p {
  opacity: 0.9;
  font-size: 1.05rem;
}

/* === RESPONSIVE — NAV === */
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: var(--navy);
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav__links.open {
    display: flex;
  }
  .nav__cta {
    display: none;
  }
}

/* === RESPONSIVE — FOOTER === */
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* === HERO === */
.hero {
  background-color: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - var(--nav-height) - 110px);
  padding: 2rem;
  overflow: hidden;
}
.hero__bg {
  display: block;
  width: 40%;
  max-height: 100%;
  height: auto;
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 5rem 1.5rem;
}
.hero__title {
  font-family: var(--font-logo);
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.hero__slogan {
  font-family: var(--font-main);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero__cta {
  font-size: 1.1rem;
  padding: 0.9rem 2rem;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--gold);
  padding: 1.75rem 0;
}
.trust-bar__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1rem;
  text-align: center;
}
.trust-bar__item {
  flex: 0 1 180px;
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
}
.trust-bar__icon {
  width: 30px;
  height: 30px;
}

/* === ABOUT TEASER === */
.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-teaser__text h2 {
  margin-bottom: 1.25rem;
}
.about-teaser__text p {
  opacity: 0.85;
}
.about-teaser__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* === TESTIMONIALS === */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 1.75rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 16px rgba(4, 4, 44, 0.07);
}
.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial cite {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}

/* === RESPONSIVE — HOME === */
@media (max-width: 768px) {
  .hero {
    height: calc(100vh - var(--nav-height) - 170px);
    padding: 2rem 1.5rem;
  }
  .hero__bg {
    width: 70%;
  }
  .about-teaser__inner {
    grid-template-columns: 1fr;
  }

  .trust-bar__item {
    flex: 0 1 140px;
    font-size: 0.8rem;
  }
  .trust-bar__icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: calc(100vh - var(--nav-height) - 260px);
    padding: 1.5rem 1rem;
  }
  .hero__bg {
    width: 88%;
  }
  .nav_icon {
    height: 38px;
  }
  .trust-bar {
    padding: 1rem 0;
  }
  .trust-bar__item {
    flex: 0 1 130px;
    font-size: 0.75rem;
  }
  .trust-bar__icon {
    width: 22px;
    height: 22px;
  }
}

/* === STORY === */
.story__text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
p.alone {
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
  max-width: 720px;
  margin: 2.5rem auto;
  padding: 1.5rem 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  color: var(--navy);
}
.story__body {
  max-width: 720px;
  margin: 1.5rem auto 0;
  text-align: justify;
}
.story__body p + p {
  margin-top: 1rem;
}
@media (max-width: 600px) {
  .story__body {
    text-align: left;
  }
}
.story__split {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 960px;
  margin: 1.5rem auto 0;
}
.story__split .story__body {
  max-width: unset;
  margin: 0;
  flex: 1;
}
.story__split__img {
  width: 45%;
  max-width: 480px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
@media (max-width: 900px) {
  .story__split {
    flex-direction: column;
  }
  .story__split__img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
}
.story__text h2 {
  margin-bottom: 1.25rem;
}
.story__text p + p {
  margin-top: 1rem;
}

/* === TEAM === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
}
.team-card__body {
  padding: 1.5rem;
}
.team-card__body h3 {
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.team-card__body p {
  font-size: 0.9rem;
  opacity: 0.85;
}
.team-card__body p + p {
  margin-top: 0.6rem;
}
.team-card__role {
  font-size: 0.8rem !important;
  font-style: italic;
  color: var(--gold);
  opacity: 1 !important;
  margin-bottom: 0.6rem;
}
.team-card__qual-heading {
  margin-top: 0.75rem;
  margin-bottom: 0.4rem;
}
.team-card__quals {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}
.team-card__quals li {
  font-size: 0.875rem;
  opacity: 0.85;
  margin-bottom: 0.3rem;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card img {
    height: 300px !important;
  }
}

/* === RESPONSIVE — ABOUT === */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* === SERVICES === */
.services-intro {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  margin: 0 auto 3rem;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}
.service-card {
  display: flex;
  flex: 1 1 300px;
  max-width: 370px;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(4, 4, 44, 0.08);
  border-left: 4px solid var(--gold);
}
.service-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--gold);
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.service-card__body h3 {
  margin-bottom: 0.6rem;
}
.service-card__body p {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 600px) {
  .service-card {
    flex-direction: column;
  }
}

/* === PRICING === */
.pricing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.pricing-statement h2 {
  margin-bottom: 1.25rem;
}
.pricing-statement > p {
  margin-bottom: 1.5rem;
}
.pricing-factors {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing-factors li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.pricing-factors li svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta-box {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
}
.pricing-cta-box h2 {
  margin-bottom: 1rem;
}
.pricing-cta-box > p {
  opacity: 0.85;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.pricing-phone {
  font-size: 1.4rem;
  padding: 1rem 2.5rem;
  display: inline-flex;
  text-align: center;
}
.pricing-email-note {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.7;
}
.pricing-email-link {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
}
.pricing-email-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pricing-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* === CONTACT === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-primary h2 {
  margin-bottom: 1rem;
}
.contact-primary > p {
  margin-bottom: 2rem;
}
.contact-phone {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2.5rem;
  line-height: 1;
}
.contact-phone:hover {
  text-decoration: underline;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-detail div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-detail strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.contact-detail a,
.contact-detail span {
  font-size: 0.95rem;
  color: var(--navy);
}
.contact-detail a:hover {
  color: var(--gold);
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  min-height: 380px;
}
.contact-map iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  border-radius: 8px;
}
.map-placeholder {
  background: #f4f4f4;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #888;
  text-align: center;
  padding: 2rem;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-phone {
    font-size: 2.25rem;
  }
}

/* === FAQ === */
.faq-container {
  max-width: 780px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid rgba(4, 4, 44, 0.12);
}
.faq__item:first-child {
  border-top: 1px solid rgba(4, 4, 44, 0.12);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 1rem;
}
.faq__question:hover {
  color: var(--gold);
}
.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gold);
}
.faq__item.open .faq__chevron {
  transform: rotate(180deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq__item.open .faq__answer {
  max-height: 400px;
}
.faq__answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.75;
}
