/* =========================================================
  BALANCE — YOGA & PILATES
========================================================= */

:root {
 --bg: #f7f3ed;
 --cream: #fbf8f3;
 --cream-2: #eee7dd;
 --sage: #767762;
 --sage-dark: #565847;
 --gold: #a9875f;
 --brown: #514438;
 --dark: #29261f;
 --text: #5f584f;
 --muted: #857b70;
 --white: #ffffff;
 --line: rgba(88, 76, 62, 0.14);

 --shadow:
   0 30px 80px rgba(69, 57, 45, 0.11);
}


/* =========================================================
  RESET
========================================================= */

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

html {
 scroll-behavior: smooth;
}

body {
 font-family: "Inter", sans-serif;
 background: var(--bg);
 color: var(--text);
 overflow-x: hidden;
}

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

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

button {
 font: inherit;
}

h1,
h2,
h3 {
 font-family: "Cormorant Garamond", serif;
 font-weight: 500;
 color: var(--dark);
}


/* =========================================================
  HEADER
========================================================= */

.header {
 position: sticky;
 top: 0;
 z-index: 100;

 height: 92px;

 padding: 0 6%;

 display: flex;
 align-items: center;
 justify-content: space-between;

 background: rgba(250, 247, 241, 0.94);

 border-bottom: 1px solid var(--line);

 backdrop-filter: blur(18px);
}

.brand {
 width: 150px;
 height: 65px;

 overflow: hidden;
}

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


.desktop-nav {
 display: flex;
 align-items: center;
 gap: 34px;
}

.desktop-nav a {
 font-size: 12px;
 font-weight: 500;
 letter-spacing: 0.02em;
}

.desktop-nav a:hover {
 color: var(--gold);
}


.header-btn,
.primary-btn {
 min-height: 48px;

 padding: 0 28px;

 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 16px;

 background: var(--sage);
 color: white;

 font-size: 11px;
 font-weight: 600;
 letter-spacing: 0.12em;

 border: 1px solid var(--sage);

 transition: 0.3s ease;
}

.header-btn:hover,
.primary-btn:hover {
 background: var(--sage-dark);
 border-color: var(--sage-dark);
 transform: translateY(-2px);
}


.menu-toggle {
 display: none;

 width: 42px;
 height: 42px;

 border: 0;
 background: transparent;
}

.menu-toggle span {
 width: 24px;
 height: 1px;

 display: block;

 margin: 6px auto;

 background: var(--dark);
}


.mobile-menu {
 display: none;
}


/* =========================================================
  HERO
========================================================= */

.hero {
 min-height: 720px;

 display: grid;
 grid-template-columns: 44% 56%;

 background: var(--cream);
}

.hero-copy {
 padding: 100px 9% 55px 14%;

 display: flex;
 flex-direction: column;
 justify-content: center;
}

.eyebrow,
.section-label {
 margin-bottom: 22px;

 color: var(--gold);

 font-size: 10px;
 font-weight: 600;
 letter-spacing: 0.38em;
}

.hero h1 {
 max-width: 540px;

 font-size: clamp(58px, 6vw, 92px);
 line-height: 0.88;
 letter-spacing: -0.04em;
}

.hero h1 em,
section h2 em {
 font-weight: 400;
 color: var(--sage);
}

.hero-text {
 max-width: 480px;

 margin-top: 32px;

 font-size: 15px;
 line-height: 1.8;
}

.hero-actions {
 margin-top: 36px;

 display: flex;
 align-items: center;
 gap: 32px;
}

.text-btn {
 display: inline-flex;
 align-items: center;
 gap: 12px;

 padding-bottom: 6px;

 border-bottom: 1px solid var(--gold);

 font-size: 10px;
 font-weight: 600;
 letter-spacing: 0.11em;
}


.hero-features {
 margin-top: 58px;

 display: flex;

 border-top: 1px solid var(--line);
}

.hero-feature {
 flex: 1;

 padding: 25px 16px 5px;

 text-align: center;

 border-right: 1px solid var(--line);
}

.hero-feature:last-child {
 border-right: 0;
}

.feature-symbol {
 display: block;

 margin-bottom: 10px;

 color: var(--gold);

 font-family: "Cormorant Garamond", serif;
 font-size: 32px;
}

.hero-feature p {
 font-size: 9px;
 line-height: 1.5;
 letter-spacing: 0.12em;
 text-transform: uppercase;
}


.hero-visual {
 position: relative;

 min-height: 720px;

 overflow: hidden;
}

.hero-visual img {
 height: 100%;
 object-position: center;
}

.hero-visual::after {
 content: "";

 position: absolute;
 inset: 0;

 background:
   linear-gradient(
     90deg,
     rgba(247,243,237,0.05),
     transparent 30%
   );
}

.hero-script {
 position: absolute;
 right: 8%;
 top: 35%;
 z-index: 2;

 color: white;

 font-family: "Cormorant Garamond", serif;
 font-style: italic;

 font-size: 31px;
 line-height: 1.15;
}


/* =========================================================
  INTRO
========================================================= */

