/* ============================================================================
   Authentic.co — Static Landing Page
   ============================================================================ */

/* =Variables
============================================================================== */

:root {
  --blue: #1987b3;
  --blue-dark: #161718;
  --green: #05a071;
  --teal-dark: #45525c;
  --red: #ee4d73;
  --orange: #dfae99;
  --gray: #464646;
  --gray-light: #f2f2f2;
  --gray-dark: #373737;
  --white: #ffffff;
  --off-white: #f8f6f3;
  --grid-spacing: 5%;
  --screen-lg-desktop: 1400px;
  --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-family-title: "Spinnaker", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

/* =Reset
============================================================================== */

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

img {
  border-style: none;
  display: block;
  max-width: 100%;
  height: auto;
}

/* =Global
============================================================================== */

body {
  margin: 0;
  color: var(--gray-dark);
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.618;
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Structure */

.row {
  max-width: var(--screen-lg-desktop);
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

[class^="col-"] {
  width: 100%;
  min-height: 1px;
  margin-right: 5%;
  float: left;
  box-sizing: border-box;
}

[class^="col-"]:last-child {
  margin-right: 0;
}

@media (min-width: 768px) {
  .col-3 { width: 20.83%; }
  .col-4 { width: 29.16%; }
  .col-6 { width: 45.83%; }
}

.content-block {
  padding: 80px 0;
}

@media (max-width: 767px) {
  .content-block { padding: 60px 0; }
  [class^="col-"] + [class^="col-"] { margin-top: 25px; }
}

/* Typography */

h1, h2, h3, h4, h5, h6 {
  margin: 25px 0 15px 0;
  color: var(--gray-dark);
  font-family: var(--font-family-title);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h1:first-child, h2:first-child, h3:first-child,
h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 { font-size: 3.5rem; margin: 40px 0 25px 0; }
h2 { font-size: 2.3rem; margin: 40px 0 15px 0; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.7rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.1rem; }

@media (max-width: 767px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}

.flexible-h2 {
  font-size: 3.5vw;
}

@media (min-width: 1400px) { .flexible-h2 { font-size: 2.9rem; } }
@media (max-width: 767px)  { .flexible-h2 { font-size: 1.9rem; } }

.section-title {
  max-width: var(--screen-lg-desktop);
  margin: 0 auto 60px auto;
  padding: 0 5%;
  text-align: center;
}

.section-title .flexible-h2 + .lead {
  margin-top: -10px;
}

@media (max-width: 767px) {
  .section-title { padding: 0 5%; }
}

p, ul, ol, dl {
  margin: 0 0 20px 0;
}

.lead {
  font-size: 1.2rem;
}

a, a:visited {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.12s linear;
}

a:hover {
  color: #36b1e3;
}

strong {
  font-weight: 700;
}

small {
  font-size: 0.9rem;
  display: inline-block;
}

.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }

/* =Buttons
============================================================================== */

.btn {
  border: 0;
  font-family: var(--font-family-title);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 1px;
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s linear;
}

.btn:focus { outline: none; }

.btn-lg {
  padding: 11px 25px;
  font-size: 1rem;
}

.btn-md {
  padding: 8px 30px;
  font-size: 0.9rem;
}

.btn-solid-orange, .btn-solid-orange:visited {
  color: var(--blue-dark);
  background: var(--orange);
}

.btn-solid-orange:hover {
  color: var(--blue-dark);
  background: #d5957a;
  opacity: 1;
}

.btn-solid-blue, .btn-solid-blue:visited {
  color: var(--white);
  background: var(--blue-dark);
}

.btn-solid-blue:hover {
  color: var(--white);
  background: #2a2b2d;
}

/* =Header
============================================================================== */

#header {
  padding: 15px 5% 25px 5%;
  background: var(--blue-dark);
  position: relative;
  z-index: 3;
}

#home #header {
  background: var(--blue-dark) url(../img/site/home-header-bg.jpg) 100% 100% no-repeat;
  background-size: auto 90%;
}

#header::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 1309px) {
  #home #header::before {
    content: "";
    background: var(--blue-dark);
    opacity: 0.75;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
  }
}

@media (max-width: 767px) {
  #header { padding-bottom: 20px; }
  #home #header { background-position: 50% 100%; }
}

