:root {
  --wine: #851e3d;
  --wine-dark: #5d1426;
  --wine-deep: #25070f;
  --cream: #f4eee5;
  --paper: #fffdf9;
  --olive: #536047;
  --gold: #b99358;
  --ink: #211c1e;
  --muted: #766d6f;
  --line: #e2d8d0;
  --white: #ffffff;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

button {
  font-family: inherit;
}

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


/* HEADER */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  transition: all .3s ease;
}

.site-header.scrolled {
  background: rgba(244, 238, 229, .94);
  backdrop-filter: blur(18px);
  box-shadow: 0 5px 30px rgba(40, 10, 20, .08);
}

.nav-container {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
}

.logo-symbol {
  width: 43px;
  height: 43px;
  border: 2px solid currentColor;
  border-radius: 13px 13px 22px 22px;
  display: grid;
  place-items: center;
  font: 25px var(--serif);
}

.logo-text strong {
  display: block;
  font: 26px/1 var(--serif);
}

.logo-text small {
  display: block;
  margin-top: 3px;
  font-size: 7px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navigation a {
  padding: 9px 11px;
  border-radius: 30px;
  font-size: 12px;
  transition: .2s;
}

.navigation a:hover {
  color: var(--wine);
  background: rgba(104, 22, 47, .06);
}

.navigation .nav-button {
  margin-left: 7px;
  color: white;
  background: var(--wine);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--wine);
  font-size: 27px;
  cursor: pointer;
}


/* TYPOGRAPHY */

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: -3px;
}

h2 {
  font-size: clamp(40px, 5vw, 63px);
  letter-spacing: -2px;
}

h3 {
  font-size: 29px;
}

em {
  color: var(--wine);
  font-style: italic;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
}

.eyebrow.light {
  color: var(--gold);
}


/* HERO */

.hero {
  min-height: 820px;
  padding: 145px 0 90px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 50px;
  align-items: center;
}

.hero-description {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.button {
  min-height: 49px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  transition: .25s;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(40, 10, 20, .15);
}

.button-primary {
  color: white;
  background: var(--wine);
}

.button-light {
  color: var(--wine);
  background: white;
}

.simple-link {
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  color: #8a7f81;
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-tags i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}


/* HERO VISUAL */

.hero-visual {
  position: relative;
  height: 550px;
}

.hero-main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 100%;
  overflow: hidden;
  border-radius: 40px 12px 40px 12px;
  box-shadow: 0 30px 70px rgba(40, 10, 20, .15);
}

.hero-secondary-image {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 30px;
  width: 38%;
  height: 42%;
  overflow: hidden;
  border: 7px solid var(--cream);
  border-radius: 23px;
  box-shadow: 0 20px 45px rgba(40, 10, 20, .15);
}

.health-circle {
  position: absolute;
  z-index: 4;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  box-shadow: 0 15px 35px rgba(40, 10, 20, .2);
}

.health-circle strong {
  font: 18px var(--serif);
}

.health-circle small {
  font-size: 7px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.social {
  top: 65px;
  left: 18%;
  background: var(--wine);
}

.mental {
  bottom: 78px;
  left: 0;
  background: var(--olive);
}

.physical {
  right: 0;
  bottom: 15px;
  background: var(--gold);
}

.hero-center {
  position: absolute;
  z-index: 5;
  top: 39%;
  left: 43%;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--wine);
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(40, 10, 20, .2);
}

.hero-center strong {
  font: 38px var(--serif);
}

