:root {

--font-size-xl: clamp(3.75rem, 2.6028rem + 5.7361vw, 7.5000rem); /* 60px @ 320px > 120px @ 1366px */
--font-size-lg: clamp(1.5rem, 1.3853rem + 0.5736vw, 1.8750rem); /* 24px @ 320px > 30px @ 1366px */
--font-size-md: clamp(1.2rem, 1.1082rem + 0.4589vw, 1.5000rem); /* 19.2px @ 320px > 24px @ 1366px */
--font-size-sm: clamp(0.8rem, 0.7388rem + 0.3059vw, 1.0000rem); /* 12.8px @ 320px > 16px @ 1366px */

--padding-xl: clamp(5rem, 4.1667rem + 4.1667vw, 7.5000rem); /* 80px @ 320px > 120px @ 1280px */
--padding-lg: clamp(2.5rem, 2.0833rem + 2.0833vw, 3.7500rem); /* 40px @ 320px > 60px @ 1280px */
--padding-md: clamp(1.25rem, 1.0417rem + 1.0417vw, 1.8750rem); /* 20px @ 320px > 30px @ 1280px */
--padding-sm: clamp(1rem, 0.9167rem + 0.4167vw, 1.2500rem); /* 16px @ 320px > 20px @ 1280px */

--color-blue: #00314B;
--color-grey-dark: #6E6E6E;
--color-grey-mid: #A1A1A1;
--color-grey-light: #F6F6F6;

--body-text: "Lato", "Helvetica Neue", Arial, sans-serif;
--title-font: "Cormorant Garamond", serif;

--line-height-md: 1.75;
--line-height-sm: 1.5;

}

.cormorant-garamond-regular {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
}

.cormorant-garamond-semibold {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: normal;
}

.cormorant-garamond-bold {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: normal;
}

.cormorant-garamond-regular-italic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
}

.cormorant-garamond-semibold-italic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: italic;
}

.cormorant-garamond-bold-italic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: italic;
}

/* RESET */

* {
  box-sizing: border-box;
}

html {
	border: none;
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	
	font-family: var(--body-text);
	font-size: var(--font-size-sm);
	font-style: normal;
  font-weight: 400;
	color: var(--color-grey-dark);

	background-color: white;
}

[id] {
  scroll-margin-top: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	
	letter-spacing: normal;
	font-weight: normal;
}

p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
	border: none;
	font-size: inherit;
	font-weight: normal;
	line-height: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
}

strong {
	font-weight: normal;
}

blockquote::before,
blockquote::after {
	content: "";
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

*,
*::before,
*::after {
	-webkit-font-smoothing: antialiased;
	word-break: break-word;
	word-wrap: break-word;
}

ul, ol {
  list-style-type: none;
}

@media ( prefers-reduced-motion: reduce ) {

	* {
		animation-duration: 0s !important;
		transition-duration: 0s !important;
  }
  
}

/* GLOBAL STYLES */

.site {
  display: grid;
  justify-items: center;
  gap: var(--padding-lg);
}

.btn {
  display: block;
  height: 3.125rem;

  font-size: var(--font-size-sm);
  line-height: 3.125rem;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.15rem;
}

.btn--fill-blue {
  padding: 0 1rem;

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

  color: white;
}

.btn--fill-blue:hover {
  background-color: var(--color-grey-dark);
}

.cta .btn {
  width: min(17.5rem, 100%);
}

.btn--stroke-white {
  border: 1px solid white;

  color: white;
}

.btn--stroke-white:hover {
  background-color: white;

  color: var(--color-grey-dark);
}

/* HERO */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}

.hero-img {
  /* position: relative; */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}


.hero-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {

  .hero {
    aspect-ratio: 16/9;
  }

}

@media screen and (min-width: 1280px) {
  
  .hero {
    height: 100vh;
    aspect-ratio: auto;
  }

  .hero-img img {
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
  }

}

