:root{
  --white: #ffffff;
  --bg-page: #eef1e8;
  --header-bg: rgba(255,255,255,0.96);

  --glass: rgba(248, 241, 233, 0.54);
  --glass-line: rgba(255, 250, 244, 0.42);

  --sage: #8d9a78;
  --sage-dark: #7b8868;
  --sage-soft: #98a487;

  --text-main: #8d7866;
  --text-soft: #9b8776;
  --text-light: #f7efe7;
  --btn-text: #8f7a68;
  --btn-text-hover: #7f6b59;

  --shadow-soft: 0 12px 35px rgba(109, 89, 68, 0.06);
  --shadow-btn: 0 10px 24px rgba(120, 95, 75, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
}

*{
  box-sizing: border-box;
}

@font-face {
  font-family: 'RusticRoadway';
  src: url('../fonts/RusticRoadway.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

html,
body{
  margin: 0;
  padding: 0;
  background: var(--bg-page);
  color: var(--text-main);
  font-family: 'Montserrat', sans-serif;
}

img{
  max-width: 100%;
  display: block;
}

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

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

.bootstrap-header{
  z-index: 1030;
}

.bootstrap-header .navbar{
  min-height: 72px;
  background: var(--header-bg) !important;
  border-bottom: 1px solid rgba(47,42,38,0.06);
  box-shadow: 0 6px 20px rgba(47,42,38,0.04);
  padding-top: 0;
  padding-bottom: 0;
}

.bootstrap-header .navbar-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 28px;
}

.bootstrap-header .navbar-brand img{
  height: 46px;
  width: auto;
  object-fit: contain;
}

.bootstrap-header .brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.bootstrap-header .brand-name{
  font-family: 'RusticRoadway', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--sage-soft);
  line-height: 1;
}

.bootstrap-header .brand-sub{
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: #8d857d;
}

.bootstrap-header .navbar-nav{
  gap: 10px;
}

.bootstrap-header .nav-link{
  padding: 8px 10px !important;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sage-soft) !important;
  border-radius: 10px;
  background: transparent !important;
  transition: 0.2s ease;
}

.bootstrap-header .nav-link:hover,
.bootstrap-header .nav-link:focus,
.bootstrap-header .nav-link.active,
.bootstrap-header .dropdown-toggle:hover{
  color: var(--sage-dark) !important;
  background: transparent !important;
}

.bootstrap-header .dropdown-menu{
  border: 1px solid rgba(47,42,38,0.08);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 10px 25px rgba(47,42,38,0.08);
}

.bootstrap-header .dropdown-item{
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 500;
  color: var(--text-main);
}

.bootstrap-header .dropdown-item:hover{
  background: rgba(141,154,120,0.10);
  color: var(--sage-dark);
}

.bootstrap-header .navbar-toggler{
  border: 1px solid rgba(47,42,38,0.10);
  border-radius: 12px;
  padding: 8px 10px;
  box-shadow: none !important;
}

.bootstrap-header .navbar-toggler:focus{
  box-shadow: none;
}

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

.split-hero{
  padding: 0;
}

.hero-modern{
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
}

.hero-modern__bg{
  position: absolute;
  inset: 0;
  background: url("../img/studio.jpg") center center / cover no-repeat;
}

.hero-modern__shade{
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-modern__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - 72px);
  padding: 36px 42px;
  display: flex;
  align-items: center;
}