.intro {
 max-width: 1500px;

 margin: 0 auto;

 padding: 130px 7%;

 display: grid;
 grid-template-columns: 1.05fr 0.95fr;
 gap: 110px;

 align-items: center;
}


.intro-image {
 height: 650px;

 overflow: hidden;

 border-radius: 48% 48% 4px 4px;
}

.intro-image img {
 height: 100%;
}


.intro-content h2,
.services h2,
.studio h2,
.testimonials h2,
.booking h2 {
 font-size: clamp(48px, 5vw, 74px);
 line-height: 0.97;
 letter-spacing: -0.025em;
}


.intro-content > p:not(.section-label) {
 max-width: 570px;

 margin: 30px 0 35px;

 line-height: 1.8;
 font-size: 15px;
}


/* =========================================================
  SERVICES
========================================================= */

.services {
 padding: 120px 6%;

 background: #fffdf9;
}


.section-top {
 max-width: 1500px;

 margin: 0 auto 60px;

 display: flex;
 align-items: flex-end;
 justify-content: space-between;
}


.services-grid {
 max-width: 1500px;

 margin: auto;

 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 22px;
}


.service-card img {
 height: 330px;

 margin-bottom: 24px;

 transition: transform 0.5s ease;
}

.service-card {
 overflow: hidden;
}

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

.service-card > span {
 display: block;

 margin-bottom: 10px;

 color: var(--gold);

 font-size: 10px;
 letter-spacing: 0.15em;
}


.service-card h3 {
 margin-bottom: 10px;

 font-size: 27px;
}


.service-card p {
 min-height: 55px;

 font-size: 13px;
 line-height: 1.6;
}


.service-card a {
 display: inline-block;

 margin-top: 20px;

 color: var(--gold);

 font-size: 9px;
 font-weight: 600;
 letter-spacing: 0.14em;
}


/* =========================================================
  QUOTE
========================================================= */

.quote-block {
 min-height: 600px;

 display: grid;
 grid-template-columns: 58% 42%;

 background: var(--sage-dark);
}


.quote-photo {
 height: 600px;
}

.quote-photo img {
 height: 100%;
}


.quote-content {
 padding: 80px;

 display: flex;
 flex-direction: column;
 justify-content: center;

 color: white;
}

.quote-content p {
 max-width: 460px;

 font-family: "Cormorant Garamond", serif;

 font-size: 47px;
 line-height: 1.04;
}

.quote-content p em {
 color: #dad1bc;
}

.quote-content span {
 margin-top: 40px;

 font-size: 9px;
 letter-spacing: 0.4em;
}


/* =========================================================
  STUDIO
========================================================= */

.studio {
 max-width: 1500px;

 margin: auto;

 padding: 140px 7%;

 display: grid;
 grid-template-columns: 0.9fr 1.1fr;
 gap: 90px;

 align-items: center;
}


.studio-copy > p:not(.section-label) {
 max-width: 520px;

 margin-top: 30px;

 line-height: 1.8;
}


.studio-values {
 margin-top: 45px;

 display: grid;
 grid-template-columns: 1fr 1fr;
}


.studio-values div {
 padding: 25px 15px 25px 0;

 border-top: 1px solid var(--line);
}


.studio-values strong {
 display: block;

 margin-bottom: 6px;

 color: var(--gold);

 font-family: "Cormorant Garamond", serif;
 font-size: 28px;
 font-weight: 400;
}

.studio-values span {
 font-size: 11px;
 text-transform: uppercase;
 letter-spacing: 0.06em;
}


.studio-collage {
 position: relative;

 min-height: 680px;
}


.studio-large {
 width: 82%;
 height: 620px;

 margin-left: auto;

 object-fit: cover;
}


.studio-small {
 position: absolute;

 left: 0;
 bottom: -30px;

 width: 45%;
 height: 300px;

 object-fit: cover;

 border: 12px solid var(--bg);

 box-shadow: var(--shadow);
}


/* =========================================================
  WELLNESS STRIP
========================================================= */

.wellness-strip {
 min-height: 500px;

 display: grid;
 grid-template-columns: 1fr 0.75fr 1fr;

 background: var(--cream-2);
}


.wellness-photo img {
 height: 500px;
}


.wellness-copy {
 padding: 50px;

 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;

 text-align: center;
}


.wellness-copy span {
 margin-bottom: 20px;

 color: var(--gold);

 font-size: 9px;
 letter-spacing: 0.35em;
}


.wellness-copy h2 {
 font-size: 55px;
 line-height: 0.95;
}


/* =========================================================
  TESTIMONIALS
========================================================= */

.testimonials {
 padding: 130px 7%;

 background: #fffdf9;
}


.testimonials > h2 {
 margin-bottom: 50px;
}


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


.testimonial-grid article {
 padding: 40px;

 border: 1px solid var(--line);

 background: white;
}


.stars {
 margin-bottom: 22px;

 color: var(--gold);

 letter-spacing: 0.15em;
}


.testimonial-grid p {
 min-height: 95px;

 font-family: "Cormorant Garamond", serif;
 font-size: 22px;
 line-height: 1.35;
}


