/* =========================================================
   BERTOLA VENTURES
   FULL SITE STYLES

   NAVY / GOLD LUXURY SYSTEM
   CONNECTED 45-DEGREE CHAMFERED FRAMES
   ========================================================= */


:root {

  --navy: #020c17;
  --navy-2: #05172a;
  --navy-3: #071c31;

  --gold: #d9a735;
  --gold-light: #efbf50;

  --white: #f5f3ee;
  --text: #d7dde4;
  --muted: #aeb7c2;

  --page-gap: 24px;

  --chamfer: 14px;

  --gold-line: 1px;

}


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

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


html {
  scroll-behavior: smooth;
}


body {

  background: var(--navy);

  color: var(--white);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  overflow-x: hidden;

}


a {

  color: inherit;

  text-decoration: none;

}


img {

  display: block;

  max-width: 100%;

}


/* =========================================================
   CONNECTED 45-DEGREE GOLD FRAME SYSTEM

   Gold polygon underneath.
   Navy polygon inset over top.

   This keeps every angled corner connected.
   ========================================================= */


.site-header,
.principle-card,
.about,
.vision,
.site-footer {

  position: relative;

  isolation: isolate;

  border: none !important;

  background: var(--gold);

  clip-path: polygon(

    var(--chamfer) 0,

    calc(100% - var(--chamfer)) 0,

    100% var(--chamfer),

    100% calc(100% - var(--chamfer)),

    calc(100% - var(--chamfer)) 100%,

    var(--chamfer) 100%,

    0 calc(100% - var(--chamfer)),

    0 var(--chamfer)

  );

}


.site-header::before,
.principle-card::before,
.about::before,
.vision::before,
.site-footer::before {

  content: "";

  position: absolute;

  z-index: -1;

  inset: var(--gold-line);

  background:
    var(--box-background, var(--navy-2));

  clip-path: polygon(

    calc(var(--chamfer) - 1px) 0,

    calc(100% - var(--chamfer) + 1px) 0,

    100% calc(var(--chamfer) - 1px),

    100% calc(100% - var(--chamfer) + 1px),

    calc(100% - var(--chamfer) + 1px) 100%,

    calc(var(--chamfer) - 1px) 100%,

    0 calc(100% - var(--chamfer) + 1px),

    0 calc(var(--chamfer) - 1px)

  );

}


.gold-frame {

  border: 0;

}


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


.site-header {

  --box-background:
    rgba(2, 12, 23, 0.98);

  width:
    calc(100% - (var(--page-gap) * 2));

  max-width: 1500px;

  min-height: 112px;

  margin:
    var(--page-gap)
    auto
    0;

  padding:
    14px
    55px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;

  z-index: 20;

}


.brand {

  display: flex;

  align-items: center;

  flex-shrink: 0;

}


.header-logo {

  width: 365px;

  height: 78px;

  object-fit: contain;

  object-position:
    left
    center;

}


.nav {

  display: flex;

  align-items: center;

  gap: 55px;

  font-size: 13px;

  letter-spacing: 0.05em;

  white-space: nowrap;

}


.nav a {

  position: relative;

  padding: 12px 0;

  transition:
    color 0.3s ease;

}


.nav a:hover,
.nav a.active {

  color: var(--gold-light);

}


.nav a.active::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: 3px;

  width: 40px;

  height: 2px;

  background: var(--gold);

}


.menu-toggle {

  display: none;

}


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


.hero {

  min-height: 460px;

  position: relative;

  margin-top: 0;

  background:

    linear-gradient(

      90deg,

      rgba(2, 12, 23, 0.98) 0%,

      rgba(3, 16, 30, 0.93) 28%,

      rgba(3, 17, 31, 0.68) 62%,

      rgba(2, 12, 23, 0.78) 100%

    ),

    linear-gradient(

      180deg,

      rgba(2, 12, 23, 0.15),

      rgba(2, 12, 23, 0.55)

    ),

    url("assets/palma-skyline.jpg");

  background-size: cover;

  background-position:
    center
    55%;

}


.hero-content {

  width:
    calc(100% - 140px);

  max-width: 1450px;

  min-height: 460px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    0.82fr
    1.18fr;

  align-items: center;

  gap: 45px;

}


.hero-copy {

  padding: 45px 0;

}