.hero-img:after {
  content: "";

  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;

  width: 100%;
  height: 100%;

  background: linear-gradient(135deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.5;
}

.hero-img:before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;

  width: 100%;
  height: 50%;

  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.5;
}

@media screen and (min-width: 1280px) {
  .hero-img:after,
  .hero-img:before {
    opacity: 0.5;
  }
}

.hero-content {
  /* position: absolute;
  top: 0;
  left: 0;
  z-index: 4; */

  position: relative;
  z-index: 4;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.hero-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--padding-md);

  padding: var(--padding-md);
}

.hero-header__logo svg {
  width: 12rem;
  height: auto;

  fill: white;
}

.hero-header__btns {
  display: flex;
  gap: var(--padding-sm);
  width: 100%;
}

.hero-header__btns li {
  width: calc(50% - calc(var(--padding-sm)/2));
}

.hero-header__btns .btn {
  width: 100%;
}

@media screen and (min-width: 640px) {

  .hero-header__btns {
    width: auto;
  }
  
  .hero-header__btns li {
    width: 12.5rem;
  }

}

.hero-content__text {
  display: grid;
  gap: var(--padding-sm);
  padding: 0 var(--padding-md) var(--padding-lg);
}

@media screen and (min-width: 1280px) {
  
  .hero-content__text {
    padding: var(--padding-xl);
  }

}

.hero-content__title {
  font-family: var(--title-font);
  font-size: var(--font-size-xl);
  font-style: italic;
  color: white;
}

.hero-content__title em {
  font-style: normal;
  font-weight: 700;
}

.hero-content__usps {
  display: flex;
  gap: 0.25rem;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  color: white;
}

.hero-content__usps li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-content__usps li:not(:first-child):before {
  content: "";

  display: block;
  width: 4px;
  height: 4px;

  border-radius: 100%;
  background-color: white;
}

@media screen and (min-width: 768px) {
  
  .hero-content__usps {
    gap: 0.5rem;
    font-size: var(--font-size-md);
  }

  .hero-content__usps li {
    gap: 0.5rem;
  }

  .hero-content__usps li:not(:first-child):before {  
    width: 8px;
    height: 8px;
  }

}

.down {
  display: none;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 2rem;
  height: 2rem;
}

@media screen and (min-width: 1280px) {
  
  .down {
    display: block;
  }

}

.down svg {
  width: 100%;
  fill: white;
}

/* INTRO */

.intro {
  display: grid;
  gap: var(--padding-lg);
  width: min(50rem, 100%);
  padding: 0 var(--padding-md);
}

@media screen and (min-width: 768px) {
  
  .intro {
    padding: var(--padding-lg) var(--padding-md);
  }

}

.intro-text {
  display: grid;
  justify-items: start;
  gap: var(--padding-sm);
}

.intro-text h2 {
  font-family: var(--title-font);
  font-size: var(--font-size-md);
  font-style: italic;
}

.intro-text h2,
.intro-text p {
  line-height: var(--line-height-md);
}

.intro-video {
  display: block;
  width: 100%;
  height: auto;
}

.intro-text h3 {
  font-family: var(--title-font);
  font-size: var(--font-size-md);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-blue);
}

/* CONTENT SECTIONs */

.content-section {
  display: grid;
  gap: var(--padding-lg);
  justify-items: center;
  width: 100%;
  padding: 0 var(--padding-md);
}

.content-section--blue {
  padding: var(--padding-lg) var(--padding-md);
  background-color: var(--color-blue);
}

.content-section__header {
  width: 100%;
  padding: var(--padding-lg) 0;

  border-top: 1px solid var(--color-grey-mid);
  border-bottom: 1px solid var(--color-grey-mid);
}

@media screen and (min-width: 768px) {
  
  .content-section__header {
    text-align: center;
  }

}

.content-section__title {
  font-family: var(--title-font);
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-blue);
}

/* CONTENT GRIDS */

.content-grid {
  display: grid;
  gap: var(--padding-sm);
  align-items: start;
  width: min(80rem, 100%);
}

.content-grid--layout-1 .content-grid__img-col {
  justify-items: end;
}

