/* TODO annotate and organise CSS */

/* GLOBAL STYLES */
:root {
  --main-font-family: "Montserrat", "Avenir Light", sans-serif;
  --heading-font-family: "Georgia", "Palatino", serif;
  --header-bgc: #282727;
  --cta-color: #ceab5c;
  --blog-secondary-color: #bb8d22;
  --blog-tertiary-color: #906e1f;
  --link-color: #725000;
  --main-bgc: #fff7e6;
  --desktop-nav-color: #bb9c55;
}

body {
  font-family: var(--main-font-family);
  font-weight: 400;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family);
}

h1,
h2 {
  line-height: 1.2;
}

.content {
  margin: 0 auto;
  max-width: 50rem;
}

.desktop {
  display: none;
}

.page-content {
  display: grid;
  grid-template-rows: auto 1fr;
}

.hoverable-link:hover,
.hoverable-link:focus {
  text-decoration: underline;
}

/* MAIN PAGE STYLES */

.main-page {
  padding: 0 1rem;
  padding-top: 1.5rem;
}

.main-page {
  background-color: var(--main-bgc);
}

.main-page h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0.5em 0;
  padding-top: 0.5em;
}

.content-header {
  background-color: var(--header-bgc);
  padding: 1.5rem 0 4rem;
  color: #fff;
  text-align: center;
}

.content-header h1 {
  /* TODO make second half of heading different color using JS */
  color: #f3d591;
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 0.6rem;
}

.content-header p {
  letter-spacing: 2px;
}

.btn {
  cursor: pointer;
}

/* SUB-PAGE STYLES */

/* HEADER STYLES */
.header {
  background-color: var(--header-bgc);
  padding: 1rem 3rem;
  position: sticky;
  top: 0;
  z-index: 1;
}

.header-content {
  display: flex;
  justify-content: space-between;
  /* consider using align-items: baseline; for desktop */
  align-items: center;
}

.start a {
  color: var(--cta-color);
  font-family: var(--heading-font-family);
  font-weight: bold;
  font-style: italic;
  font-size: 1.3rem;
  text-transform: uppercase;
  transition: color 0.3s;
}

.start a:hover,
.start a:active {
  color: #fff;
}

.menu-icon {
  color: #fff;
  font-size: 2rem;
}

.main-nav {
  display: flex;
  flex-direction: column;
}

.header-nav {
  transition: opacity 0.2s;
  height: 0;
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  background-color: #000;
  /* necessary to make it fully disappear from page without setting display: none; */
  overflow: hidden;
  padding: 8vh 10vw;
  z-index: -1;
}

.header-nav.mobile-transparent {
  opacity: 0;
}

.header-nav .nav-link,
.lang-select {
  color: #ffdead;
  text-align: center;
}

.header-nav .nav-link {
  font-size: 1.2rem;
  letter-spacing: 2px;
  cursor: pointer;
}

.header-nav .nav-link.current-page,
.lang-select .current-lang {
  color: #fff;
}

.current-lang {
  cursor: default;
}

body.not-scrolling {
  overflow: hidden;
}

.header-nav.show {
  height: 100vh;
  overflow: auto;
  z-index: 1;
}

.header-nav .main-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 2.5vh 10vw 10vh;
  order: 1;
}

.main-nav-list li {
  padding: 1em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
}

.header-nav .nav-link.current-page,
.lang-select a {
  transition: none;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-menu {
  display: flex;
  flex-direction: column;
  padding: 1em 0 0.5em;
}

.dropdown-menu .nav-link + .nav-link {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid var(--header-bgc);
}

.dropdown-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.dropdown-icon {
  transition: transform 0.3s;
}

.dropdown-icon.expanded-mobile {
  transform: rotate(-180deg);
}

.dropdown-menu .nav-link {
  display: block;
}

.close {
  text-align: right;
}

.close-icon {
  color: var(--cta-color);
  font-size: 1.8rem;
}

/* FOOTER STYLES */
.footer {
  padding: 1rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: center;
  text-align: center;
  background-color: #212121;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer .website-author {
  letter-spacing: 1px;
}

.footer .website-author a {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: inherit;
  text-decoration: underline;
}

.footer .website-author .footer-icon {
  filter: invert(99%);
  width: auto;
}

/* HOMEPAGE STYLES */
.home h2 {
  font-family: inherit;
  letter-spacing: 2px;
  color: #4b4549;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: bold;
}

.home .normal-case {
  text-transform: initial;
}

/* HERO STYLES */
.hero {
  background-position: center center;
  background-size: cover;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  padding: 0 4vw;
  padding-top: 10vh;
  gap: 2rem;
}

.home .hero {
  position: relative;
}

#hero-img {
  background-color: #091113;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero h2 {
  font-size: 1.32rem;
  line-height: 1.7;
  letter-spacing: 4px;
  color: #f9eac7;
}