.hero h1 {

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(52px, 4.3vw, 74px);

  font-weight: 400;

  line-height: 0.98;

  margin-bottom: 20px;

}


.hero h1 span {

  color: var(--gold-light);

}


.hero-copy p {

  max-width: 520px;

  color: #e4e8ed;

  font-size: 16px;

  line-height: 1.65;

  margin-bottom: 20px;

}


.gold-rule {

  width: 78px;

  height: 2px;

  background: var(--gold);

  margin: 22px 0;

}


.hero-brand {

  min-height: 420px;

  display: flex;

  justify-content: center;

  align-items: center;

}


.hero-logo {

  width: 390px;

  max-height: 380px;

  object-fit: contain;

  filter:
    drop-shadow(
      0
      15px
      28px
      rgba(0, 0, 0, 0.45)
    );

}


/* =========================================================
   BUTTON SYSTEM

   1-second gold sweep from left to right.
   ========================================================= */


.btn {

  min-width: 200px;

  min-height: 48px;

  padding:
    13px
    24px;

  display: inline-flex;

  justify-content: space-between;

  align-items: center;

  gap: 24px;

  position: relative;

  overflow: hidden;

  isolation: isolate;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.14em;

  color: var(--white);

  transition:
    color 1s cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );

}


.btn-gold {

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

  background:
    rgba(2, 12, 23, 0.60);

}


/* Gold starts completely outside the button */

.btn-gold::before {

  content: "";

  position: absolute;

  z-index: -1;

  inset: 0;

  background: var(--gold);

  transform:
    translateX(-101%);

  transition:
    transform
    1s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );

}


/* Sweep across */

.btn-gold:hover::before {

  transform:
    translateX(0);

}


/* White -> dark text */

.btn-gold:hover {

  color: #02070c;

}


/* Text and arrow remain above animation */

.btn-text,
.btn-arrow {

  position: relative;

  z-index: 2;

}


.btn-arrow {

  font-size: 16px;

  transition:
    transform
    0.6s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );

}


.btn:hover .btn-arrow {

  transform:
    translateX(5px);

}


/* =========================================================
   PHILOSOPHY CARDS
   ========================================================= */


.principles {

  width:
    calc(100% - (var(--page-gap) * 2));

  max-width: 1400px;

  margin: 0 auto;

  padding:
    0
    30px
    24px;

  display: grid;

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

  gap: 26px;

}


.principle-card {

  --box-background:

    linear-gradient(

      180deg,

      #071c31,

      #03101e

    );

  min-height: 245px;

  padding:
    30px
    24px;

  text-align: center;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

}


.principle-icon {

  color: var(--gold-light);

  font-size: 43px;

  line-height: 1;

  margin-bottom: 17px;

}


.principle-icon.infinity {

  font-size: 50px;

}


.principle-card h3 {

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-weight: 400;

  font-size: 17px;

  line-height: 1.08;

  margin-bottom: 10px;

}


.small-gold-rule {

  width: 48px;

  height: 1px;

  background: var(--gold);

  margin:
    0
    auto
    12px;

}


.principle-card p {

  color: #d3d9df;

  font-size: 13px;

  line-height: 1.6;

}


/* =========================================================
   ABOUT BERTOLA VENTURES
   ========================================================= */


.about {

  --box-background:

    linear-gradient(

      115deg,

      #061a2e 0%,

      #05172a 45%,

      #03111f 100%

    );

  width:
    calc(100% - (var(--page-gap) * 2));

  max-width: 1400px;

  margin:
    0
    auto
    20px;

  padding:
    54px
    64px;

  display: grid;

  grid-template-columns:
    0.90fr
    1.10fr;

  align-items: stretch;

  gap: 78px;

}


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


.about-heading {

  display: flex;

  flex-direction: column;

  justify-content: center;

  position: relative;

  padding-right: 35px;

}


.about-heading::after {

  content: "";

  position: absolute;

  top: 6%;

  right: -39px;

  width: 1px;

  height: 88%;

  background:

    linear-gradient(

      180deg,

      transparent,

      rgba(217, 167, 53, 0.70) 15%,

      rgba(217, 167, 53, 0.70) 85%,

      transparent

    );

}


