/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #1a24ad;
  --blue-dark: #1a24ad;
  --blue-light: #2d38c4;
  --orange: #f89010;
  --yellow: #eef0a8;
  --yellow-dark: #d8da90;
  --yellow-muted: #e0e7a3;
  --olive: #555d32;
  --forest: #2e432a;
  --olive-dark: #4b5332;
  --ice: #e1ecf7;
  --footer-bg: #e1eeff;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --nav-height: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--olive);
  color: var(--yellow);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn--outline {
  color: var(--blue-dark);
  border-color: var(--blue-dark);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(26, 36, 173, 0.1);
}

.btn--primary {
  color: var(--blue-dark);
  background: var(--yellow);
  border-color: var(--yellow);
  font-size: 1rem;
  padding: 1rem 2.5rem;
  margin-top: 0.5rem;
}

.btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn--outline-light {
  color: var(--blue-dark);
  border-color: var(--blue-dark);
  background: transparent;
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

.btn--outline-light:hover {
  background: rgba(26, 36, 173, 0.1);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero__actions .btn--primary {
  margin-top: 0;
}

/* ── Header / Nav ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links--left {
  justify-self: start;
}

.nav__links a {
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
  transition: opacity 0.2s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue-dark);
  transition: width 0.25s ease;
}

.nav__links a:hover {
  opacity: 0.85;
}

.nav__links a:hover::after {
  width: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  flex-shrink: 0;
}

.nav__logo-img {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.nav__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  padding: calc(var(--nav-height) + 2rem) clamp(1.5rem, 4vw, 3rem) 3rem;
  gap: 2rem;
  background-color: var(--orange);
}

.hero > * {
  max-width: 680px;
}

.hero__content {
  justify-self: end;
  margin-right: clamp(0rem, 4vw, 3rem);
}

.hero__visual {
  justify-self: start;
  margin-left: clamp(0rem, 4vw, 3rem);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 625px;
  padding-left: 1rem;
  animation: fadeUp 0.9s ease both;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--blue-dark);
  letter-spacing: -0.02em;
}

.hero__description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  color: var(--blue-dark);
  font-weight: 400;
  max-width: 480px;
  opacity: 0.9;
}

.hero .btn--primary {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.hero .btn--primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  box-shadow: 0 8px 24px rgba(26, 36, 173, 0.25);
}

/* ── Hero Visual ── */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s ease 0.2s both;
}

.hero__image {
  width: 100%;
  max-width: 624px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── Intro Section ── */
.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--olive);
  padding: clamp(5rem, 12vw, 8rem) 2rem;
  text-align: center;
}

.intro__inner {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.intro__heading {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--yellow-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
}

.intro__body {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--yellow-muted);
  max-width: 720px;
}

/* ── Meet Section ── */
.meet {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  width: 100%;
}

.meet__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--ice);
  padding: clamp(5rem, 10vh, 7rem) clamp(2rem, 5vw, 4rem) clamp(3rem, 6vh, 5rem);
  min-height: 100vh;
}

.meet__top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.meet__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.75;
}

.meet__label {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.meet__reveal {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--forest);
  max-width: 520px;
  opacity: 0;
  transform: translateY(60px);
  will-change: transform, opacity;
}

.meet__visual {
  flex: 1;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.meet__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── Footer ── */
.footer {
  background-color: var(--blue-dark);
  padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(3rem, 8vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
}

.footer__content {
  flex: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.footer__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer__text p {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.65;
  color: var(--white);
  opacity: 0.95;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact p {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.6;
  color: var(--white);
  opacity: 0.95;
}

.footer__contact a {
  color: var(--white);
  transition: opacity 0.2s ease;
}

.footer__contact a:hover {
  opacity: 0.8;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  color: var(--white);
  margin-top: 0.25rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer__social:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.footer__social-icon {
  width: 28px;
  height: 28px;
}

.footer__form-wrap {
  flex: 1;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__form-heading {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--white);
  margin-top: 0.25rem;
}

.footer__label:first-of-type {
  margin-top: 0;
}

.footer__input {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--white);
  background: transparent;
  border: 1.5px solid var(--white);
  border-radius: 50px;
  padding: 0.8rem 1.25rem;
  outline: none;
  width: 100%;
  transition: box-shadow 0.2s ease;
}

.footer__input::placeholder {
  color: var(--white);
  opacity: 1;
}

.footer__input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.footer__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.footer__select option {
  color: var(--blue-dark);
  background: var(--white);
}

.footer__textarea {
  border-radius: 1.25rem;
  resize: vertical;
  min-height: 100px;
}

.footer__submit {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  background-color: transparent;
  border: 1.5px solid var(--white);
  border-radius: 50px;
  padding: 0.85rem 2.25rem;
  margin-top: 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer__submit:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.footer__submit:active {
  transform: scale(0.97);
}

/* ── Mobile Nav Overlay ── */
.nav__mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(26, 36, 173, 0.97);
  z-index: 90;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav__mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile-menu a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 400;
}

.nav__mobile-menu .btn--outline {
  color: var(--white);
  border-color: var(--white);
}

.nav__mobile-menu .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav__links--left {
    display: none;
  }

  .nav__logo {
    justify-self: center;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__right .btn--outline {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: calc(var(--nav-height) + 1rem) 1.5rem 3rem;
    gap: 3rem;
  }

  .hero > * {
    max-width: 100%;
    justify-self: center;
    margin: 0;
  }

  .hero__content {
    align-items: center;
    padding-left: 0;
    max-width: 100%;
  }

  .hero__description {
    max-width: 100%;
  }

  .hero__image {
    max-width: 416px;
  }

  .intro {
    padding: 4rem 1.5rem;
  }

  .intro__inner {
    gap: 2rem;
  }

  .meet {
    flex-direction: column;
  }

  .meet__content {
    min-height: auto;
    gap: 4rem;
    padding: 4rem 1.5rem;
  }

  .meet__reveal {
    max-width: 100%;
  }

  .meet__visual {
    min-height: 60vh;
  }

  .footer__inner {
    flex-direction: column;
    gap: 3rem;
  }

  .footer__content,
  .footer__form-wrap {
    max-width: 100%;
  }

  .footer__submit {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.75rem;
  }

  .btn--primary {
    width: 100%;
    max-width: 280px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero__actions .btn--outline-light {
    width: 100%;
    max-width: 280px;
  }
}