/* Intro */

#intro {
  padding: 10vh 0 9vh 0;
  color: var(--white);
  float: left;
  clear: both;
  position: relative;
  z-index: 1;
  max-width: 660px;
}

#intro h1, #intro h2, #intro h3 {
  color: var(--white);
}

#intro h1 {
  font-family: var(--font-family-title);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 24px 0;
}

#intro p {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
}

.offer-details {
  color: var(--orange);
  padding-top: 20px;
  display: block;
}

.offer-details em {
  font-style: normal;
  border-bottom: 2px solid #806154;
}

@media (max-width: 767px) {
  #intro { padding: 75px 0; }
}

/* Logo */

#header a.logo, #header a.logo:visited {
  color: var(--white);
  font-size: 1.5rem;
  float: left;
  position: relative;
  z-index: 2;
  transition: opacity 0.12s linear;
}

#header a.logo img {
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  height: 48px;
  width: auto;
}

#header a.logo:hover {
  text-decoration: none;
  opacity: 0.75;
}

@media (max-width: 1159px) {
  #header a.logo, #header a.logo:visited {
    width: 57px;
    height: 48px;
    overflow: hidden;
  }
  #header a.logo img {
    width: 186px;
    max-width: none;
    height: 48px;
  }
}

/* Navigation Primary */

#navigation-primary {
  margin: 12px 0 0 0;
  float: right;
  position: relative;
  z-index: 2 !important;
}

#navigation-primary > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}

#navigation-primary > ul > li {
  padding-left: 20px;
  float: left;
  position: relative;
}

#navigation-primary > ul > li.separating-space {
  padding-left: 25px;
}

#navigation-primary > ul > li > a,
#navigation-primary > ul > li > a:visited {
  padding: 8px 5px;
  color: var(--off-white);
  font-size: 0.9rem;
  font-weight: 400;
  font-family: var(--font-family-title);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  transition: opacity 0.1s linear;
}

#navigation-primary > ul > li > a:hover {
  opacity: 0.75;
}

#navigation-primary > ul > li > a.btn-solid-orange {
  color: var(--blue-dark);
  padding: 8px 20px;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid var(--off-white);
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  z-index: 3;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--off-white);
  border-radius: 1px;
  transition: all 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1159px) {
  .nav-toggle {
    display: flex;
    float: right;
  }

  #navigation-primary {
    margin: 4px 0 0 0;
    position: static;
  }

  #navigation-primary > ul {
    float: right;
  }

  #navigation-primary > ul > li {
    display: none;
  }

  #navigation-primary > ul.open > li {
    display: block;
    float: none;
    padding-left: 0;
    text-align: center;
    width: 100%;
  }

  #navigation-primary > ul.open {
    position: absolute;
    top: 75px;
    left: 5%;
    right: 5%;
    background: var(--white);
    border: 1px solid #dedede;
    border-radius: 1px;
    box-shadow: 0 8px 9px 0 rgba(0,0,0,0.05);
    z-index: 100;
    padding: 0;
  }

  #navigation-primary > ul.open > li > a,
  #navigation-primary > ul.open > li > a:visited {
    width: 100%;
    padding: 11px 20px;
    color: var(--gray-dark);
    text-align: left;
    font-size: 0.9rem;
    border-top: 1px solid var(--gray-light);
    display: block;
    box-sizing: border-box;
  }

  #navigation-primary > ul.open > li:first-child > a {
    border-top: 0;
  }

  #navigation-primary > ul.open > li > a:hover {
    color: var(--white);
    background: var(--teal-dark);
    opacity: 1;
  }
}

/* =Service Highlights
============================================================================== */

.service-highlights {
  width: 100%;
}

.service-highlights::after {
  content: "";
  display: table;
  clear: both;
}

.service-highlights svg {
  margin: 0 0 5px 0;
  vertical-align: text-bottom;
  opacity: 0.6;
}

.service-highlights strong {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}

.service-highlights p {
  padding-top: 5px;
  font-size: 0.95rem;
}

/* Feature Highlights (standalone section below hero) */

#feature-highlights {
  background: var(--off-white);
  padding: 50px 5% 30px 5%;
  border-bottom: 1px solid var(--gray-light);
}

.service-highlights-light {
  color: var(--gray-dark);
}