.about-kicker-row {

  display: flex;

  align-items: center;

  gap: 13px;

  margin-bottom: 17px;

}


.about-kicker-line {

  width: 34px;

  height: 2px;

  flex-shrink: 0;

  background:
    var(--gold-light);

}


.section-kicker {

  color:
    var(--gold-light);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.12em;

  margin-bottom: 18px;

}


.about-kicker {

  margin: 0;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.14em;

}


.about h2 {

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(38px, 3.25vw, 52px);

  font-weight: 400;

  line-height: 1.04;

  letter-spacing: -0.02em;

}


.about h2 span {

  color: var(--gold-light);

}


.about-statement {

  margin-top: 26px;

  padding-top: 18px;

  border-top:
    1px
    solid
    rgba(217, 167, 53, 0.45);

  display: flex;

  flex-wrap: wrap;

  gap:
    7px
    20px;

}


.about-statement p {

  color: #c5cdd6;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;

}


/* Gold dots between statements */

.about-statement p:not(:last-child)::after {

  content: "◆";

  color: var(--gold);

  font-size: 6px;

  margin-left: 20px;

  vertical-align: middle;

}


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


.about-copy {

  color: var(--text);

  display: flex;

  flex-direction: column;

  justify-content: center;

}


.about-lead {

  max-width: 650px;

  color: #f0f2f4;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 19px;

  line-height: 1.55;

  margin-bottom: 24px;

}


.about-pillars {

  width: 100%;

  border-top:
    1px
    solid
    rgba(255, 255, 255, 0.10);

}


.about-pillar {

  display: grid;

  grid-template-columns:
    48px
    1fr;

  gap: 18px;

  padding:
    16px
    0;

  border-bottom:
    1px
    solid
    rgba(255, 255, 255, 0.10);

}


.pillar-number {

  color: var(--gold-light);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 22px;

  line-height: 1;

  padding-top: 2px;

}


.pillar-copy h3 {

  color: var(--white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 14px;

  font-weight: 400;

  letter-spacing: 0.10em;

  margin-bottom: 5px;

}


.pillar-copy p {

  max-width: 600px;

  color: #bac4ce;

  font-size: 13px;

  line-height: 1.55;

}


/* =========================================================
   VISION
   ========================================================= */


.vision {

  --box-background:

    linear-gradient(

      90deg,

      #06192b,

      #03101e

    );

  width:
    calc(100% - (var(--page-gap) * 2));

  max-width: 1400px;

  margin:
    0
    auto
    20px;

  min-height: 130px;

  padding:
    18px
    48px;

  display: grid;

  grid-template-columns:
    220px
    1fr
    250px;

  align-items: center;

  gap: 35px;

}


.compass {

  height: 95px;

  display: flex;

  align-items: center;

  justify-content: center;

}


.compass-ring {

  width: 90px;

  height: 90px;

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

  border-radius: 50%;

  display: grid;

  place-items: center;

  color:
    var(--gold-light);

  font-size: 44px;

}


.vision-copy .section-kicker {

  margin-bottom: 6px;

}


.vision h2 {

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 28px;

  font-weight: 400;

  line-height: 1.05;

  margin-bottom: 6px;

}


.vision-copy > p:last-child {

  color: var(--text);

  font-size: 14px;

}


.vision-button {

  justify-self: end;

}


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


.site-footer {

  --box-background:
    #020c17;

  width:
    calc(100% - (var(--page-gap) * 2));

  max-width: 1500px;

  min-height: 76px;

  margin:
    0
    auto
    var(--page-gap);

  padding:
    8px
    55px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;

}


.footer-logo {

  width: 285px;

  height: 55px;

  object-fit: contain;

  object-position:
    left
    center;

}


.site-footer p {

  color: #aeb6c0;

  font-size: 10px;

  letter-spacing: 0.14em;

  text-align: right;

}




/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
  width: 100%;
}

.contact-hero {
  position: relative;
  width: 100%;
  min-height: 410px;
  background:
    linear-gradient(90deg, rgba(2,12,23,.98) 0%, rgba(3,16,30,.92) 34%, rgba(3,17,31,.70) 64%, rgba(2,12,23,.86) 100%),
    linear-gradient(180deg, rgba(2,12,23,.18), rgba(2,12,23,.70)),
    url("assets/palma-skyline.jpg");
  background-size: cover;
  background-position: center 52%;
}

