:root {
  --rc-gold: #c5882c;
  --rc-gold-dark: #a96e15;
  --rc-cream: #fff8f1;
  --rc-text: #252525;
  --rc-border: #efc485;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  background: #fff;
  color: var(--rc-text);
  font-family: Verdana, "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--rc-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:active,
a:focus {
  color: var(--rc-gold-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 18px;
  color: var(--rc-gold);
  font-family: "Libre Caslon Text", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5em;
}

h3 {
  font-size: 1.35em;
}

h5 {
  padding-top: 20px;
}

p {
  margin: 0 0 16px;
}

.text-black {
  color: #000;
}

ol {
  margin: 0 0 16px 22px;
  padding-left: 18px;
}

.body-wrapper {
  min-width: 320px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 2;
  background: #fff;
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(220px, 330px) 1fr;
  align-items: end;
  gap: 36px;
  min-height: 120px;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0 18px;
}

.site-logo {
  display: block;
}

.site-logo img {
  display: block;
  width: 330px;
  max-width: 100%;
}

.main-menu {
  display: flex;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--rc-gold);
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
  padding: 10px 0;
  text-transform: uppercase;
}

.menu-list,
.menu-child {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 18px;
}

.menu-list > li {
  position: relative;
}

.menu-list > li > a,
.menu-list > li > span {
  display: block;
  color: var(--rc-gold);
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  padding: 12px 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-list > li.active > a,
.menu-list a[aria-current="page"],
.menu-list a[aria-current="true"] {
  color: var(--rc-gold-dark);
}

.menu-child {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: #fff;
  border: 1px solid var(--rc-border);
  box-shadow: 0 12px 28px rgba(37, 37, 37, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.menu-parent:hover .menu-child,
.menu-parent:focus-within .menu-child {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-child a {
  display: block;
  color: var(--rc-gold);
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px 18px;
  text-transform: uppercase;
}

#sp-main-body {
  background: #fff;
  padding: 80px 0;
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr) minmax(260px, 1fr);
  gap: 34px;
  align-items: start;
}

.left-shell {
  min-height: 1px;
}

.article-details {
  min-width: 0;
}

.article-details .article-image {
  float: right;
  width: 325px;
  height: auto;
  margin: 0 0 5px 5px;
}

.article-details .article-image.margin-10 {
  margin: 0 0 10px 10px;
}

.article-details .article-image.width-225 {
  width: 225px;
}

.article-details .article-image.width-425 {
  width: 425px;
}

.article-details .article-image.width-375 {
  width: 375px;
}

.article-details .article-image.margin-left-10 {
  margin: 0 0 5px 10px;
}

.article-details .article-image.margin-left-22 {
  margin: 0 0 10px 22px;
}

.article-details .article-image.no-bottom-margin {
  margin-bottom: 0;
}

.article-details .article-image-center {
  display: block;
  width: 650px;
  max-width: 100%;
  height: auto;
  margin: 10px auto;
  clear: both;
}

.article-details .review-box {
  border: 1px solid silver;
  padding: 6px;
  margin: 10px;
}

.article-details em {
  font-style: italic;
}

.article-details a.button {
  display: block;
  width: 240px;
  margin: 55px 0 0;
  padding: 10px 0 15px;
  border-radius: 35px;
  background: #db9421;
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
}

.article-details a.button:hover,
.article-details a.button:active,
.article-details a.button:focus {
  background: #3f7652;
  color: #fff;
}

.article-details a.button::after {
  content: "\2192";
  position: relative;
  top: -2px;
  padding-left: 10px;
  font-size: 25px;
  font-weight: 100;
}

body.start {
  color: var(--rc-gold);
}

.home-main {
  background: #fff;
}

.home-section {
  padding: 80px 0;
}

.home-hero {
  min-height: 850px;
  background: url("../../images/home-hero-bg.jpg") no-repeat top center;
  background-size: cover;
  position: relative;
}

.home-hero-inner {
  position: relative;
  min-height: 850px;
}

.home-hero h1 {
  position: absolute;
  bottom: 90px;
  left: 100px;
  color: #fcfbeb;
  font-size: 3.5em;
  font-weight: 700;
  word-break: break-all;
}

.home-button {
  display: block;
  width: 240px;
  padding: 10px 0 15px;
  border-radius: 35px;
  background: #db9421;
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
}

.home-button:hover,
.home-button:active,
.home-button:focus {
  background: #3f7652;
  color: #fff;
}

.home-button::after {
  content: "\2192";
  position: relative;
  top: -2px;
  padding-left: 10px;
  font-size: 25px;
  font-weight: 100;
}

.home-hero-button {
  position: absolute;
  bottom: 110px;
  left: 700px;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 34px;
  align-items: start;
}

.home-intro-title h2 {
  padding-top: 50px;
  font-size: 3em;
}

.home-intro-copy {
  color: var(--rc-text);
  line-height: 1.8;
  padding-left: 30px;
}

.roundedbg {
  border: 1px solid var(--rc-border);
  border-radius: 50px;
  padding: 50px 60px 40px;
}

.home-services-heading {
  border-top: 1px solid var(--rc-border);
  padding: 80px 0 0;
}

.home-services-heading h2,
.home-collaborations h2,
.home-about h2 {
  font-size: 2.8em;
  text-align: center;
}

.home-services {
  border-bottom: 1px solid var(--rc-border);
  padding: 30px 0 80px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.home-service-card {
  min-height: 600px;
  padding: 30px 10px;
  border: 1px solid var(--rc-border);
  border-radius: 50px;
  background: #fff;
  color: var(--rc-text);
}

.home-service-card p {
  margin-bottom: 12px;
}

.home-service-card img {
  display: block;
  width: 100px;
  height: auto;
  margin: 0 auto;
  transition: transform 0.18s ease;
}

.home-service-card a:hover img,
.home-service-card img:hover {
  transform: scale(1.05);
}

.home-service-card h3 {
  min-height: 55px;
  font-family: Verdana, "Open Sans", Arial, sans-serif;
  font-size: 1.3em;
  text-align: center;
}

.home-service-card ul {
  margin: 0 0 0 22px;
  padding-left: 18px;
}

.home-collaborations {
  padding: 80px 0 100px;
  text-align: center;
}

.home-collaboration-copy {
  width: 80%;
  margin: 0 auto;
  color: var(--rc-text);
}

.home-collaboration-copy .home-button {
  margin: 55px auto 0;
}

.home-logos {
  border-top: 1px solid var(--rc-border);
  padding: 22px 0;
}

.home-logo-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-logo-grid .logga {
  flex: 0 1 33.333%;
  padding: 0 120px;
}

.home-logo-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.home-about {
  border-top: 1px solid var(--rc-border);
  border-bottom: 1px solid var(--rc-border);
  padding: 100px 0;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.home-about-copy {
  color: var(--rc-text);
  text-align: right;
}

.home-about-copy .home-button {
  margin: 55px 0 0 auto;
}

.home-about-photo img {
  display: block;
  width: 400px;
  max-width: 100%;
  height: auto;
  margin-left: 50px;
  border-radius: 10px;
}

.home-summer {
  border-top: 1px solid #eee;
  padding: 100px 0;
  color: var(--rc-text);
}

.home-summer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.home-summer h3 {
  padding-bottom: 10px;
}

.home-audio-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: min(100%, 560px);
  margin: 40px 0 0;
  padding: 16px;
  border: 1px solid var(--rc-border);
  border-radius: 10px;
  background: #fff;
}

.home-audio-card img {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
}

.home-audio-copy h4 {
  margin-bottom: 4px;
  font-family: Verdana, "Open Sans", Arial, sans-serif;
  font-size: 1em;
}

.home-audio-copy p {
  margin-bottom: 8px;
}

.home-audio-copy audio {
  display: block;
  width: 100%;
}

.home-summer-image img {
  display: block;
  width: 100%;
  height: auto;
}

.video-embed {
  margin: 0 0 16px;
  text-align: center;
}

.video-embed iframe {
  display: inline-block;
  width: 560px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.video-caption {
  text-align: center;
}

.source-line {
  text-align: right;
}

.grid-box.width33.grid-h {
  float: left;
  width: 250px;
  min-height: 1px;
}

.right-rail {
  min-width: 0;
}

.sp-module {
  margin-bottom: 30px;
}

.sp-module h3 {
  padding-bottom: 5px;
}

.jourhavande img {
  float: right;
  width: 100px;
  height: 100px;
  margin: 0 0 8px 8px;
}

.jourhavande span {
  color: #444446;
  font-family: Arial, Helvetica, sans-serif;
}

.site-footer {
  border-top: 1px solid var(--rc-border);
  background: #fff;
  color: var(--rc-text);
  font-size: 1em;
  padding: 25px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.site-footer h3 {
  padding-bottom: 5px;
}

.footer-contact p {
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}

.social-icons img {
  display: block;
  width: 55px;
  height: 55px;
}

.foot-menu {
  margin: 0 0 28px;
}

@media (max-width: 1999px) {
  .site-logo img {
    width: 330px;
  }

  .home-hero h1 {
    font-size: 3.5em;
  }
}

@media (min-width: 2000px) {
  .home-hero h1 {
    font-size: 4.5em;
  }
}

@media (max-width: 1800px) {
  .menu-list {
    gap: 14px;
  }

  .menu-list > li > a,
  .menu-list > li > span {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .site-logo img {
    width: 320px;
  }
}

@media (max-width: 1500px) {
  .header-inner {
    grid-template-columns: minmax(220px, 260px) 1fr;
    gap: 24px;
  }

  .site-logo img {
    width: 260px;
  }

  .menu-list {
    gap: 10px;
  }

  .menu-list > li > a,
  .menu-list > li > span {
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .home-logo-grid .logga {
    padding: 0 30px;
  }
}

@media (max-width: 1300px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .site-logo img {
    width: 380px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-list {
    position: absolute;
    top: 100%;
    right: 24px;
    display: block;
    width: min(360px, calc(100vw - 48px));
    background: #fff;
    border: 1px solid var(--rc-border);
    box-shadow: 0 12px 28px rgba(37, 37, 37, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .main-menu:hover .menu-list,
  .main-menu:focus-within .menu-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-list > li > a,
  .menu-list > li > span {
    color: var(--rc-text);
    font-size: 18px;
    line-height: 15px;
    padding: 15px 24px;
  }

  .menu-child {
    position: static;
    width: auto;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .menu-child a {
    color: var(--rc-text);
    font-size: 15px;
    line-height: 25px;
    padding: 10px 38px;
  }
}

@media (max-width: 1200px) {
  .home-hero,
  .home-hero-inner {
    min-height: 700px;
  }

  .home-hero h1,
  .home-hero-button {
    position: relative;
    left: auto;
    bottom: auto;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .home-hero h1 {
    top: 500px;
  }

  .home-hero-button {
    top: 500px;
    margin-top: 18px;
  }

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

  .home-service-card {
    min-height: 560px;
  }

  .home-logo-grid .logga {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .main-grid {
    grid-template-columns: 1fr;
  }

  .home-intro-grid,
  .home-about-grid,
  .home-summer-grid {
    grid-template-columns: 1fr;
  }

  .home-intro-title h2 {
    padding-top: 0;
    text-align: center;
  }

  .home-about-copy {
    text-align: center;
  }

  .home-about-copy .home-button {
    margin-right: auto;
  }

  .home-about-photo {
    display: none;
  }

  .home-collaboration-copy {
    width: 100%;
  }

  .home-logo-grid .logga {
    padding: 0 10px;
  }

  .left-shell {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-footer {
    position: relative;
  }
}

@media (max-width: 576px) {
  .container {
    width: calc(100% - 50px);
  }

  .header-inner {
    min-height: 50px;
    width: calc(100% - 50px);
    padding: 5px 0 8px;
  }

  .site-logo img {
    max-height: 45px;
    width: auto;
  }

  #sp-main-body {
    padding: 40px 0;
  }

  .home-section,
  .home-collaborations,
  .home-about,
  .home-summer {
    padding: 40px 0;
  }

  .home-hero,
  .home-hero-inner {
    min-height: 520px;
  }

  .home-hero h1 {
    top: 365px;
    font-size: 3em;
  }

  .home-hero-button {
    top: 365px;
  }

  .home-intro-copy {
    padding-left: 0;
  }

  .roundedbg {
    border: 0;
    border-radius: 0;
    padding: 0 15px;
  }

  .home-services-heading {
    padding-top: 40px;
  }

  .home-services-heading h2,
  .home-collaborations h2,
  .home-about h2 {
    font-size: 2.2em;
  }

  .home-services {
    padding-bottom: 40px;
  }

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

  .home-service-card {
    min-height: auto;
    border-radius: 25px;
  }

  .home-logos,
  .home-logo-grid {
    display: none;
  }

  .home-about-copy {
    text-align: left;
  }

  .home-about-copy .home-button {
    margin-left: auto;
  }

  .home-audio-card {
    grid-template-columns: 1fr;
  }

  .home-audio-card img {
    margin: 0 auto;
  }

  h1 {
    font-size: 1.8em;
  }

  .article-details .article-image {
    float: none;
    clear: both;
    display: block;
    width: 325px;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
  }

  .article-details .article-image.width-225 {
    width: 225px;
  }

  .article-details a.button {
    margin: 55px auto 0;
  }

  .grid-box.width33.grid-h {
    float: none;
    width: auto;
  }

  .jourhavande img {
    max-width: 100%;
  }

  .social-icons img {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 480px) {
  .site-logo img {
    max-width: 230px;
  }

  .menu-toggle {
    padding-top: 12px;
  }

  .home-hero h1 {
    font-size: 2.3em;
  }
}

@media (max-width: 360px) {
  .site-logo img {
    max-width: 200px;
  }
}
