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

body {
     color: #243126;
     background: #f7f3ea;
     line-height: 1.6
}

a {
     text-decoration: none;
     color: inherit
}

.site-header {
     position: absolute;
     top: 0;
     width: 100%;
     z-index: 10;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: calc(24 * var(--vw)) 6%;
     color: white
}

.logo {
     letter-spacing: calc(3 * var(--vw));
     font-size: calc(18 * var(--vw));
     font-weight: bold
}

nav {
     display: flex;
     gap: calc(28 * var(--vw));
     font-size: calc(14 * var(--vw))
}

.header-btn {
     border: calc(1 * var(--vw)) solid rgba(255, 255, 255, .8);
     padding: calc(10 * var(--vw)) calc(18 * var(--vw));
     border-radius: calc(999 * var(--vw));
     font-size: calc(14 * var(--vw))
}

.hero {
     min-height: 88vh;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center
}

.hero img,
.final-cta img {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover
}

.hero-overlay,
.final-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(90deg, rgba(18, 31, 22, .84), rgba(18, 31, 22, .24));
     z-index: 1
}



.eyebrow {
     display: inline-block;
     text-transform: uppercase;
     letter-spacing: calc(2.5 * var(--vw));
     font-size: calc(12 * var(--vw));
     /* color: #a98f58; */
     margin-bottom: calc(16 * var(--vw));
     /* font-family: Arial, sans-serif; */
     font-weight: 700
}

.hero .eyebrow,
.final-cta .eyebrow {
     color: #e6d7ad
}

h1 {
     font-size: clamp(calc(44 * var(--vw)), 7vw, calc(86 * var(--vw)));
     line-height: .95;
     margin-bottom: calc(22 * var(--vw));
     /* font-weight: 400 */
}

h2 {
     font-size: clamp(calc(32 * var(--vw)), 4vw, calc(56 * var(--vw)));
     line-height: 1.05;
     /* font-weight: 400; */
     margin-bottom: calc(24 * var(--vw))
}

h3 {
     font-size: calc(25 * var(--vw));
     /* font-weight: 400; */
     margin-bottom: calc(12 * var(--vw))
}

p {
     font-size: calc(17 * var(--vw));
     max-width: calc(690 * var(--vw));
     color: #4f5a51
}

.hero p,
.final-cta p {
     color: rgba(255, 255, 255, .9);
     font-size: calc(21 * var(--vw))
}

.hero-actions {
     display: flex;
     gap: calc(14 * var(--vw));
     flex-wrap: wrap;
     margin-top: calc(34 * var(--vw))
}

.btn {
     display: inline-block;
     padding: calc(14 * var(--vw)) calc(26 * var(--vw));
     border-radius: calc(999 * var(--vw));
     font-family: Arial, sans-serif;
     font-size: calc(14 * var(--vw));
     font-weight: 700
}

.btn.primary {
     background: #a98f58;
     color: white
}

.btn.secondary {
     border: calc(1 * var(--vw)) solid rgba(255, 255, 255, .7);
     color: white
}

.section {
     padding: calc(110 * var(--vw)) 8%
}

.intro {
     display: grid;
     grid-template-columns: 1fr .9fr;
     gap: calc(70 * var(--vw));

}

.intro.section {
     align-items: center
}

.image-card {

     overflow: hidden;
     /* min-height: calc(570 * var(--vw)) */
}

.image-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: calc(30 * var(--vw));
     filter: brightness(.62);
}

.dark-section {
     background: #1f2d22;
     color: white
}

.dark-section h2,
.dark-section p {
     color: white
}

.rhythm-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: calc(24 * var(--vw));
     margin-top: calc(42 * var(--vw))
}

.rhythm-card {
     background: rgba(255, 255, 255, .08);
     border-radius: calc(24 * var(--vw));
     padding: calc(32 * var(--vw));
     min-height: calc(160 * var(--vw))
}

.rhythm-card__icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: calc(56 * var(--vw));
     height: calc(56 * var(--vw));
     margin-bottom: calc(18 * var(--vw));
}

.rhythm-card__icon img {
     width: 100%;
     height: 100%;
     object-fit: contain;
}

@media (max-width: 991px) {
     .rhythm-card__icon {
          width: 48px;
          height: 48px;
          margin-bottom: 14px;
     }
}

.rhythm-card p {
     color: rgba(255, 255, 255, .84);
     font-size: calc(17 * var(--vw))
}

.mosaic {
     background: #efe6d3
}

.mosaic-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: calc(18 * var(--vw));
     margin-top: calc(45 * var(--vw))
}

.mosaic-card {
     background: #fffaf0;
     border-radius: calc(24 * var(--vw));
     overflow: hidden;
     box-shadow: 0 calc(18 * var(--vw)) calc(45 * var(--vw)) rgba(40, 30, 15, .07)
}

.mosaic-card img {
     width: 100%;
     height: calc(260 * var(--vw));
     object-fit: cover;
     filter: brightness(.62);
}

.mosaic-card div {
     padding: calc(24 * var(--vw))
}

.mosaic-card p {
     font-size: calc(17 * var(--vw))
}

.wide {
     grid-column: span 2
}

.wide img {
     height: calc(320 * var(--vw))
}

.culture {
     display: grid;
     grid-template-columns: .9fr 1.1fr;
     gap: calc(70 * var(--vw));
     align-items: center
}

.point-list {
     display: grid;
     gap: calc(16 * var(--vw));
     margin-top: calc(30 * var(--vw))
}

.point {
     background: #fffaf0;
     border-radius: calc(16 * var(--vw));
     padding: calc(18 * var(--vw)) calc(22 * var(--vw));
     font-family: Arial, sans-serif;
     font-size: calc(15 * var(--vw))
}

.quote-section {
     text-align: center;
     background: #fffaf0
}

.quote-section blockquote {
     font-size: clamp(calc(30 * var(--vw)), 4vw, calc(52 * var(--vw)));
     line-height: 1.12;
     max-width: calc(980 * var(--vw));
     margin: auto;
     color: #243126
}

.quote-section p {
     margin: calc(28 * var(--vw)) auto 0
}

.final-cta {
     min-height: calc(620 * var(--vw));
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center
}

.final-content {
     position: relative;
     z-index: 2;
     max-width: calc(760 * var(--vw));
     color: white;
     padding-left: 8%
}

/* footer {
     padding: calc(30 * var(--vw)) 8%;
     background: #172119;
     color: white;
}

footer p {
     color: rgba(255, 255, 255, .75);
     font-size: calc(14 * var(--vw))
} */

@media(max-width:900px) {
     .intro.section .image-card {
          min-height: auto;
     }

     nav,
     .header-btn {
          display: none
     }

     .hero-content,
     .final-content {
          padding: 0
     }

     .section {
          padding: 70px 6%
     }

     p {
          font-size: 16px;
     }

     .intro,
     .rhythm-grid,
     .culture,
     .mosaic-grid {
          grid-template-columns: 1fr
     }

     .wide {
          grid-column: span 1
     }

     .image-card {
          min-height: 360px
     }
}


nav .nav-cta {
     display: none;
}