/* =========================
   GLOBAL
========================= */

:root {
    --cream: #f5f2eb;
    --cream-light: #faf8f3;
    --green: #607962;
    --green-dark: #304236;
    --green-darker: #25342c;
    --text: #282d2a;
    --muted: #5c625e;
  }
  
  * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
  }
  
  img {
    width: 100%;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    width: min(1160px, calc(100% - 48px));
    margin-inline: auto;
  }
  
  
  /* =========================
     BUTTONS
  ========================= */
  
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    min-width: 190px;
    min-height: 52px;
  
    padding: 12px 30px;
  
    border-radius: 40px;
  
    font-size: 14px;
    font-weight: 500;
  
    transition:
      background-color .2s ease,
      transform .2s ease,
      box-shadow .2s ease;
  }
  
  .button:hover {
    transform: translateY(-2px);
  }
  
  .button-green {
    color: white;
    background: var(--green);
  }
  
  .button-green:hover {
    background: #526c56;
    box-shadow: 0 8px 25px rgb(0 0 0 / 15%);
  }
  
  .button-dark {
    color: white;
    background: var(--green-darker);
  }
  
  .button-dark:hover {
    background: #18231d;
  }
  
  
  /* =========================
     LOGO
  ========================= */
  
  .logo {
    display: flex;
    align-items: center;
    gap: 15px;
  
    color: var(--green-darker);
  }
  
  .logo-icon {
    font-size: 45px;
    line-height: 1;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
  }
  
  .logo-script {
    font-family: "Caveat", cursive;
    font-size: 48px;
    line-height: .8;
    font-weight: 500;
  }
  
  .logo-subtitle {
    margin-top: 10px;
  
    font-size: 13px;
    letter-spacing: 6px;
  }
  
  
  /* =========================
     HEADER
  ========================= */
  
  .site-header {
    height: 100px;
  
    display: flex;
    align-items: center;
  
    position: relative;
    z-index: 50;
  
    background: var(--cream-light);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
  
    font-size: 13px;
  }
  
  .main-nav > a:not(.nav-button) {
    position: relative;
    padding: 12px 0;
  }
  
  .main-nav > a:not(.nav-button)::after {
    content: "";
  
    position: absolute;
  
    left: 50%;
    bottom: 2px;
  
    width: 0;
    height: 1px;
  
    background: var(--green-dark);
  
    transition: .2s ease;
  
    transform: translateX(-50%);
  }
  
  .main-nav > a:not(.nav-button):hover::after,
  .main-nav > a.active::after {
    width: 35px;
  }
  
  .nav-button {
    padding: 13px 26px;
  
    color: white;
  
    border-radius: 50px;
  
    background: linear-gradient(
      135deg,
      #657e67,
      #4f6753
    );
  }
  
  .mobile-menu-button {
    display: none;
  
    border: 0;
    background: transparent;
  
    color: var(--green-dark);
  
    font-size: 25px;
  
    cursor: pointer;
  }
  
  
  /* =========================
     HERO
  ========================= */
  
  .hero {
    min-height: 495px;
  
    position: relative;
  
    display: flex;
    align-items: center;
  
    color: white;
  
    background:
      url("images/hero-massage-room.png")
      center 55% / cover no-repeat;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
  
    background:
      linear-gradient(
        90deg,
        rgb(15 25 18 / 66%) 0%,
        rgb(20 23 20 / 33%) 45%,
        rgb(20 20 20 / 10%) 100%
      );
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  
    padding-left: 45px;
  }
  
  .hero h1 {
    font-family: "Caveat", cursive;
    font-size: clamp(70px, 8vw, 105px);
    font-weight: 400;
  
    line-height: .85;
  }
  
  .hero-brand {
    margin: 12px 0 20px 88px;
  
    font-size: 24px;
    letter-spacing: 9px;
  }
  
  .hero h2 {
    max-width: 640px;
  
    margin-bottom: 12px;
  
    font-size: 20px;
    font-weight: 400;
  }
  
  .hero p {
    max-width: 450px;
  
    margin-bottom: 28px;
  
    font-size: 15px;
  }
  
  
  /* =========================
     FEATURES
  ========================= */
  
  .features {
    padding: 30px 0 40px;
  
    background: var(--cream-light);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }
  
  .feature {
    text-align: center;
  }
  
  .feature-icon {
    height: 65px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    color: var(--green-dark);
  
    font-size: 39px;
  }
  
  .feature h3 {
    margin: 5px 0 9px;
  
    font-size: 15px;
    font-weight: 500;
  }
  
  .feature p {
    font-size: 13px;
  }
  
  
  /* =========================
     ABOUT
  ========================= */
  
  .about-section {
    min-height: 380px;
  
    display: grid;
    grid-template-columns: 41% 59%;
  }
  
  .about-image {
    min-height: 380px;
  
    background:
      url("images/about-towels.png")
      center / cover no-repeat;
  }
  
  .about-content {
    display: flex;
    align-items: center;
  
    background:
      linear-gradient(
        110deg,
        #edf0e8,
        #dce3d9
      );
  }
  
  .content-inner {
    max-width: 700px;
  
    padding: 45px 60px;
  }
  
  .script-heading {
    color: var(--green-darker);
  
    font-family: "Caveat", cursive;
    font-size: 43px;
    font-weight: 500;
    line-height: 1.1;
  }
  
  .heading-line {
    width: 34px;
    height: 1px;
  
    margin: 18px 0 22px;
  
    background: var(--green-dark);
  }
  
  .about-content p {
    margin-bottom: 22px;
  
    font-size: 14px;
    line-height: 1.7;
  }
  
  
  /* =========================
     SERVICES
  ========================= */
  
  .services-section {
    padding: 42px 0;
  
    background: #f7f4ed;
  }
  
  .services-grid {
    display: grid;
  
    grid-template-columns:
      minmax(260px, 1.15fr)
      minmax(260px, 1fr)
      280px;
  
    gap: 55px;
  
    align-items: center;
  }
  
  .service-description {
    padding-right: 15px;
  }
  
  .service-description h3,
  .service-benefits h3 {
    margin-bottom: 12px;
  
    font-size: 14px;
    font-weight: 500;
  }
  
  .service-description p {
    max-width: 400px;
  
    margin-bottom: 23px;
  
    font-size: 13px;
  }
  
  .service-benefits {
    padding-left: 45px;
  
    border-left: 1px solid #c6c7c1;
  }
  
  .service-benefits ul {
    list-style: none;
  }
  
  .service-benefits li {
    display: flex;
    gap: 12px;
    align-items: center;
  
    margin: 10px 0;
  
    font-size: 13px;
  }
  
  .service-benefits i {
    color: var(--green-darker);
  }
  
  .services-image {
    height: 250px;
  
    overflow: hidden;
  }
  
  .services-image img {
    height: 100%;
    object-fit: cover;
  }
  
  
  /* =========================
     CTA
  ========================= */
  
  .cta-section {
    min-height: 175px;
  
    position: relative;
  
    display: flex;
    align-items: center;
  
    text-align: center;
    color: white;
  
    background:
      url("images/forest.png")
      center / cover no-repeat;
  }
  
  .cta-overlay {
    position: absolute;
    inset: 0;
  
    background:
      linear-gradient(
        rgb(38 57 46 / 78%),
        rgb(30 52 42 / 90%)
      );
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
  }
  
  .cta-content h2 {
    font-family: "Caveat", cursive;
    font-size: 42px;
    font-weight: 400;
  
    line-height: 1;
  }
  
  .cta-content p {
    margin: 10px 0 17px;
  
    font-size: 13px;
  }
  
  .cta-content .button {
    min-height: 46px;
  }
  
  
  /* =========================
     FOOTER
  ========================= */
  
  .site-footer {
    color: white;
  
    background:
      linear-gradient(
        90deg,
        #273d31,
        #21362d
      );
  }
  
  .footer-main {
    min-height: 140px;
  
    display: grid;
    grid-template-columns: 1fr 1.7fr 1fr;
  
    align-items: center;
  }
  
  .logo-light {
    color: white;
  }
  
  .logo-light .logo-script {
    font-size: 39px;
  }
  
  .logo-light .logo-subtitle {
    font-size: 9px;
  }
  
  .logo-light .logo-icon {
    font-size: 38px;
  }
  
  .footer-nav {
    min-height: 52px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
  
    border-left: 1px solid rgb(255 255 255 / 40%);
    border-right: 1px solid rgb(255 255 255 / 40%);
  }
  
  .footer-nav a {
    font-size: 10px;
  
    transition: opacity .2s ease;
  }
  
  .footer-nav a:hover {
    opacity: .65;
  }
  
  .footer-location {
    display: flex;
    gap: 12px;
  
    padding-left: 60px;
  
    font-size: 9px;
    line-height: 1.5;
  }
  
  .footer-location > i {
    margin-top: 5px;
  
    font-size: 25px;
  }
  
  .footer-bottom {
    padding: 4px 0 24px;
  
    text-align: center;
  
    color: rgb(255 255 255 / 75%);
  
    font-size: 9px;
  }
  
  .footer-bottom span {
    margin: 0 8px;
  }
  
  
  /* =========================
     TABLET
  ========================= */
  
  @media (max-width: 950px) {
  
    .site-header {
      height: 85px;
    }
  
    .logo-script {
      font-size: 38px;
    }
  
    .logo-subtitle {
      font-size: 10px;
    }
  
    .logo-icon {
      font-size: 35px;
    }
  
    .main-nav {
      gap: 18px;
    }
  
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
  
      row-gap: 40px;
    }
  
    .services-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .services-image {
      grid-column: 1 / -1;
  
      width: 100%;
      height: 300px;
    }
  
    .footer-main {
      grid-template-columns: 1fr;
  
      gap: 25px;
  
      padding: 35px 0;
  
      text-align: center;
    }
  
    .footer-logo {
      display: flex;
      justify-content: center;
    }
  
    .footer-nav {
      border: 0;
    }
  
    .footer-location {
      justify-content: center;
  
      padding-left: 0;
  
      text-align: left;
    }
  }
  
  
  /* =========================
     MOBILE
  ========================= */
  
  @media (max-width: 700px) {
  
    .container {
      width: min(100% - 32px, 1160px);
    }
  
    .mobile-menu-button {
      display: block;
    }
  
    .main-nav {
      display: none;
  
      position: absolute;
  
      top: 85px;
      left: 0;
      right: 0;
  
      padding: 25px;
  
      flex-direction: column;
  
      background: var(--cream-light);
  
      box-shadow: 0 15px 20px rgb(0 0 0 / 10%);
    }
  
    .main-nav.open {
      display: flex;
    }
  
    .hero {
      min-height: 570px;
  
      background-position: 60% center;
    }
  
    .hero-overlay {
      background:
        linear-gradient(
          90deg,
          rgb(10 19 13 / 82%),
          rgb(10 15 12 / 44%)
        );
    }
  
    .hero-content {
      padding-left: 5px;
    }
  
    .hero h1 {
      font-size: 76px;
    }
  
    .hero-brand {
      margin-left: 25px;
  
      font-size: 17px;
      letter-spacing: 6px;
    }
  
    .hero h2 {
      font-size: 18px;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .feature {
      max-width: 350px;
  
      margin-inline: auto;
    }
  
    .about-section {
      grid-template-columns: 1fr;
    }
  
    .about-image {
      min-height: 350px;
    }
  
    .content-inner {
      padding: 45px 28px;
    }
  
    .script-heading {
      font-size: 38px;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
  
      gap: 35px;
    }
  
    .service-benefits {
      padding: 25px 0 0;
  
      border-left: 0;
      border-top: 1px solid #c6c7c1;
    }
  
    .services-image {
      grid-column: auto;
  
      height: 280px;
    }
  
    .cta-section {
      min-height: 220px;
    }
  
    .footer-nav {
      flex-wrap: wrap;
  
      gap: 15px 25px;
    }
  
  }
  
  
  /* =========================
     VERY SMALL SCREENS
  ========================= */
  
  @media (max-width: 400px) {
  
    .logo-script {
      font-size: 31px;
    }
  
    .logo-subtitle {
      letter-spacing: 3px;
    }
  
    .logo-icon {
      font-size: 30px;
    }
  
    .hero h1 {
      font-size: 64px;
    }
  
    .hero-brand {
      font-size: 14px;
    }
  
  }