.hero h1 {
  font-size: 2.63rem;
  font-weight: bold;
  color: #f3d591;
  line-height: 1.1;
}

/* HOMEPAGE SECTION STYLES */
.home section {
  padding: 8vh 4vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.home section:nth-child(2n + 1) {
  background-color: #fcf5e5;
}

.home h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.home .keywords {
  font-size: 1.8rem;
}

.img-wrapper {
  width: 100%;
}

.img-wrapper img {
  width: 100%;
}

.package .img-wrapper {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.package img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.three-col {
  display: grid;
}

section.two-col {
  display: grid;
}

.package-container {
  gap: 2rem;
}

.package {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.package .img-container {
  display: block;
  width: 100%;
  padding-top: 62.5%;
  position: relative;
  overflow: hidden;
}

.btn-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 4rem;
  font-weight: 700;
  font-style: italic;
  font-family: var(--heading-font-family);
  font-size: 1.4rem;
  --btn-color: var(--cta-color);
  color: var(--btn-color);
  border: 1px solid var(--btn-color);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-link:hover,
.btn-link:active {
  color: #fff;
  background-color: var(--btn-color);
}

.disabled-btn:hover,
.disabled-btn:active {
  color: var(--btn-color);
  background-color: transparent;
  cursor: default;
}

.about-container {
  gap: 2rem;
}

h3.about-heading {
  font-size: 1.5rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.home .testimonials-section {
  gap: 0.8rem;
  padding: 8vh 2vw;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--main-bgc);
  padding: 1rem 0;
}

.testimonial-controls {
  margin-top: 1.5rem;
  color: #ffdead;
  font-size: 0.6rem;
}

.testimonial-control-link {
  cursor: pointer;
  padding: 0.2rem;
  margin: 0.1rem;
}

.testimonial-control-link.current {
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #ffdead;
}

.arrow {
  display: none;
}

.testimonials-wrapper {
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  max-width: 60rem;
  /* overflow: hidden; */
  width: 92vw;
}

.testimonials-slider.animated {
  transition: transform 0.6s ease-in-out;
}

.testimonial {
  width: 100%;
  flex: 0 0 100%;
  height: auto;
  display: flex;
  gap: 1.8rem;
  flex-direction: column;
}

.testimonial-quote {
  font-family: var(--heading-font-family);
  font-weight: bold;
  font-size: 1.3125rem;
}

.testimonial-quote::before {
  display: inline;
  /* change to subscript quote for pl version */
  content: "“";
}

.testimonial-quote::after {
  display: inline;
  content: "”";
}

.testimonial-author {
  font-style: italic;
  font-family: var(--heading-font-family);
  font-size: 1.1rem;
}

.home .contact-section {
  background-color: var(--header-bgc);
  color: var(--cta-color);
  font-size: 0.88rem;
}

.contact-section h2 {
  color: inherit;
}

.contact-section .cta {
  letter-spacing: 2px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  width: 100%;
  max-width: 50rem;
  gap: 1rem;
}

.message-form {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
}

.message-form input,
.message-form textarea,
.message-form button {
  text-align: left;
  border-bottom: 1px solid var(--cta-color);
  padding: 0.4rem;
}

.message-form input:focus,
.message-form textarea:focus,
.message-form button:focus {
  border-color: #fff;
}

.message-form button {
  border: none;
  font-family: var(--heading-font-family);
  font-weight: bold;
  font-size: 1.2rem;
  font-style: italic;
  justify-self: center;
  padding: 1rem 3rem;
  transition: color 0.2s ease-in-out;
  cursor: pointer;
}

.message-form textarea {
  height: 10rem;
}

.message-form button:hover,
.message-form button:active,
.message-form button:focus {
  color: #fff;
}

.message .message-form .invalid {
  border-color: #ff4040;
}

.form-field {
  display: grid;
}

.form-field > .error-text {
  padding: 0 0.4rem;
  opacity: 0;
}

.form-field .invalid + .error-text {
  opacity: 1;
  color: #ff4040;
}

/* SESSION PAGE STYLES */

.session-hero-wrapper {
  /* Aspect ratio trick */
  padding-top: 50%;
  position: relative;
}

.session-hero {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
  height: 100%;
}

.session {
  padding: 2rem 0;
}

.session h2 {
  margin: 0;
}

.session p {
  margin-bottom: 2rem;
  letter-spacing: 1px;
  line-height: 2;
}

.session .header-text {
  margin: 1.8rem 0;
}

.session .price-tag {
  font-family: var(--heading-font-family);
  font-weight: bold;
  font-style: italic;
  font-size: 1.2rem;
  color: #ceab5c;
  white-space: nowrap;
}

.wide-field {
  grid-column: 1 / -1;
}

.main-page.sessions-page {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.sessions-page > * {
  padding-left: 1rem;
  padding-right: 1rem;
}

.session-cta {
  text-align: center;
}

.sessions-page .btn-link {
  margin-top: 0;
  margin: 0 auto;
}

.booking {
  background-color: #f9eac7;
  padding: 2rem 1rem;
}

.booking header {
  text-align: center;
  line-height: 1.3;
}

.booking h2 {
  margin-bottom: 0.3em;
}

.booking h3 {
  font-weight: bold;
  font-size: 1.2rem;
}

.booking .content {
  display: grid;
  gap: 2rem;
  max-width: 65rem;
}

.booking .message-form input,
.booking .message-form textarea,
.booking .message-form button {
  border-color: black;
}

.booking .message-form input:focus,
.booking .message-form textarea:focus,
.booking .message-form button:focus {
  border-color: black;
}

.booking .contact-details {
  font-size: 0.85rem;
  display: flex;
  line-height: 2;
  flex-direction: column;
  align-items: center;
  letter-spacing: 1px;
  gap: 0;
}

.booking button:hover,
.booking button:active,
.booking button:focus {
  color: var(--cta-color);
}

.booking .error-text {
  font-size: 0.9rem;
}

.post-header span {
  font-style: italic;
}

.main-page.blog-index-page {
  padding: 1rem;
}

.blog-index h2 {
  margin: 0;
  line-height: 1;
  margin-bottom: 0.3em;
}

.post-header {
  margin-bottom: 1.8rem;
}

.post-header a {
  transition: color 0.3s;
}

.post-header a:hover {
  color: var(--cta-color);
}

.blog-post {
  padding: 2rem 0;
  border-bottom: 1px solid #ceab5c88;
}

.blog-post:last-child {
  border: none;
}

.more-link {
  display: inline-block;
  padding: 1rem 0;
  text-decoration: underline;
  font-weight: bold;
  padding-right: 2rem;
  transition: color 0.2s;
}

.more-link:hover,
.more-link:active {
  text-decoration: underline transparent;
  color: var(--cta-color);
}

.more-link:hover::after,
.more-link:active::after {
  content: " >>>";
}

.post-page {
  padding: 1rem;
}

.post-page a,
.blog-post .post-excerpt a {
  color: var(--blog-tertiary-color);
  text-decoration: underline;
}

.post-page .post-footer {
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 1em;
  color: rgba(0, 0, 0, 0.8);
}

.post-page .post-header span {
  font-size: 0.9rem;
}

.post-page h1 {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0.2em 0;
}

.post-content p,
.generic-page p {
  margin: 1.2rem 0;
}

.post-content {
  padding-bottom: 1rem;
  border-bottom: 1px solid #ceab5c88;
}

.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5 {
  font-weight: bold;
}

.post-content h2 {
  font-size: 2rem;
  color: var(--blog-secondary-color);
}

.post-content h3 {
  font-size: 1.6rem;
}

.post-content h4 {
  font-size: 1.2rem;
  color: var(--blog-secondary-color);
}

.post-content .color {
  color: var(--blog-tertiary-color);
}

.blog-nav .back-link {
  transition: opacity 0.3s;
  opacity: 0.7;
}

.blog-nav .back-link:hover,
.blog-nav .back-link:active {
  opacity: 1;
}

.testimonial-full {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonial-copy::after {
  /* Hack used to make icon thinner */
  -webkit-text-stroke: 3px var(--main-bgc);
  color: var(--cta-color);
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f715";
  padding: 0 0.3em;
  font-size: 2em;
  transform: rotate(90deg);
  font-weight: 900;
}

.testimonial-copy {
  letter-spacing: 1px;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 2;
}

.testimonial-full blockquote > * {
  text-align: left;
}

.testimonial-full blockquote > *:first-child::before {
  content: "“";
}
.testimonial-full blockquote > *:last-child::after {
  content: "”";
}

.featured {
  padding-bottom: 3rem;
  border-bottom: 1px solid #ceab5c88;
  margin-bottom: 3rem;
}

.featured:last-child {
  border: none;
  padding: 0;
}

.featured-link {
  text-decoration: underline;
  transition: all 0.3s;
}

.featured-link:hover {
  text-decoration: none;
  color: var(--blog-tertiary-color);
}

.featured-videos-page .featured {
  margin-top: 2rem;
}

.featured-videos-page .featured-title {
  font-size: 1.4rem;
}

.unsubscribe-area p {
  font-size: 0.9rem;
  text-align: center;
}

.unsubscribe-area a {
  text-decoration: underline;
}

.newsletter-page {
  padding-bottom: 2rem;
}

.scroll-nav {
  display: none;
}

.generic-page a {
  text-decoration: underline;
  color: var(--link-color);
}

.generic-page ul li::marker {
  color: var(--link-color);
}

.generic-page h1,
h2,
h3,
h4,
h5 {
  font-weight: bold;
  margin: 0.5em 0;
  padding-top: 0.5em;
}

.generic-page h1 {
  font-size: 3rem;
}

.generic-page h2 {
  font-size: 2.4rem;
}

.generic-page h3 {
  font-size: 1.8rem;
}

.generic-page h4 {
  font-size: 1.2rem;
}

.generic-page .content > *:first-child {
  margin-top: 0;
}

.response-msg {
  padding: 1rem 0 1.5rem;
  font-weight: bold;
  font-size: 1rem;
}

.response-msg .error {
  color: #ff4040;
}

.response-msg .prompt {
  font-weight: normal;
}

.home .grecaptcha-badge,
.newsletter-page .grecaptcha-badge,
.sessions-page .grecaptcha-badge {
  visibility: hidden;
}

.gprint {
  font-size: 0.7rem;
  margin-top: 1.5rem;
  grid-column: 1 / -1;
}

.gprint a {
  text-decoration: underline;
}

.disabled-btn {
}

.portrait-wrapper img {
  width: 50%;
}

/* NEWSLETTER FORM */

.newsletter-form {
  background-color: #f0f0f0;
  border-radius: 3px;
  border: 1px solid #c0ccd9;
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  max-width: 600px;
}

.newsletter-form h1 {
  font-size: 2rem;
  font-weight: bold;
}

.newsletter-form > * {
  margin: 1.5rem 0;
}

.newsletter-form .small-print {
  font-size: smaller;
  line-height: 1.4;
}

.newsletter-form .field > label {
  display: flex;
  flex-direction: column;
}

.required-symbol {
  display: inline-block;
  padding: 0 3px;
}

.newsletter-form [aria-label="required"],
.required-symbol {
  color: rgb(179, 4, 4);
}

.newsletter-form .error-text {
  font-weight: bolder;
  color: rgb(102, 29, 29);
  background-color: #ffeded;
  padding: 0 0.8rem;
  margin: 0.2rem 0;
  border-radius: 3px;
}

.newsletter-form .error {
  display: none;
}

.newsletter-form .btn-container {
  display: flex;
  justify-content: center;
}

.message .btn-container {
  grid-column: 1 / -1;
}

.newsletter-form button {
  margin-top: 1rem;
  color: #fff;
  background-color: var(--blog-secondary-color);
}

.newsletter-form .field input {
  background-color: #fff;
  padding: 0.5rem 0.8rem;
  margin: 0.2rem 0;
  border-radius: 3px;
  border: 1px solid #ccc;
  cursor: text;
}

.newsletter-form input:valid {
  border-color: rgb(95, 226, 95);
}

.newsletter-form input.invalid {
  border-color: #ff5d5d;
}

.newsletter-form .invalid ~ .error {
  display: block;
}

.newsletter-form .hint {
  font-size: smaller;
  color: #333;
}

.newsletter-form .unsubscribe-btn {
  font-weight: bold;
  color: #ffffff;
  background-color: #156bec;
  border-radius: 3px;
  border-width: 0px;
  cursor: pointer;
  padding: 0.5rem 1rem;
}

.newsletter-form .server-error {
  text-align: center;
  padding: 0.1rem 0.5rem 1rem;
}

.newsletter-form .server-error h3 {
  font-family: inherit;
  font-size: 1.4rem;
}

.server-error a {
  text-decoration: underline;
}

.dialog::before {
  content: "";
  width: 200px;
  height: 200px;
  padding: 1rem;
  display: inline-block;
  margin: 1rem;
  justify-self: center;
}

.success-dialog::before {
  background-image: url(/icons/success.svg);
}

.error-dialog::before {
  background-image: url(/icons/error.svg);
}

.dialog {
  max-width: 1000px;
  margin: 2rem auto;
  display: grid;
  align-items: center;
}

.dialog .message {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.email-link:hover {
  text-decoration: underline;
}

.privacy-policy dt {
  font-weight: bold;
}

.privacy-policy dd {
  margin-left: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 650px) {
  .two-col {
    grid-template-columns: 1fr 2fr;
  }

  .hero-content {
    padding: 10vh 5vw;
    margin: 0 auto;
    max-width: 53.125rem;
    align-items: center;
    justify-content: center;
  }

  .hero h2 {
    margin-top: -5vh;
    max-width: 43.75rem;
  }
}

@media (min-width: 760px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }
}

/* DESKTOP STYLES */
@media (min-width: 1024px) {
  .desktop {
    display: block;
  }
  .mobile {
    display: none;
  }

  /* MAIN PAGE STYLES */
  .main-page,
  .post-page {
    padding: 2.6rem 1rem;
  }

  /* HEADER STYLES */
  .header {
    padding: 2.5rem 3rem;
  }

  .header-nav {
    display: block;
    position: static;
    height: auto;
    width: auto;
    opacity: 1;
    background-color: transparent;
    overflow: visible;
    padding: 0;
    z-index: 0;
  }

  .header-nav.mobile-transparent {
    opacity: 1;
  }

  .header-nav li {
    border-bottom: none;
    padding: 0;
  }

  .header-nav .main-nav-list {
    flex-direction: row;
    gap: 1.4em;
    padding: 0;
    order: 0;
  }

  .main-nav {
    display: flex;
    flex-direction: row;
    gap: 0.5rem 3rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .header-nav .nav-link,
  .lang-select a {
    transition: color 0.3s;
  }

  .header-nav .nav-link {
    color: #fff;
    /* consider changing font-size to .9rem for better readability */
    font-size: 0.85rem;
  }

  .dropdown-menu .nav-link {
    white-space: nowrap;
  }

  .header-nav .nav-link.current-page,
  .header-nav .nav-link:hover,
  .header-nav .nav-link:active,
  .dropdown-toggle.current-page,
  .lang-select .current-lang,
  .lang-select a:hover,
  .lang-select a:active {
    color: var(--desktop-nav-color);
  }

  .dropdown {
    position: relative;
  }

  .dropdown:hover .dropdown-toggle .nav-link {
    color: var(--desktop-nav-color);
  }

  .dropdown-wrapper {
    position: absolute;
    left: -1rem;
    padding: 0.6rem 0 2rem;
    display: none;
    /* reset mobile styles */
    overflow: visible;
    max-height: auto;
  }

  .dropdown-toggle {
    color: #fff;
  }

  .dropdown-toggle.current {
    color: var(--desktop-nav-color);
  }

  .dropdown:hover .dropdown-wrapper,
  .dropdown-wrapper.expanded {
    display: block;
  }

  .dropdown:hover > .nav-link {
    color: var(--desktop-nav-color);
  }

  .dropdown-menu {
    text-align: left;
    background: var(--header-bgc);
    padding: 0.8rem 1rem;
    box-shadow: 0 0 2px var(--blog-secondary-color);
    border-radius: 2px;
  }

  .dropdown-menu .nav-link + .nav-link {
    border-top: 1px solid var(--blog-tertiary-color);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }

  .dropdown-toggle {
    display: block;
  }

  .lang-select {
    color: white;
  }

  /* FOOTER STYLES */
  .footer {
    padding: 2.5rem 3rem;
  }

  /* HERO STYLES */
  .hero h2 {
    font-size: 1.7rem;
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  /* HOMEPAGE SECTION STYLES */
  .home section {
    margin: 0 auto;
  }

  .three-col {
    grid-template-columns: repeat(3, 1fr);
  }

  .keywords {
    max-width: 53.125rem;
  }

  section.about-section {
    max-width: 60rem;
    text-align: left;
  }

  .testimonials-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
  }

  .testimonial-controls {
    grid-column: 1 / -1;
  }

  .arrow {
    display: block;
    transition: color 0.2s;
    font-size: 3rem;
    font-weight: 100;
    transform: scaleX(1.4);
    color: #625f58;
    cursor: pointer;
    padding: 0 1rem;
  }

  .arrow:hover {
    color: #a09b90;
  }

  .testimonial-quote {
    font-size: 1.8rem;
  }

  .message {
    max-width: 54rem;
    width: 100%;
  }

  .message-form {
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
  }

  .message-form .wide-field,
  .message-form button {
    grid-column: 1 / -1;
  }

  .session .header-text {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }

  .booking .content {
    grid-template-columns: 2fr 5fr;
    align-items: start;
  }

  .booking h2 {
    font-size: 2rem;
  }

  .booking h3 {
    font-size: 1.4rem;
  }

  .booking header {
    grid-column: 1 / -1;
  }

  .booking .contact-details {
    margin-top: 1.2rem;
    align-items: flex-start;
  }

  .post-page h1 {
    font-size: 2.4rem;
  }

  .featured-videos-page .featured-title {
    font-size: 1.8rem;
  }

  .featured-video {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 70rem;
  }

  .scroll-nav {
    display: block;
    position: fixed;
    top: 50%;
    left: 0.6rem;
    transform: translate(0, -50%);
  }

  .scroll-nav-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .scroll-nav-list li {
    box-sizing: content-box;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background-color: var(--cta-color);
    background-clip: content-box;
    padding: 0.25rem;
    border: 0.0625rem solid transparent;
    transition: all 0.3s;
    cursor: pointer;
  }

  .portrait-wrapper {
    order: 1;
  }

  .portrait-wrapper img {
    width: 100%;
  }

  .about-container {
    display: grid;
    gap: 4rem;
    grid-template-columns: 4fr 1fr;
  }

  .scroll-nav-list .current {
    border-color: var(--cta-color);
  }

  .dialog {
    gap: 2rem;
    grid-template-columns: auto 1fr;
  }
}

@media (min-width: 1200px) {
  .header-nav .main-nav-list {
    gap: 2em;
  }

  .scroll-nav {
    left: 0.9rem;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 20px;
  }
  .scroll-nav {
    left: 1.2rem;
  }
}

@media (min-width: 2160px) {
  html {
    font-size: 26px;
  }
  .scroll-nav {
    left: 2rem;
  }
}
