:root {
  --white: #FFFFFF;
  --blue: #063564;
  --gold: #DA9D23;

  --text: #1D2935;
  --muted: #66727D;
  --light: #F6F7F8;
  --border: #E5E8EB;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;

  --container: 1180px;
}


/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
}

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


/* =========================
   COMMON
========================= */

.container {
  width: min(
    var(--container),
    calc(100% - 48px)
  );

  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 18px;

  color: var(--gold);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 span,
h2 span {
  color: var(--gold);
}

h2 {
  color: var(--blue);
  font-size: clamp(40px, 5vw, 60px);
}

p {
  color: var(--muted);
}


/* =========================
   BUTTONS
========================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 0 28px;

  border: 1px solid transparent;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;

  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover {
  background: var(--gold);
}

.button-outline {
  border-color: var(--blue);
  color: var(--blue);
}

.button-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.button-gold {
  background: var(--gold);
  color: var(--white);
}

.button-gold:hover {
  background: var(--white);
  color: var(--blue);
}

.button-outline-light {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}

.button-outline-light:hover {
  background: var(--white);
  color: var(--blue);
}


/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: #FFFFFF;
  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(10px);
}

.nav-wrapper {
  min-height: 86px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.logo-image {
  width: 60px;
}

.logo-content {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
}

.logo-name {
  color: var(--blue);

  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-title {
  color: var(--gold);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav > a {
  color: var(--blue);

  font-size: 12px;
  font-weight: 600;
}

.desktop-nav > a:hover {
  color: var(--gold);
}

.desktop-nav .nav-button {
  padding: 12px 20px;

  background: var(--blue);
  color: var(--white);
}

.desktop-nav .nav-button:hover {
  background: var(--gold);
  color: var(--white);
}


/* =========================
   MOBILE NAV
========================= */

.mobile-menu-button {
  display: none;

  width: 40px;
  height: 40px;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.mobile-menu-button span {
  display: block;

  width: 24px;
  height: 2px;

  margin: 5px auto;

  background: var(--blue);
}

.mobile-nav {
  display: none;
}


/* =========================
   HERO
========================= */

.hero {
  padding: 95px 0 115px;
  overflow: hidden;
}

.hero-grid {
  display: grid;

  grid-template-columns: 1fr .82fr;

  align-items: center;

  gap: 80px;
}

.eyebrow {
  display: inline-block;

  margin-bottom: 22px;

  color: var(--gold);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero h1 {
  max-width: 700px;

  margin-bottom: 28px;

  color: var(--blue);

  font-size: clamp(48px, 6vw, 78px);
}

.hero-description {
  max-width: 620px;

  margin-bottom: 34px;

  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-top: 34px;

  color: var(--muted);

  font-size: 11px;
}

.gold-line {
  width: 38px;
  height: 1px;

  background: var(--gold);
}

.hero-visual {
  position: relative;

  padding: 20px 20px 20px 0;
}

.hero-frame {
  position: absolute;

  top: 0;
  right: 0;

  width: 88%;
  height: 92%;

  border: 2px solid var(--gold);
}

.hero-image-container {
  position: relative;
  z-index: 1;
}

.hero-image {
  height: 560px;

  object-fit: cover;
  object-position: center;
}

.experience-badge {
  position: absolute;

  right: -15px;
  bottom: 45px;

  z-index: 2;

  display: flex;
  align-items: center;

  gap: 12px;

  padding: 18px 22px;

  background: var(--blue);
  color: var(--white);
}

.experience-badge strong {
  color: var(--gold);

  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.experience-badge span {
  font-size: 10px;

  line-height: 1.4;

  text-transform: uppercase;
  letter-spacing: 1px;
}


/* =========================
   WHO I AM
========================= */

.who-section {
  background: var(--light);
}

.two-column {
  display: grid;

  grid-template-columns: .8fr 1fr;

  gap: 100px;
}

.section-content {
  padding-top: 8px;
}

.section-content p {
  margin-bottom: 22px;
}

.large-text {
  color: var(--blue);

  font-size: 19px;
  line-height: 1.8;
}


/* =========================
   SERVICES
========================= */

.services-section {
  background: var(--white);
}

.section-heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 55px;
}

.section-heading > p {
  max-width: 400px;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  min-height: 320px;

  padding: 34px;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;

  transform: translateY(-5px);

  box-shadow: 0 18px 40px rgba(6,53,100,.08);
}

.service-number {
  display: block;

  margin-bottom: 65px;

  color: var(--gold);

  font-family: var(--serif);
  font-size: 26px;
}

.service-card h3 {
  margin-bottom: 14px;

  color: var(--blue);

  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.service-card p {
  font-size: 14px;
}


/* =========================
   ABOUT
========================= */

.about-section {
  background: var(--light);
}

.about-grid {
  display: grid;

  grid-template-columns: .9fr 1fr;

  align-items: center;

  gap: 100px;
}

.about-image {
  position: relative;
}

.about-image img {
  height: 560px;

  object-fit: cover;
}

.image-caption {
  position: absolute;

  right: -20px;
  bottom: 30px;

  max-width: 280px;

  padding: 24px;

  background: var(--blue);
  color: var(--white);
}

.image-caption span {
  display: block;

  margin-bottom: 8px;

  color: var(--gold);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.image-caption strong {
  font-family: var(--serif);

  font-size: 20px;
  font-weight: 500;

  line-height: 1.4;
}

.about-content p {
  margin-bottom: 22px;

  font-size: 16px;
}

.about-content blockquote {
  margin-top: 35px;
  padding: 25px 0 25px 25px;

  border-left: 3px solid var(--gold);

  color: var(--blue);

  font-family: var(--serif);

  font-size: 25px;
  font-style: italic;
  line-height: 1.5;
}


/* =========================
   LET'S TALK
========================= */

.lets-talk {
  padding: 120px 0;

  background: var(--blue);

  text-align: center;
}

.lets-talk-content {
  max-width: 800px;
}

.lets-talk h2 {
  color: var(--white);
}

.lets-talk p {
  max-width: 600px;

  margin: 0 auto 35px;

  color: rgba(255,255,255,.75);

  font-size: 16px;
}

.contact-actions {
  display: flex;
  justify-content: center;

  gap: 14px;
}

.social-links {
  display: flex;
  justify-content: center;

  gap: 28px;

  margin-top: 45px;
}

.social-links a {
  color: rgba(255,255,255,.7);

  font-size: 12px;
  font-weight: 600;
}

.social-links a:hover {
  color: var(--gold);
}


/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 28px 0;

  background: #052C52;

  color: var(--white);
}

.footer-content {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.footer-name {
  display: block;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-title {
  display: block;

  color: var(--gold);

  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-copy {
  color: rgba(255,255,255,.5);

  font-size: 10px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

  .desktop-nav {
    gap: 16px;
  }

  .hero-grid {
    gap: 50px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column,
  .about-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .about-image {
    max-width: 650px;
  }

}


@media (max-width: 760px) {

  .container {
    width: min(
      var(--container),
      calc(100% - 32px)
    );
  }

  .section {
    padding: 75px 0;
  }


  /* Navigation */

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .mobile-nav {
    display: none;

    padding: 10px 16px 20px;

    border-top: 1px solid var(--border);

    background: var(--white);
  }

  .mobile-nav.active {
    display: flex;

    flex-direction: column;

    gap: 2px;
  }

  .mobile-nav a {
    padding: 13px 16px;

    color: var(--blue);

    font-size: 13px;
    font-weight: 600;
  }

  .mobile-nav a:hover {
    background: var(--light);
    color: var(--gold);
  }


  /* Hero */

  .hero {
    padding: 60px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-image {
    height: 440px;
  }

  .experience-badge {
    right: 0;
  }


  /* Headings */

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 25px;
  }


  /* Services */

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }


  /* About */

  .about-image img {
    height: 430px;
  }

  .image-caption {
    right: 0;
  }


  /* Contact */

  .contact-actions {
    flex-direction: column;

    max-width: 260px;

    margin: 0 auto;
  }

  .social-links {
    flex-wrap: wrap;
  }


  /* Footer */

  .footer-content {
    flex-direction: column;

    align-items: flex-start;
  }

}