.hero-center span {
  font-size: 8px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.visual-label {
  position: absolute;
  z-index: 6;
  top: 49%;
  right: 5px;
  padding: 10px 15px;
  border-radius: 12px;
  color: var(--wine);
  background: rgba(255, 253, 249, .95);
  font: 15px var(--serif);
  box-shadow: 0 10px 30px rgba(40, 10, 20, .1);
}


/* TICKER */

.ticker {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 17px;
  padding: 15px 20px;
  color: white;
  background: var(--wine);
  font-size: 9px;
  letter-spacing: 2px;
}

.ticker b {
  color: var(--gold);
}


/* GENERAL SECTIONS */

.section {
  padding: 110px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}

.content-text p {
  color: var(--muted);
  font-size: 14px;
}

.large-text {
  font-size: 18px !important;
  line-height: 1.7;
}

.signature {
  margin-top: 28px;
  color: var(--wine);
  font: italic 19px var(--serif);
}


/* PILLARS */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 70px;
}

.pillar {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--paper);
}

.pillar-mental {
  background: #f1f4ec;
}

.pillar-physical {
  background: #fbf5e8;
}

.pillar > span {
  color: var(--gold);
  font: 18px var(--serif);
}

.pillar h3 {
  margin: 35px 0 8px;
  color: var(--wine);
}

.pillar-mental h3 {
  color: var(--olive);
}

.pillar-physical h3 {
  color: #916c31;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}


/* DARK SECTION */

.dark-section {
  padding: 105px 0;
  color: white;
  background: var(--wine-dark);
}

.dark-section h2 {
  color: white;
}

.dark-section em {
  color: var(--gold);
}

.big-quote {
  color: #f1e4e7;
  font: clamp(27px, 3vw, 42px)/1.25 var(--serif);
}


/* SERVICES */

.services {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
}

.section-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 15px 15px 28px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: white;
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 55px rgba(40, 10, 20, .1);
}

.service-number {
  position: absolute;
  z-index: 3;
  top: 27px;
  left: 28px;
  color: white;
  font: 18px var(--serif);
}

.service-image {
  height: 235px;
  overflow: hidden;
  border-radius: 16px;
}

.service-image img {
  transition: transform .5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-category {
  margin: 22px 0 5px;
  color: var(--gold) !important;
  font-size: 8px !important;
  font-weight: 700;
  letter-spacing: 2px;
}

.service-card h3 {
  color: var(--wine);
}

.service-card > p:not(.service-category) {
  color: var(--muted);
  font-size: 12px;
}

.service-card strong {
  display: block;
  margin-top: 22px;
  color: var(--wine);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* DETAIL SECTIONS */

.detail-section {
  padding: 110px 0;
  background: var(--paper);
}

.detail-section.cream {
  background: var(--cream);
}

.detail-content {
  align-items: start;
}

.detail-content > div:last-child > p {
  color: var(--muted);
}

.check-list {
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold);
  font-weight: 700;
}

.info-box {
  padding: 24px;
  border-radius: 18px;
  color: white;
  background: var(--wine);
  font: 19px/1.35 var(--serif);
}

.olive-box {
  background: var(--olive);
}


/* FACT SECTION */

.fact-section {
  padding: 105px 0;
  color: white;
  background: var(--wine-deep);
}

.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}

.fact-section h2 {
  color: white;
}

.fact-section em {
  color: var(--gold);
}

.fact-section > .container > div:first-child > p:last-child {
  color: #d8c8cc;
}

.fact-card {
  min-height: 285px;
  padding: 35px;
  border-radius: 25px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 25px 60px rgba(10, 0, 5, .35);
}

.fact-card > span {
  color: var(--wine);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
}

.fact-card p {
  min-height: 105px;
  margin: 20px 0;
  font: clamp(25px, 3vw, 39px)/1.15 var(--serif);
}

.fact-controls button {
  width: 40px;
  height: 40px;
  margin-right: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--wine);
  background: white;
  cursor: pointer;
  transition: .2s;
}

.fact-controls button:hover {
  color: white;
  background: var(--wine);
}


/* RECOGNITION */

.recognition {
  background: var(--paper);
}

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

.recognition-grid a {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  transition: .25s;
}

.recognition-grid a:hover {
  transform: translateY(-3px);
  background: #f4e4e8;
}