.hero-split-boxes{
  width: 100%;
  min-height: calc(100vh - 140px);
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.hero-glass-box{
  border-radius: var(--radius-xl);
  padding: 42px 34px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-glass-box--left{
  width: 70%;
}

.hero-glass-box--right{
  width: 30%;
}

.hero-kicker{
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9b8a79;
  text-shadow: none;
  opacity: 1;
}

.hero-modern__title{
  font-family: 'RusticRoadway', serif;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 400;
  margin: 0 0 22px;
  color: var(--sage);
  text-shadow: 0 2px 10px rgba(255,255,255,0.18);
}

.hero-side-title{
  font-family: 'RusticRoadway', serif;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 18px;
  color: var(--sage);
  text-shadow: 0 2px 10px rgba(255,255,255,0.18);
}

.hero-modern__quote{
  max-width: 780px;
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.8;
  font-family: 'Petit Formal Script', serif;
  font-family:serif!important;
  color: var(--text-main);
  text-shadow: 0 1px 2px rgba(255,255,255,0.14);
}

.hero-side-text{
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-main);
  text-shadow: 0 1px 2px rgba(255,255,255,0.14);font-family:serif!important;
}

.hero-modern__author{
  margin-bottom: 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  text-shadow: 0 1px 1px rgba(255,255,255,0.16);
}

/* =========================
   BUTTONS
========================= */

.hero-modern__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-modern__actions--stack{
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.btn-modern{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(120, 95, 75, 0.08);
}

.btn-modern--primary{
  background: linear-gradient(180deg, #fffaf5 0%, #f4ebe2 100%);
  color: var(--btn-text);
  border: 1px solid rgba(255, 248, 242, 0.95);
  box-shadow:
    var(--shadow-btn),
    inset 0 1px 0 rgba(255,255,255,0.70);
}

.btn-modern--primary:hover{
  background: linear-gradient(180deg, #ffffff 0%, #f6eee6 100%);
  color: var(--btn-text-hover);
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(120, 95, 75, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.75);
}

.btn-modern--light{
  background: rgba(245, 236, 227, 0.34);
  color: #fffaf6;
  border: 1px solid rgba(255, 250, 245, 0.55);
  box-shadow:
    0 8px 20px rgba(120, 95, 75, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.26);
  text-shadow: 0 1px 2px rgba(120,95,75,0.12);
}

.btn-modern--light:hover{
  background: rgba(248, 240, 232, 0.46);
  color: #ffffff;
  border: 1px solid rgba(255, 252, 248, 0.68);
  transform: translateY(-1px);
}

.hero-glass-box--right .btn-modern--light{
  background: rgba(244, 235, 225, 0.42);
  border: 1px solid rgba(255, 249, 243, 0.62);
  color: #fffaf6;
}

.hero-glass-box--right .btn-modern--primary{
  background: linear-gradient(180deg, #fffaf5 0%, #f3e8dd 100%);
  color: #8e7864;
}

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

@media (max-width: 991.98px){
  .bootstrap-header .navbar{
    min-height: 74px;
  }

  .bootstrap-header .navbar-brand img{
    height: 44px;
  }

  .bootstrap-header .brand-name{
    font-size: 1.8rem;
  }

  .bootstrap-header .brand-sub{
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .bootstrap-header .navbar-collapse{
    margin-top: 14px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(47,42,38,0.06);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 14px 28px rgba(47,42,38,0.08);
  }

  .bootstrap-header .navbar-nav{
    align-items: stretch !important;
    gap: 4px;
  }

  .bootstrap-header .nav-link{
    border-radius: 12px;
  }

  .bootstrap-header .dropdown-menu{
    border: 0;
    box-shadow: none;
    padding: 4px 0 0 12px;
    background: transparent;
  }

  .bootstrap-header .dropdown-item{
    padding: 10px 12px;
  }

  .hero-modern{
    min-height: auto;
  }

  .hero-modern__inner{
    min-height: calc(100vh - 74px);
    padding: 20px 16px;
  }

  .hero-split-boxes{
    min-height: auto;
    flex-direction: column;
    gap: 18px;
  }

  .hero-glass-box--left,
  .hero-glass-box--right{
    width: 100%;
  }

  .hero-glass-box{
    padding: 28px 22px;
    border-radius: var(--radius-lg);
  }

  .hero-modern__title{
    font-size: 46px;
  }

  .hero-side-title{
    font-size: 36px;
  }

  .hero-modern__quote,
  .hero-side-text{
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-modern__actions--stack{
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
}.btn-modern{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-modern--primary{
  background: #8f9d78;
  color: #ffffff;
  border: 1px solid #8f9d78;
  box-shadow: 0 10px 24px rgba(106, 120, 84, 0.24);
}

.btn-modern--primary:hover{
  background: #7f8d69;
  color: #ffffff;
  border-color: #7f8d69;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(106, 120, 84, 0.30);
}

.btn-modern--light{
  background: rgba(255,255,255,0.72);
  color: #8a7562;
  border: 1px solid rgba(138,117,98,0.18);
  box-shadow: 0 8px 20px rgba(120, 95, 75, 0.10);
  text-shadow: none;
}

.btn-modern--light:hover{
  background: #ffffff;
  color: #7b6756;
  border-color: rgba(123,103,86,0.24);
  transform: translateY(-1px);
}.hero-glass-box--right .btn-modern--primary{
  background: #8f9d78;
  color: #ffffff;
  border-color: #8f9d78;
}

.hero-glass-box--right .btn-modern--light{
  background: rgba(255,255,255,0.82);
  color: #866f5c;
  border-color: rgba(134,111,92,0.16);
}/* =========================
   BENEFITS SECTION
========================= */

.benefits-section{
  position: relative;
  padding: 90px 0 100px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 35%),
    linear-gradient(180deg, #eef1e8 0%, #ece7de 100%);
  overflow: hidden;
}

.benefits-wrap{
  position: relative;
  padding-left: 42px;
  padding-right: 42px;
}

.section-intro{
  max-width: 860px;
  margin: 0 auto 48px;
}

.section-kicker{
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9b8a79;
}

.section-title{
  margin: 0 0 18px;
  font-family: "Petit Formal Script", cursive;
  font-size: 62px;
  line-height: 1;
  font-weight: 400;
  color: var(--sage);
}

.section-text{
  margin: 0 auto;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-main);
}

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

.benefit-card{
  position: relative;
  padding: 34px 28px 30px;
  border-radius: var(--radius-xl);
  background: rgba(248, 241, 233, 0.62);
  border: 1px solid rgba(255, 250, 244, 0.65);
  box-shadow:
    0 12px 35px rgba(109, 89, 68, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 260px;
}

.benefit-icon{
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(141,154,120,0.13);
  border: 1px solid rgba(141,154,120,0.16);
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.benefit-card h3{
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-main);
  font-family: 'Cormorant Garamond', serif;
}

.benefit-card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-soft);
}

.benefits-cta{
  margin-top: 8px;
}

.benefits-cta__box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 30px 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 14px 34px rgba(109, 89, 68, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.benefits-cta__content{
  max-width: 760px;
}

.benefits-cta__content h3{
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--sage);
  font-family: 'Cormorant Garamond', serif;
}

.benefits-cta__content p{
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-main);
}

.benefits-cta__actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 260px;
}

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

@media (max-width: 991.98px){
  .benefits-section{
    padding: 70px 0 80px;
  }

  .benefits-wrap{
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-title{
    font-size: 42px;
  }

  .section-text{
    font-size: 15px;
    line-height: 1.8;
  }

  .benefit-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-card{
    min-height: auto;
    padding: 28px 22px;
    border-radius: var(--radius-lg);
  }

  .benefits-cta__box{
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 22px;
    border-radius: var(--radius-lg);
  }

  .benefits-cta__content h3{
    font-size: 28px;
  }

  .benefits-cta__actions{
    min-width: 100%;
    justify-content: flex-start;
  }
}/* =========================
   BENEFITS SECTION - HERO ALÁ
========================= */

.benefits-section--soft{
  position: relative;
  padding: 110px 0 110px;
  background:
    linear-gradient(180deg, #edf0e7 0%, #ebe7df 52%, #e9e4db 100%);
  overflow: hidden;
}

.benefits-section__glow{
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.55;
}

.benefits-section__glow--left{
  top: 40px;
  left: -120px;
  width: 340px;
  height: 340px;
  background: rgba(255,255,255,0.34);
}

.benefits-section__glow--right{
  right: -120px;
  bottom: 30px;
  width: 320px;
  height: 320px;
  background: rgba(255, 248, 240, 0.28);
}

.benefits-wrap{
  position: relative;
  z-index: 2;
  padding-left: 42px;
  padding-right: 42px;
}

.section-intro--narrow{
  max-width: 980px;
  margin: 0 auto 54px;
}

.section-title--script{
  margin: 0 0 22px;
 font-family: 'Petit Formal Script', serif;
  font-size: 72px;
  line-height: 0.95;
  font-weight: 400;
  color: var(--sage);
  text-shadow: 0 2px 10px rgba(255,255,255,0.18);
}

.section-text--elegant{
  max-width: 900px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.9;
  color: var(--text-main);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.benefit-grid--soft{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card--glass{
  position: relative;
  min-height: 290px;
  padding: 42px 34px 34px;
  border-radius: 30px;
  background: rgba(248, 241, 233, 0.46);
  border: 1px solid rgba(255, 250, 244, 0.56);
  box-shadow:
    0 14px 35px rgba(109, 89, 68, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card--glass:hover{
  transform: translateY(-4px);
  box-shadow:
    0 20px 42px rgba(109, 89, 68, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.38);
}

.benefit-badge{
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(141,154,120,0.10);
  border: 1px solid rgba(141,154,120,0.12);
  color: var(--sage-dark);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.benefit-card--glass h3{
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #9c836f;
}

.benefit-card--glass p{
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #ab9584;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

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

@media (max-width: 1199.98px){
  .section-title--script{
    font-size: 62px;
  }

  .section-text--elegant{
    font-size: 18px;
  }

  .benefit-card--glass{
    min-height: 270px;
  }
}

@media (max-width: 991.98px){
  .benefits-section--soft{
    padding: 80px 0 80px;
  }

  .benefits-wrap{
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-intro--narrow{
    margin-bottom: 34px;
  }

  .section-title--script{
    font-size: 46px;
    line-height: 1.02;
  }

  .section-text--elegant{
    font-size: 16px;
    line-height: 1.75;
  }

  .benefit-grid--soft{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-card--glass{
    min-height: auto;
    padding: 30px 24px 28px;
    border-radius: 24px;
  }

  .benefit-badge{
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    font-size: 15px;
  }

  .benefit-card--glass h3{
    font-size: 24px;
  }

  .benefit-card--glass p{
    font-size: 16px;
    line-height: 1.75;
  }
}/* =========================
   STUDIO SHOWCASE
========================= */

.studio-showcase{
  position: relative;
  padding: 84px 0 48px;
  background: linear-gradient(180deg, #ece7df 0%, #edf0e7 100%);background: #f4efe8;
  overflow: hidden;
}

.studio-showcase__wrap{
  padding-left: 42px;
  padding-right: 42px;
}

.studio-showcase__grid{
  display: grid;
  grid-template-columns: 1.15fr 0.62fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.studio-showcase__photo,
.studio-showcase__content{
  border-radius: 32px;
  background: rgba(248, 241, 233, 0.50);
  border: 1px solid rgba(255, 250, 244, 0.62);
  box-shadow:
    0 14px 35px rgba(109, 89, 68, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.34);
  overflow: hidden;
}

.studio-showcase__photo{
  position: relative;
}

.studio-showcase__photo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.studio-showcase__photo:hover img{
  transform: scale(1.03);
}

.studio-showcase__photo--main{
  height: 550px;
}

.studio-showcase__stack{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 420px;
}
.studio-showcase__stack{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 550px;
}

.studio-showcase__content{
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.studio-showcase__title{
  margin: 0 0 20px;
   font-family: 'Petit Formal Script', serif;
  font-size: 56px;
  line-height: 0.98;
  font-weight: 400;
  color: var(--sage);
  text-shadow: 0 2px 10px rgba(255,255,255,0.18);
}

.studio-showcase__text{
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-main);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.studio-showcase__text--soft{
  font-size: 16px;
  color: var(--text-soft);
}

@media (max-width: 1399.98px){
  .studio-showcase__grid{
    grid-template-columns: 1.05fr 0.58fr 1fr;
  }

  .studio-showcase__title{
    font-size: 50px;
  }
}

@media (max-width: 1199.98px){
  .studio-showcase__grid{
    grid-template-columns: 1fr 0.55fr 0.95fr;
    gap: 22px;
  }

  .studio-showcase__photo--main{
    min-height: 470px;
  }

  .studio-showcase__stack{
    min-height: 470px;
    gap: 22px;
  }

  .studio-showcase__photo--small{
    min-height: 224px;
  }

  .studio-showcase__content{
    padding: 34px 28px;
  }

  .studio-showcase__title{
    font-size: 46px;
  }

  .studio-showcase__text{
    font-size: 17px;
  }
}

@media (max-width: 991.98px){
  .studio-showcase{
    padding: 68px 0 26px;
  }

  .studio-showcase__wrap{
    padding-left: 16px;
    padding-right: 16px;
  }

  .studio-showcase__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .studio-showcase__photo--main{
    min-height: 320px;
  }

  .studio-showcase__stack{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    min-height: auto;
    gap: 18px;
  }

  .studio-showcase__photo--small{
    min-height: 220px;
  }

  .studio-showcase__content{
    padding: 30px 24px;
    border-radius: 24px;
  }

  .studio-showcase__title{
    font-size: 40px;
    line-height: 1.03;
  }

  .studio-showcase__text{
    font-size: 16px;
    line-height: 1.75;
  }

  .studio-showcase__text--soft{
    font-size: 15px;
  }
}

@media (max-width: 575.98px){
  .studio-showcase__stack{
    grid-template-columns: 1fr;
  }

  .studio-showcase__photo--small{
    min-height: 220px;
  }

  .studio-showcase__title{
    font-size: 34px;
  }
}/* =========================
   CLASSES SECTION
========================= */

.classes-section{
  position: relative;
  padding: 92px 0 92px;
  background: #f4efe8;
  overflow: hidden;
}

.classes-wrap{
  padding-left: 42px;
  padding-right: 42px;
}

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

.class-card{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: 34px 30px 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(255,250,244,0.78);
  box-shadow:
    0 14px 35px rgba(109, 89, 68, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.class-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(109, 89, 68, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.38);
}

.class-card h3{
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  color: #9c836f;
}

.class-card p{
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-main);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.class-card .btn-modern{
  align-self: flex-start;
  margin-top: auto;
}

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

@media (max-width: 1199.98px){
  .class-card{
    min-height: 300px;
    padding: 30px 26px 24px;
  }

  .class-card h3{
    font-size: 28px;
  }

  .class-card p{
    font-size: 16px;
    line-height: 1.75;
  }
}

@media (max-width: 991.98px){
  .classes-section{
    padding: 74px 0 74px;
  }

  .classes-wrap{
    padding-left: 16px;
    padding-right: 16px;
  }

  .classes-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .class-card{
    min-height: auto;
    padding: 28px 22px 22px;
    border-radius: 24px;
  }

  .class-card h3{
    font-size: 26px;
  }

  .class-card p{
    margin-bottom: 20px;
  }
}/* =========================
   FAQ SECTION
========================= */

.faq-section{
  position: relative;
  padding: 88px 0 96px;
  background: #f8f4ef;
  overflow: hidden;
}

.faq-wrap{
  padding-left: 42px;
  padding-right: 42px;
}

.faq-box{
  max-width: 980px;
  margin: 8px auto 0;
  font-family:serif!important;
}

.faq-accordion{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item{
  border: 0;
  border-radius: 28px !important;
  overflow: hidden;
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(255,250,244,0.82);
  box-shadow:
    0 14px 35px rgba(109, 89, 68, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.36);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-button{
  padding: 24px 28px;
  font-size: 18px;
  font-weight: 600;
  color: #8f7a68;
  background: transparent !important;
  box-shadow: none !important;
  border: 0;
}

.faq-button:not(.collapsed){
  color: var(--sage-dark);
  background: transparent !important;
}

.faq-button:focus{
  box-shadow: none;
}

.faq-button::after{
  background-size: 16px;
  opacity: 0.75;
}

.faq-body{
  padding: 0 28px 24px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-main);
  font-family: 'Cormorant Garamond', serif;
  font-family:serif!important;
  font-weight: 500;
}

@media (max-width: 991.98px){
  .faq-section{
    padding: 72px 0 78px;
  }

  .faq-wrap{
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-item{
    border-radius: 22px !important;
  }

  .faq-button{
    padding: 20px 20px;
    font-size: 16px;
  }

  .faq-body{
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 1.75;
  }
}.class-card__image{
  position: relative;
  width: 100%;
  height: 210px;
  margin-bottom: 22px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(248, 241, 233, 0.60);
}

.class-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.class-card:hover .class-card__image img{
  transform: scale(1.04);
}.class-card__image img{
  object-fit: cover;
  object-position: center top;
}/* =========================
   FOOTER
========================= */

.site-footer{
  position: relative;
  padding: 72px 0 28px;
  background: linear-gradient(180deg, #ebe5dc 0%, #e3ddd4 100%);
  border-top: 1px solid rgba(141, 154, 120, 0.08);
}

.site-footer__wrap{
  padding-left: 42px;
  padding-right: 42px;
}

.site-footer__grid{
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(141, 154, 120, 0.10);
}

.site-footer__brand{
  max-width: 420px;
}

.site-footer__logo{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.site-footer__logo img{
  width: 56px;
  height: auto;
  object-fit: contain;
}

.site-footer__brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-footer__brand-name{
  font-family: 'RusticRoadway', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--sage-soft);
  line-height: 1;
}

.site-footer__brand-sub{
  margin-top: 5px;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #8d857d;
}

.site-footer__about{
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-main);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.site-footer__col h3{
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 600;
  color: var(--sage-dark);
  font-family: 'Cormorant Garamond', serif;
}

.site-footer__links,
.site-footer__contact{
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li,
.site-footer__contact li{
  margin-bottom: 12px;
}

.site-footer__links a,
.site-footer__contact,
.site-footer__contact a{
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-main);
  transition: color 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__contact a:hover{
  color: var(--sage-dark);
}

.site-footer__contact span{
  font-weight: 700;
  color: #8a7562;
}

.site-footer__bottom{
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__bottom p{
  margin: 0;
  font-size: 14px;
  color: #9a8777;
}

.site-footer__bottom-links{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__bottom-links a{
  font-size: 14px;
  color: #9a8777;
  transition: color 0.2s ease;
}

.site-footer__bottom-links a:hover{
  color: var(--sage-dark);
}

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

@media (max-width: 1199.98px){
  .site-footer__grid{
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 991.98px){
  .site-footer{
    padding: 58px 0 24px;
  }

  .site-footer__wrap{
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-footer__grid{
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-bottom: 26px;
  }

  .site-footer__brand{
    max-width: none;
  }

  .site-footer__brand-name{
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px){
  .site-footer__grid{
    grid-template-columns: 1fr;
  }

  .site-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}/* =========================
   MOBILE SCHEDULE
========================= */

.schedule-block--mobile{
  display: none;
}

.mobile-schedule-list{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-day{
  border-radius: 22px;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,250,244,0.76);
  box-shadow: 0 10px 24px rgba(109, 89, 68, 0.05);
  overflow: hidden;
}

.mobile-day__head{
  padding: 18px 16px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(143,157,120,0.18);
  background: rgba(255,255,255,0.22);
}

.mobile-day__head h3{
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
  color: #22304a;
  font-family: 'Cormorant Garamond', serif;
}

.mobile-day__head span{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #7d8791;
}

.mobile-day__cards{
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lesson-card--mobile{
  min-height: auto;
  margin-bottom: 0;
  border-radius: 18px;
}

/* =========================
   DESKTOP / MOBILE SWITCH
========================= */

@media (max-width: 768px){
  .schedule-block--desktop{
    display: none;
  }

  .schedule-block--mobile{
    display: block;
  }
}