.contact-hero-inner {
  width: calc(100% - 140px);
  max-width: 1400px;
  min-height: 410px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .90fr 1.10fr;
  align-items: center;
  gap: 60px;
}

.contact-hero-copy {
  padding: 48px 0;
}

.contact-eyebrow {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 15px;
}

.contact-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 4vw, 66px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.contact-hero h1 span {
  color: var(--gold-light);
}

.contact-hero-copy > p:last-child {
  max-width: 570px;
  color: #e0e5ea;
  font-size: 16px;
  line-height: 1.7;
}

.contact-hero-mark {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* No circle around the hero logo */
.contact-hero-mark::before {
  display: none;
}

.contact-hero-mark img {
  position: relative;
  z-index: 2;
  width: 330px;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.50));
}

.contact-layout {
  width: calc(100% - (var(--page-gap) * 2));
  max-width: 1400px;
  margin: 24px auto;
  display: grid;
  grid-template-columns: minmax(0, 1.40fr) minmax(355px, .60fr);
  gap: 24px;
  align-items: stretch;
}

.contact-form-frame,
.contact-info-frame {
  position: relative;
  isolation: isolate;
  border: none;
  background: var(--gold);
  clip-path: polygon(
    var(--chamfer) 0,
    calc(100% - var(--chamfer)) 0,
    100% var(--chamfer),
    100% calc(100% - var(--chamfer)),
    calc(100% - var(--chamfer)) 100%,
    var(--chamfer) 100%,
    0 calc(100% - var(--chamfer)),
    0 var(--chamfer)
  );
  min-height: 660px;
}

.contact-form-frame::before,
.contact-info-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: var(--gold-line);
  background: linear-gradient(135deg, #071c31 0%, #05172a 48%, #03101e 100%);
  clip-path: polygon(
    calc(var(--chamfer) - 1px) 0,
    calc(100% - var(--chamfer) + 1px) 0,
    100% calc(var(--chamfer) - 1px),
    100% calc(100% - var(--chamfer) + 1px),
    calc(100% - var(--chamfer) + 1px) 100%,
    calc(var(--chamfer) - 1px) 100%,
    0 calc(100% - var(--chamfer) + 1px),
    0 calc(var(--chamfer) - 1px)
  );
}

.contact-form-inner {
  padding: 48px 54px 50px;
}

.contact-form-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.contact-form-heading .section-kicker {
  margin-bottom: 12px;
}

.contact-form-heading h2,
.contact-info-inner > h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.02;
}

.contact-form-heading h2 {
  font-size: clamp(34px, 3vw, 48px);
  margin-bottom: 16px;
}

.contact-form-heading > p:last-child {
  max-width: 680px;
  color: #c5cdd6;
  font-size: 14px;
  line-height: 1.65;
}

.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px 26px;
}

.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--white);
  font: 14px Arial, Helvetica, sans-serif;
  background: rgba(1,9,17,.68);
  border: 1px solid rgba(217,167,53,.40);
  border-radius: 0;
  outline: none;
  transition: border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.form-field input,
.form-field select {
  height: 50px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 145px;
  padding: 16px;
  resize: vertical;
  line-height: 1.6;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(239,191,80,.72);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-light);
  background: rgba(2,15,28,.92);
  box-shadow: 0 0 0 1px rgba(217,167,53,.16), 0 0 22px rgba(217,167,53,.07);
}

.form-field select {
  cursor: pointer;
}

.form-field select option {
  color: var(--white);
  background: var(--navy-2);
}