.testimonial-grid span {
 display: block;

 margin-top: 25px;

 font-size: 11px;
 color: var(--muted);
}


/* =========================================================
  BOOKING
========================================================= */

.booking {
 min-height: 470px;

 display: grid;
 grid-template-columns: 1fr 1.15fr 0.8fr;

 background: var(--cream-2);
}


.booking-decor img {
 height: 470px;
}


.booking-content,
.booking-contact {
 padding: 65px;

 display: flex;
 flex-direction: column;
 justify-content: center;
}


.booking-content > p:not(.section-label) {
 max-width: 500px;

 margin: 24px 0 30px;

 line-height: 1.7;
}


.booking-content .primary-btn {
 align-self: flex-start;
}


.booking-contact {
 background: rgba(255,255,255,0.35);
}


.booking-contact p {
 margin: 12px 0;

 font-size: 13px;
 line-height: 1.8;
}


.booking-contact strong {
 color: var(--dark);

 font-size: 10px;
 letter-spacing: 0.14em;
 text-transform: uppercase;
}


/* =========================================================
  FOOTER
========================================================= */

.footer {
 padding: 55px 7% 25px;

 background: #f8f5ef;
}


.footer-top {
 padding-bottom: 35px;

 display: flex;
 align-items: center;
 justify-content: space-between;

 border-bottom: 1px solid var(--line);
}


.footer-brand {
 width: 140px;
 height: 70px;

 overflow: hidden;
}

.footer-brand img {
 height: 100%;
 object-fit: cover;
}


.footer-nav,
.socials {
 display: flex;
 gap: 25px;
}


.footer-nav a,
.socials a {
 font-size: 11px;
}


.socials a {
 font-weight: 600;
}


.footer-bottom {
 padding-top: 25px;

 display: flex;
 justify-content: space-between;

 color: var(--muted);

 font-size: 9px;
}


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


/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

 .desktop-nav,
 .header-btn {
   display: none;
 }

 .menu-toggle {
   display: block;
 }


 .mobile-menu {
   position: fixed;
   top: 92px;
   left: 0;
   right: 0;

   z-index: 99;

   padding: 30px 6%;

   display: flex;
   flex-direction: column;
   gap: 20px;

   background: var(--cream);

   transform: translateY(-140%);
   opacity: 0;

   transition: 0.35s ease;
 }

 .mobile-menu.open {
   transform: translateY(0);
   opacity: 1;
 }

 .mobile-menu a {
   padding-bottom: 15px;

   border-bottom: 1px solid var(--line);

   font-family: "Cormorant Garamond", serif;
   font-size: 25px;
 }


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

 .hero-copy {
   padding: 90px 8% 60px;
 }

 .hero-visual {
   min-height: 600px;
 }


 .intro,
 .studio {
   grid-template-columns: 1fr;
 }


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


 .quote-block {
   grid-template-columns: 1fr;
 }


 .wellness-strip {
   grid-template-columns: 1fr 1fr;
 }

 .wellness-copy {
   grid-column: 1 / -1;
   grid-row: 1;
   min-height: 300px;
 }


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

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

}


@media (max-width: 720px) {

 .header {
   height: 76px;
   padding: 0 22px;
 }

 .brand {
   width: 115px;
   height: 55px;
 }

 .mobile-menu {
   top: 76px;
 }


 .hero-copy {
   padding: 70px 25px 45px;
 }

 .hero h1 {
   font-size: 59px;
 }

 .hero-actions {
   align-items: flex-start;
   flex-direction: column;
 }

 .hero-features {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
 }

 .hero-feature {
   padding-left: 5px;
   padding-right: 5px;
 }

 .hero-visual {
   min-height: 510px;
 }


 .intro,
 .studio,
 .services,
 .testimonials {
   padding: 85px 25px;
 }


 .intro-image {
   height: 500px;
 }


 .section-top {
   align-items: flex-start;
   flex-direction: column;
   gap: 30px;
 }


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

 .service-card img {
   height: 430px;
 }


 .quote-photo {
   height: 470px;
 }

 .quote-content {
   padding: 60px 25px;
 }

 .quote-content p {
   font-size: 38px;
 }


 .studio {
   gap: 55px;
 }

 .studio-collage {
   min-height: 550px;
 }

 .studio-large {
   width: 90%;
   height: 500px;
 }

 .studio-small {
   width: 55%;
   height: 220px;
 }


 .wellness-strip {
   grid-template-columns: 1fr;
 }

 .wellness-photo img {
   height: 400px;
 }


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


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

 .booking-decor img {
   height: 420px;
 }

 .booking-content,
 .booking-contact {
   padding: 60px 25px;
 }


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

 .footer-nav {
   flex-wrap: wrap;
 }

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

}


@media (max-width: 450px) {

 .hero h1 {
   font-size: 51px;
 }

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

 .hero-feature {
   border-right: 0;
   border-bottom: 1px solid var(--line);
 }

 .intro-content h2,
 .services h2,
 .studio h2,
 .testimonials h2,
 .booking h2 {
   font-size: 45px;
 }

 .service-card img {
   height: 360px;
 }

 .studio-values {
   grid-template-columns: 1fr;
 }

}