.recognition-grid b {
  color: var(--gold);
  font: 20px var(--serif);
}

.recognition-grid span {
  color: var(--muted);
  font-size: 11px;
}

.recognition-grid strong {
  display: block;
  color: var(--ink);
  font: 18px var(--serif);
}


/* PROCESS */

.process-section {
  padding: 105px 0;
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
}

.process-grid article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: white;
}

.process-grid article:nth-child(2) {
  background: #faf6ef;
}

.process-grid article:nth-child(3) {
  background: #f2eee6;
}

.process-grid article:nth-child(4) {
  border-right: 0;
  background: #eef1e9;
}

.process-grid span {
  color: var(--wine);
  font: 32px var(--serif);
}

.process-grid h3 {
  margin: 15px 0 5px;
  font-size: 23px;
}

.process-grid p {
  color: var(--muted);
  font-size: 11px;
}


/* CONTACT */

.contact-section {
  padding: 110px 0;
  color: white;
  background: var(--olive);
}

.contact-section h2 {
  color: white;
}

.contact-section em {
  color: var(--gold);
}

.contact-section p:not(.eyebrow) {
  max-width: 620px;
  color: #e7e9e0;
  font-size: 15px;
}

.contact-grid {
  align-items: center;
}

.contact-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 25px;
  background: rgba(255,255,255,.08);
}

.contact-card small {
  display: block;
  margin-bottom: 4px;
  color: #e0e4da;
  font-size: 8px;
  letter-spacing: 2px;
}

.contact-card a,
.contact-card span {
  display: block;
  color: white;
  font-size: 15px;
}

.contact-card hr {
  margin: 18px 0;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.16);
}


/* FOOTER */

footer {
  padding: 45px 0 25px;
  color: #d9c9cd;
  background: var(--wine-deep);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  color: white;
}

.footer-message {
  max-width: 550px;
  text-align: right;
}

.footer-message strong {
  color: white;
  font: 24px/1.35 var(--serif);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: white;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

  .navigation {
    display: none;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 20px;
    background: var(--paper);
    box-shadow: 0 25px 60px rgba(40,10,20,.15);
  }

  .navigation.active {
    display: flex;
  }

  .navigation a {
    text-align: center;
    padding: 13px;
  }

  .navigation .nav-button {
    margin: 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 800px;
  }

  .hero-visual {
    width: 100%;
    max-width: 760px;
    margin: auto;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article {
    border-bottom: 1px solid var(--line);
  }
}


@media (max-width: 680px) {

  .container {
    width: calc(100% - 28px);
  }

  .section,
  .detail-section,
  .process-section,
  .fact-section,
  .contact-section,
  .dark-section {
    padding: 75px 0;
  }

  h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  h2 {
    font-size: 39px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 70px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    height: 410px;
  }

  .hero-main-image {
    width: 78%;
  }

  .hero-secondary-image {
    width: 42%;
    height: 39%;
    border-width: 5px;
  }

  .hero-center {
    left: 38%;
    top: 39%;
    transform: scale(.9);
  }

  .health-circle {
    transform: scale(.82);
  }

  .social {
    left: 15%;
  }

  .mental {
    left: -1%;
  }

  .physical {
    right: -1%;
  }

  .visual-label {
    right: 0;
    font-size: 12px;
  }

  .pillars,
  .service-grid,
  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .recognition-grid a {
    grid-template-columns: 40px 1fr auto;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-message {
    text-align: left;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}


@media (max-width: 430px) {

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 35px;
  }

  .hero-visual {
    height: 350px;
  }

  .hero-center {
    left: 34%;
    top: 38%;
    transform: scale(.72);
  }

  .health-circle {
    transform: scale(.68);
  }

  .social {
    left: 10%;
    top: 30px;
  }

  .mental {
    bottom: 42px;
  }

  .physical {
    bottom: 0;
  }

  .visual-label {
    display: none;
  }
}