.contact-submit {
  width: 230px;
  margin-top: 26px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-info-inner {
  height: 100%;
  min-width: 0;
  padding: 50px 38px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-info-inner > .section-kicker {
  margin-bottom: 12px;
}

.contact-info-inner > h2 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(30px, 2.15vw, 38px);
  line-height: 1.03;
  letter-spacing: -.025em;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-info-rule {
  width: 72px;
  height: 2px;
  margin: 23px 0 12px;
  background: var(--gold);
}

.contact-value {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.contact-value > span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.contact-value h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.contact-value p {
  margin: 0;
  color: #c5cdd6;
  font-size: 13px;
  line-height: 1.6;
  max-width: 100%;
}

.contact-signoff {
  margin-top: auto;
  padding: 24px 0 4px;
  border-top: 1px solid rgba(217,167,53,.22);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-signoff img {
  width: 285px;
  max-width: 94%;
  opacity: .98;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.28));
}

.contact-info-inner::after {
  content: "";
  width: 68px;
  height: 2px;
  background: var(--gold);
  opacity: .65;
  margin: 17px auto 0;
}

@media (max-width: 1180px) {
  .contact-hero-inner {
    width: calc(100% - 80px);
    grid-template-columns: 1fr .8fr;
    gap: 35px;
  }

  .contact-hero-mark img {
    width: 280px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.20fr) minmax(325px, .80fr);
  }

  .contact-form-inner {
    padding: 44px 40px 48px;
  }

  .contact-info-inner {
    padding: 44px 32px 36px;
  }

  .contact-info-inner > h2 {
    font-size: clamp(29px, 3vw, 36px);
  }
}

@media (max-width: 900px) {
  .contact-hero {
    min-height: auto;
    background-position: 62% center;
  }

  .contact-hero-inner {
    width: calc(100% - 50px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-hero-copy {
    padding: 55px 0 25px;
  }

  .contact-hero-copy > p:last-child {
    max-width: 650px;
  }

  .contact-hero-mark {
    min-height: 280px;
    justify-content: flex-start;
  }

  .contact-hero-mark img {
    width: 250px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-frame,
  .contact-info-frame {
    min-height: auto;
  }

  .contact-info-inner {
    min-height: 520px;
  }

  .contact-info-inner > h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    background-position: 68% center;
  }

  .contact-hero-inner {
    width: calc(100% - 36px);
  }

  .contact-hero-copy {
    padding-top: 45px;
  }

  .contact-hero h1 {
    font-size: 44px;
  }

  .contact-hero-copy > p:last-child {
    font-size: 14px;
  }

  .contact-hero-mark {
    min-height: 230px;
  }

  .contact-hero-mark img {
    width: 205px;
  }

  .contact-layout {
    gap: 14px;
    margin: 14px auto;
  }

  .contact-form-inner {
    padding: 38px 25px 42px;
  }

  .contact-form-heading h2 {
    font-size: 35px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-info-inner {
    min-height: auto;
    padding: 38px 25px;
  }

  .contact-info-inner > h2 {
    font-size: 32px;
  }

  .contact-value {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .contact-signoff {
    padding-top: 32px;
  }

  .contact-signoff img {
    width: 210px;
  }
}


/* =========================================================
   RESPONSIVE — MEDIUM DESKTOP / LAPTOP
   ========================================================= */


@media (max-width: 1180px) {

  :root {

    --page-gap: 18px;

  }


  .nav {

    gap: 25px;

  }


  .header-logo {

    width: 285px;

  }


  .principles {

    padding-left: 10px;

    padding-right: 10px;

  }


  .about {

    gap: 55px;

    padding-left: 48px;

    padding-right: 48px;

  }


  .about-heading {

    padding-right: 20px;

  }


  .about-heading::after {

    right: -28px;

  }

}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */


@media (max-width: 900px) {

  :root {

    --page-gap: 14px;

    --chamfer: 12px;

  }


  .site-header {

    padding:
      12px
      22px;

  }


  .menu-toggle {

    display: block;

    color:
      var(--gold-light);

    background:
      transparent;

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

    font-size: 22px;

    padding:
      7px
      10px;

    cursor: pointer;

  }


  .nav {

    display: none;

    position: absolute;

    top: 100%;

    left: 0;

    right: 0;

    padding: 25px;

    flex-direction: column;

    align-items: flex-start;

    background:
      var(--navy);

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

  }


  .nav.open {

    display: flex;

  }


  .hero-content {

    width:
      calc(100% - 50px);

    grid-template-columns:
      1fr;

  }


  .hero-brand {

    min-height: 300px;

  }


  .hero-logo {

    width: 300px;

  }


  .principles {

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

    padding:
      0
      0
      20px;

  }


  .about {

    grid-template-columns:
      1fr;

    gap: 35px;

    padding:
      48px
      40px;

  }


  .about-heading {

    padding-right: 0;

  }


  .about-heading::after {

    display: none;

  }


  .about-statement {

    max-width: 600px;

  }


  .about-lead {

    font-size: 18px;

  }


  .vision {

    grid-template-columns:
      1fr;

    text-align: center;

    padding: 35px;

  }


  .vision-button {

    justify-self: center;

  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */


@media (max-width: 600px) {

  :root {

    --page-gap: 10px;

    --chamfer: 10px;

  }


  .header-logo {

    width: 225px;

  }


  .hero {

    background-position:
      68%
      center;

  }


  .hero-content {

    width:
      calc(100% - 36px);

  }


  .hero h1 {

    font-size: 48px;

  }


  .principles {

    grid-template-columns:
      1fr;

    gap: 16px;

  }


  .about {

    padding:
      40px
      28px;

  }


  .about-kicker {

    font-size: 12px;

  }


  .about-kicker-line {

    width: 24px;

  }


  .about h2 {

    font-size: 37px;

  }


  .about-statement {

    display: block;

  }


  .about-statement p {

    margin-bottom: 7px;

  }


  .about-statement p::after {

    display: none;

  }


  .about-lead {

    font-size: 17px;

  }


  .about-pillar {

    grid-template-columns:
      40px
      1fr;

    gap: 12px;

  }


  .site-footer {

    padding: 20px;

    flex-direction: column;

    text-align: center;

  }


  .footer-logo {

    width: 220px;

  }


  .site-footer p {

    text-align: center;

  }

}

/* =========================================================
   CUSTOM REASON-FOR-CONTACT DROPDOWN
   Surgical enhancement only — no other site styles changed.
   ========================================================= */

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select-trigger {
  width: 100%;
  height: 52px;
  padding: 0 48px 0 16px;

  display: flex;
  align-items: center;

  position: relative;

  border:
    1px
    solid
    rgba(217, 167, 53, .65);

  background:
    rgba(1, 9, 17, .78);

  color:
    var(--white);

  font:
    14px
    Arial,
    Helvetica,
    sans-serif;

  text-align: left;

  cursor: pointer;

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

.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger {
  border-color:
    var(--gold-light);

  background:
    rgba(2, 15, 28, .96);
}

.custom-select-arrow {
  position: absolute;

  right: 17px;
  top: 50%;

  width: 10px;
  height: 10px;

  border-right:
    2px
    solid
    var(--gold-light);

  border-bottom:
    2px
    solid
    var(--gold-light);

  transform:
    translateY(-68%)
    rotate(45deg);

  pointer-events: none;

  transition:
    transform .3s ease;
}

.custom-select.open .custom-select-arrow {
  transform:
    translateY(-28%)
    rotate(225deg);
}

.custom-select-menu {
  position: absolute;

  z-index: 50;

  top:
    calc(100% + 3px);

  left: 0;
  right: 0;

  padding: 6px;

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

  background:
    linear-gradient(
      180deg,
      #061a2e 0%,
      #03101e 100%
    );

  box-shadow:
    0
    18px
    34px
    rgba(0, 0, 0, .42);

  opacity: 0;
  visibility: hidden;

  transform:
    translateY(-5px);

  transition:
    opacity .2s ease,
    visibility .2s ease,
    transform .25s ease;
}

.custom-select.open .custom-select-menu {
  opacity: 1;
  visibility: visible;

  transform:
    translateY(0);
}

.custom-select-option {
  width: 100%;

  min-height: 40px;

  padding:
    10px
    14px;

  display: flex;
  align-items: center;

  border: 0;

  background:
    transparent;

  color:
    var(--white);

  font:
    14px
    Arial,
    Helvetica,
    sans-serif;

  text-align: left;

  cursor: pointer;

  transition:
    background-color .2s ease,
    color .2s ease,
    padding-left .2s ease;
}

.custom-select-option + .custom-select-option {
  border-top:
    1px
    solid
    rgba(255, 255, 255, .07);
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option.is-active {
  background:
    var(--gold-light);

  color:
    #02070c;

  padding-left:
    19px;
}

.custom-select-option.is-selected {
  color:
    var(--gold-light);
}

.custom-select-option.is-selected:hover,
.custom-select-option.is-selected:focus-visible,
.custom-select-option.is-selected.is-active {
  color:
    #02070c;
}