.content-grid__img-col {
  display: none;
}

.content-grid__text-col {
  display: grid;
  gap: var(--padding-md);
}

.content-grid__img-1 {
  display: block;
  width: 100%;
  height: auto;
}

.content-grid__img-2 {
  display: block;
  width: 75%;
  height: auto;
}

.content-grid__img-3 {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {

  .content-grid__text-col {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

}

@media screen and (min-width: 1024px) {

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

  .content-grid__img-col {
    display: grid;
    gap: var(--padding-sm);
  }
  
  .content-grid__text-col {
    grid-template-columns: none;
  }

}

.content-grid__text {
  display: grid;
  gap: var(--padding-sm);
}

@media screen and (min-width: 768px) {

  .content-grid__text {
    padding: 0 0 0 var(--padding-md);

    border-left: 1px solid var(--color-grey-mid);
  }

}

@media screen and (min-width: 1024px) {

  .content-grid__text {
    margin: var(--padding-lg);
  }

}

@media screen and (min-width: 1280px) {

  .content-grid__text {
    margin: var(--padding-xl) var(--padding-lg);
  }

}

.content-grid__text h3 {
  padding: 0 0 var(--padding-sm);

  border-bottom: 1px solid var(--color-grey-mid);

  font-family: var(--title-font);
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-blue);
}

@media screen and (min-width: 768px) {

  .content-grid__text h3 {
    padding: 0;
    border: none;
  }

}

.content-grid__text p {
  font-family: var(--title-font);
  font-size: var(--font-size-md);
  font-style: italic;
  line-height: var(--line-height-sm);
}

.content-section--blue .content-grid__text,
.content-section--blue .content-grid__text h3 {
  border-color: white;
}

.content-section--blue .content-grid__text h3,
.content-section--blue .content-grid__text p {
  color: white;
}

/* CTAS */

.ctas {
  display: grid;
  gap: var(--padding-sm);
  width: min(80rem, 100%);
}

@media screen and (min-width: 768px) {
  
  .ctas {
    grid-template-columns: repeat(2, 1fr);
  }

}

.cta {
  padding: var(--padding-lg);

  background-color: var(--color-grey-light);
}

.cta__text {
  display: grid;
  gap: var(--padding-sm);
  justify-items: start;
}

.cta__text h3 {
  font-family: var(--title-font);
  font-size: var(--font-size-md);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-blue);
}

.cta__text p {
  line-height: var(--line-height-md);
}

.cta .btn {
  margin: var(--padding-sm) 0 0;
}

.cta svg {
  display: none;
  width: 3rem;
  height: 3rem;

  fill: var(--color-grey-mid);
}

@media screen and (min-width: 500px) {
  
  .cta {
    display: flex;
    gap: var(--padding-sm);
  }

  .cta__text {
    flex: 1;
  }

  .cta svg {
    display: block;
    flex-shrink: 0;
  }

}

@media screen and (min-width: 1280px) {

  .cta {
    gap: var(--padding-lg);
    padding: 5rem;
  }

}

/* FOOTER */

.pg-footer {
  display: flex;
  flex-direction: column;
  gap: var(--padding-lg);

  width: 100%;
  padding: var(--padding-lg) var(--padding-md);

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

@media screen and (min-width: 1024px) {
  
  .pg-footer {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

}



.pg-footer__logo svg {
  width: 12rem;
  height: auto;

  fill: white;
}

.pg-footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--padding-sm);

  color: white;
}

@media screen and (min-width: 1024px) {
  
  .pg-footer__nav {
    flex-direction: row;
    gap: var(--padding-md);
  }

}

.pg-footer__nav a {
  color: inherit;
  text-decoration: none;
}

.pg-footer__nav a:hover {
  text-decoration: underline;
}

.pg-footer__social {
  display: flex;
  gap: var(--padding-sm);
  align-items: center;
}

.pg-footer__social a {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
}

.pg-footer__social svg {
  width: 100%;
  height: auto;

  fill: white;
}