.service-highlights-light svg {
  opacity: 0.4;
}

@media (max-width: 767px) {
  #feature-highlights {
    padding: 40px 5% 30px 5%;
  }

  .service-highlights .col-4 {
    margin-top: 5px;
  }

  .service-highlights svg {
    margin: 2px 10px 0 0;
    float: left;
  }

  .service-highlights p {
    display: none;
  }
}

/* =Exclusive Content / Photo Mosaic
============================================================================== */

#exclusive-content {
  overflow: hidden;
  background: var(--white);
  padding-bottom: 0;
}

.mosaic-wrapper {
  position: relative;
  overflow: hidden;
}

.mosaic-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to bottom, var(--white) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.mosaic {
  display: flex;
  gap: 10px;
  justify-content: center;
  transform: rotate(-15deg);
  margin: -60px -35% -40px -35%;
}

.mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 260px;
}

.mosaic-col:nth-child(even) {
  transform: translateY(60px);
}

.mosaic-col img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  display: block;
}

@media (max-width: 767px) {
  .mosaic { gap: 8px; margin: -40px -50% -20px -50%; }
  .mosaic-col { flex: 0 0 180px; gap: 8px; }
  .mosaic-col:nth-child(even) { transform: translateY(40px); }
  .mosaic-col img { height: 170px; }
}

/* =Bento Grid Collections
============================================================================== */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px 240px 240px;
  gap: 30px;
}

.bento-grid figure:nth-child(1)  { grid-column: 1 / 3; grid-row: 1; }
.bento-grid figure:nth-child(2)  { grid-column: 3;     grid-row: 1; }
.bento-grid figure:nth-child(3)  { grid-column: 4;     grid-row: 1 / 3; }
.bento-grid figure:nth-child(4)  { grid-column: 1;     grid-row: 2 / 4; }
.bento-grid figure:nth-child(5)  { grid-column: 2 / 4; grid-row: 2; }
.bento-grid figure:nth-child(6)  { grid-column: 2;     grid-row: 3; }
.bento-grid figure:nth-child(7)  { grid-column: 3 / 5; grid-row: 3; }
.bento-grid figure:nth-child(8)  { grid-column: 1 / 3; grid-row: 4; }
.bento-grid figure:nth-child(9)  { grid-column: 3;     grid-row: 4; }
.bento-grid figure:nth-child(10) { grid-column: 4;     grid-row: 4; }

.bento-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.bento-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.bento-grid figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 14px 16px;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  font-size: 0.95rem;
  font-weight: 400;
  font-family: var(--font-family-title);
  letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px 220px 220px;
  }
  .bento-grid figure:nth-child(1)  { grid-column: 1 / 3; grid-row: 1; }
  .bento-grid figure:nth-child(2)  { grid-column: 3;     grid-row: 1; }
  .bento-grid figure:nth-child(3)  { grid-column: 1;     grid-row: 2; }
  .bento-grid figure:nth-child(4)  { grid-column: 2 / 4; grid-row: 2; }
  .bento-grid figure:nth-child(5)  { grid-column: 1 / 3; grid-row: 3; }
  .bento-grid figure:nth-child(6)  { grid-column: 3;     grid-row: 3; }
  .bento-grid figure:nth-child(7)  { grid-column: 1;     grid-row: 4; }
  .bento-grid figure:nth-child(8)  { grid-column: 2;     grid-row: 4; }
  .bento-grid figure:nth-child(9)  { grid-column: 3;     grid-row: 4; }
  .bento-grid figure:nth-child(10) { display: none; }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 180px);
  }
  .bento-grid figure:nth-child(1)  { grid-column: 1 / 3; grid-row: 1; }
  .bento-grid figure:nth-child(2)  { grid-column: 1;     grid-row: 2; }
  .bento-grid figure:nth-child(3)  { grid-column: 2;     grid-row: 2; }
  .bento-grid figure:nth-child(4)  { grid-column: 1;     grid-row: 3; }
  .bento-grid figure:nth-child(5)  { grid-column: 2;     grid-row: 3; }
  .bento-grid figure:nth-child(6)  { grid-column: 1 / 3; grid-row: 4; }
  .bento-grid figure:nth-child(7),
  .bento-grid figure:nth-child(8),
  .bento-grid figure:nth-child(9),
  .bento-grid figure:nth-child(10) { display: none; }
}

/* =Call to Action (Split Panes)
============================================================================== */

.call-to-action {
  margin-top: -40px;
  margin-bottom: 50px;
  color: var(--white);
  display: flex;
}

.call-to-action::after {
  content: "";
  display: table;
  clear: both;
}

.call-to-action h1, .call-to-action h2,
.call-to-action h3, .call-to-action h4,
.call-to-action h5, .call-to-action h6 {
  color: var(--white);
}

.call-to-action .left-pane {
  width: calc(50% + 20px);
  padding: 6vh 5%;
  margin-right: -40px;
  background: #222425;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.call-to-action .left-pane p {
  font-weight: 300;
  line-height: 1.7;
}

.call-to-action .right-pane {
  width: calc(50% + 20px);
  padding: 8vh 5% 8vh 10%;
  background: #3b3d40;
  box-sizing: border-box;
  position: relative;
  top: 40px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.call-to-action .right-pane::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 40px solid #060606;
  position: absolute;
  bottom: 0;
  left: 0;
}

.call-to-action .right-pane h3 {
  margin-bottom: 20px;
  line-height: 1.4;
}

.call-to-action .right-pane h3 em {
  font-family: var(--font-display);
  font-weight: 400;
}

.checkmark-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkmark-list li {
  padding: 5px 0 5px 28px;
  font-weight: 300;
  font-size: 0.95rem;
  position: relative;
}

.checkmark-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  background: var(--orange);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 3px;
}

@media (max-width: 767px) {
  .call-to-action {
    margin-bottom: 10px;
    text-align: center;
    display: block;
  }
  .call-to-action .left-pane,
  .call-to-action .right-pane {
    width: 100%;
    padding: 50px 5%;
    position: relative;
    top: 0;
    margin-right: 0;
  }
  .call-to-action .right-pane::before { display: none; }
  .checkmark-list li { text-align: left; }
}

/* =Footer
============================================================================== */

#footer {
  padding: 5vh 0;
  color: var(--gray);
  font-size: 0.9rem;
}

#footer-colophon {
  text-align: right;
}

#footer-colophon .logo {
  max-width: 100%;
  height: auto;
  margin-left: auto;
}

#footer-colophon ul {
  margin: 0;
  padding: 15px 0 0 0;
  list-style: none;
  font-size: 0.9rem;
}

#footer-colophon ul li small {
  padding-top: 15px;
  color: #939393;
  display: block;
}

#footer nav {
  padding-top: 1vh;
}

#footer nav strong {
  margin-bottom: 10px;
  display: block;
  font-weight: 700;
}

#footer nav strong a, #footer nav strong a:visited {
  color: var(--gray-dark);
}

#footer nav strong a:hover {
  color: var(--blue-dark);
}

#footer nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer nav ul li {
  padding-top: 4px;
  padding-bottom: 4px;
}

#footer nav ul li a, #footer nav ul li a:visited {
  color: var(--gray);
}

#footer nav ul li a:hover {
  color: var(--blue-dark);
}

@media (max-width: 767px) {
  #footer { font-size: 0.9rem; }
  #footer-colophon, #footer nav { width: 100%; text-align: center; }
  #footer-colophon .logo { margin: 0 auto; }
  #footer [class^="col-"] { margin-right: 0; }
}

/* =Legal Content Pages
============================================================================== */

.legal-content {
  padding: 60px 0 80px 0;
  background: var(--white);
}

.legal-content .row {
  max-width: 1000px;
}

.legal-content h1 {
  margin: 0 0 30px 0;
  font-size: 2.4rem;
}

.legal-content h2 {
  margin: 40px 0 15px 0;
  font-size: 1.4rem;
}

.legal-content p,
.legal-content ul {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray);
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content ul li {
  padding: 3px 0;
}

.legal-content a {
  word-break: break-word;
}

.legal-content hr {
  border: 0;
  border-top: 1px solid var(--gray-light);
  margin: 40px 0;
}

.text-muted {
  color: var(--gray);
}

@media (max-width: 767px) {
  .legal-content { padding: 40px 0 60px 0; }
  .legal-content h1 { font-size: 1.8rem; }
}

/* =Reduced Motion
============================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
