:root {
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #f8f2ec;
  background-color: #1d1612;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Better tap highlighting for mobile */
a, button {
  -webkit-tap-highlight-color: rgba(216, 173, 134, 0.3);
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #1d1612;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #1d1612;
  background-image: linear-gradient(135deg, rgba(35, 28, 23, 0.95), rgba(30, 21, 18, 0.95));
  color: #f8f2ec;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px clamp(24px, 6vw, 80px) 24px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(29, 22, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(2, 1, 1, 0.1);
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  margin-left: auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle__line {
  width: 100%;
  height: 2px;
  background-color: #f8f2ec;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle--open .menu-toggle__line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle--open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle--open .menu-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand__logo {
  height: 22px;
  display: block;
}

.nav {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}

.nav__link {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(248, 242, 236, 0.72);
  position: relative;
  transition: color 0.2s ease;
  padding: 8px 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(216, 173, 134, 0.8);
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: #f8f2ec;
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  width: 100%;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  min-height: 48px;
  border-radius: 999px;
  background: rgba(216, 173, 134, 0.92);
  color: #1f1813;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(216, 173, 134, 0.35);
  background: rgba(216, 173, 134, 1);
}

.cta--outline {
  background: rgba(216, 173, 134, 0.2);
  color: #f8f2ec;
  border: 1px solid rgba(216, 173, 134, 0.5);
}

.cta--outline:hover {
  color: #1f1813;
  background: rgba(216, 173, 134, 0.95);
}

.cta--mobile {
  display: none;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
  padding-bottom: clamp(100px, 12vw, 160px);
  position: relative;
  background-image: url('./assets/Hero Background.png');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(29, 22, 18, 0.9) 0%,
    rgba(29, 22, 18, 0.7) 15%,
    rgba(29, 22, 18, 0.5) 40%,
    rgba(29, 22, 18, 0.4) 100%
  );
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='60' viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q300 0 600 30 T1200 30 V60 H0 Z' fill='%232a221d'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.hero__copy {
  max-width: 780px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 242, 236, 0.7);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__headline {
  margin: 0 0 24px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  color: #fdf8f3;
  letter-spacing: 0.015em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero__sub {
  margin: 0 auto 40px;
  max-width: none;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: rgba(248, 242, 236, 0.78);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero .cta {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.quote-section {
  background: #2a221d;
  color: #f8f2ec;
  padding: clamp(48px, 8vw, 80px) clamp(24px, 6vw, 80px);
  padding-bottom: clamp(88px, 12vw, 140px);
  display: flex;
  justify-content: center;
  position: relative;
}

.quote-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='60' viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q300 0 600 30 T1200 30 V60 H0 Z' fill='%23f4ede4'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.quote-section__inner {
  max-width: 780px;
  text-align: center;
}

.quote-section__text {
  margin: 0 0 16px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.4;
  color: #fdf8f3;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.quote-section__text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-section__author {
  display: block;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 242, 236, 0.6);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out 0.2s, transform 0.9s ease-out 0.2s;
}

.quote-section__author.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quote {
  background: #f4ede4;
  color: #3a2a21;
  padding: clamp(48px, 10vw, 96px) clamp(24px, 6vw, 80px);
  display: flex;
  justify-content: center;
}

.quote__inner {
  max-width: 780px;
  text-align: center;
}

.quote__text {
  margin: 0 0 16px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.4;
  color: #2f2119;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.quote__text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quote__author {
  display: block;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(58, 42, 33, 0.6);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out 0.2s, transform 0.9s ease-out 0.2s;
}

.quote__author.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .hero__headline,
  .hero__sub {
    white-space: normal;
  }
}

.transformation {
  background-color: #f4ede4;
  color: #3a2a21;
  padding: clamp(64px, 10vw, 110px) clamp(24px, 6vw, 80px);
  padding-bottom: clamp(104px, 14vw, 170px);
  position: relative;
  overflow: hidden;
}

.transformation::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='60' viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q300 0 600 30 T1200 30 V60 H0 Z' fill='%23E8DED1'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.transformation__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.transformation__decorative {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c6854b, transparent);
  margin: 0 auto 40px;
  opacity: 0.6;
}

.transformation__intro {
  margin: 0 auto 56px;
  max-width: 780px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.75;
  color: #2f2119;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.transformation__intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.transformation__intro em {
  font-style: italic;
  color: #2f2119;
  font-weight: 500;
}

.transformation__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.transformation__row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.transformation__row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.transformation__row:nth-child(1).is-visible {
  transition-delay: 0.15s;
}

.transformation__row:nth-child(2).is-visible {
  transition-delay: 0.3s;
}

.transformation__row:nth-child(3).is-visible {
  transition-delay: 0.45s;
}

.transformation__label {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2f1f16;
  line-height: 1.3;
}

.transformation__detail {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.15rem);
  line-height: 1.75;
  color: rgba(58, 42, 33, 0.82);
}

@media (max-width: 768px) {
  .transformation__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .transformation__label {
    font-size: 1.25rem;
  }
}

.phases {
  background: #E8DED1;
  color: #3a2a21;
  padding: clamp(64px, 10vw, 110px) clamp(24px, 6vw, 80px);
  padding-bottom: clamp(104px, 14vw, 170px);
  position: relative;
  scroll-margin-top: 50px;
}

.phases::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='60' viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q300 0 600 30 T1200 30 V60 H0 Z' fill='%23f4ede4'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.phases__inner {
  max-width: 900px;
  margin: 0 auto;
}

.phases__title {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 600;
  color: #2d2018;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.phases__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.phases__list {
  list-style: none;
  margin: 48px 0 36px;
  padding: 0;
}

.phase {
  position: relative;
  padding-left: 54px;
  padding-bottom: 36px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.phase.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.phase:nth-child(1).is-visible {
  transition-delay: 0.1s;
}

.phase:nth-child(2).is-visible {
  transition-delay: 0.25s;
}

.phase:nth-child(3).is-visible {
  transition-delay: 0.4s;
}

.phase:hover .phase__heading {
  color: #c6854b;
  transition: color 0.3s ease;
}

.phase:last-child {
  padding-bottom: 0;
}

.phase::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 20px;
  bottom: -16px;
  width: 2px;
  background: rgba(198, 140, 88, 0.45);
}

.phase:last-child::before {
  bottom: 0;
}

.phase__marker {
  position: absolute;
  left: 6px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c6854b;
}

.phase__heading {
  margin: 0 0 12px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.4rem;
  color: #2f1f16;
  transition: color 0.3s ease;
}

.phase__description {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(58, 42, 33, 0.78);
}

.phases__note {
  margin: 0;
  padding: 20px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(198, 140, 88, 0.25);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(58, 42, 33, 0.75);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.phases__note.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.what-you-get {
  background-color: #f4ede4;
  color: #3a2a21;
  padding: clamp(64px, 10vw, 110px) clamp(24px, 6vw, 80px);
  padding-bottom: clamp(104px, 14vw, 170px);
  position: relative;
  scroll-margin-top: 50px;
}

.what-you-get::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='60' viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q300 0 600 30 T1200 30 V60 H0 Z' fill='%23E8DED1'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.what-you-get__inner {
  max-width: 900px;
  margin: 0 auto;
}

.what-you-get__title {
  margin: 0 0 48px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 600;
  color: #2d2018;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.what-you-get__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefits {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
}

.benefit {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.benefit.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit:nth-child(1).is-visible {
  transition-delay: 0.1s;
}

.benefit:nth-child(2).is-visible {
  transition-delay: 0.2s;
}

.benefit:nth-child(3).is-visible {
  transition-delay: 0.3s;
}

.benefit:nth-child(4).is-visible {
  transition-delay: 0.4s;
}

.benefit:nth-child(5).is-visible {
  transition-delay: 0.5s;
}

.benefit__heading {
  margin: 0 0 8px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2f1f16;
}

.benefit__description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(58, 42, 33, 0.75);
}

.about {
  background-color: #E8DED1;
  color: #3a2a21;
  padding: clamp(64px, 10vw, 110px) clamp(24px, 6vw, 80px);
  padding-bottom: clamp(104px, 14vw, 170px);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 50px;
}

.about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='60' viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q300 0 600 30 T1200 30 V60 H0 Z' fill='%23f4ede4'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.about__title {
  margin: 0 0 32px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 600;
  color: #2d2018;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about__decorative {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c6854b, transparent);
  margin: 0 auto 40px;
  opacity: 0.6;
}

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

.about__content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.about__content.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.about__text {
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.8;
  color: rgba(58, 42, 33, 0.82);
}

.about__text:last-child {
  margin-bottom: 0;
}

.about__image {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.about__image.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.about__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(45, 32, 24, 0.15);
  filter: grayscale(100%);
}

@media (max-width: 900px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    order: -1;
  }
}

.newsletter {
  background-color: #f4ede4;
  color: #3a2a21;
  padding: clamp(64px, 10vw, 110px) clamp(24px, 6vw, 80px);
  padding-bottom: clamp(104px, 14vw, 170px);
  position: relative;
  scroll-margin-top: 50px;
}

.newsletter::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='60' viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q300 0 600 30 T1200 30 V60 H0 Z' fill='%23E8DED1'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.newsletter__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__title {
  margin: 0 0 20px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 600;
  color: #2d2018;
}

.newsletter__text {
  margin: 0 auto 32px;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: rgba(58, 42, 33, 0.8);
  max-width: 580px;
}

.newsletter__form {
  display: flex;
  justify-content: center;
}

.newsletter__iframe-wrapper {
  overflow: hidden;
  height: 130px;
  border-radius: 8px;
  background-color: #faf8f5;
  width: 100%;
  max-width: 560px;
}

.newsletter__iframe-wrapper iframe {
  margin-top: -185px;
  width: 100%;
}

@media (max-width: 600px) {
  .newsletter__iframe-wrapper {
    height: 120px;
  }

  .newsletter__iframe-wrapper iframe {
    margin-top: -185px;
  }
}

.cta-section {
  background: #E8DED1;
  color: #3a2a21;
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-margin-top: 50px;
}

.cta-section__inner {
  max-width: 680px;
  text-align: center;
}

.cta-section__title {
  margin: 0 0 20px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: #2d2018;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cta-section__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-section__text {
  margin: 0 auto 36px;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: rgba(58, 42, 33, 0.8);
  max-width: 580px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cta-section__text.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.cta-section .cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cta-section .cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.footer {
  background-color: #1d1612;
  color: #f8f2ec;
  padding: 40px clamp(24px, 6vw, 80px);
  border-top: 1px solid rgba(198, 140, 88, 0.2);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer__copyright,
.footer__brand {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(248, 242, 236, 0.6);
  letter-spacing: 0.02em;
}

.footer__brand {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 500;
}

@media (max-width: 900px) {
  .header {
    flex-direction: row;
    align-items: center;
    padding: 20px clamp(24px, 6vw, 80px);
    /* JavaScript will override with fixed positioning on mobile */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    width: 100%;
  }
  
  /* Chrome mobile fix - JavaScript will override this */
  @supports (-webkit-touch-callout: none) {
    .header {
      will-change: transform;
    }
  }

  .header__actions {
    width: auto;
    gap: 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .cta--outline:not(.cta--mobile) {
    display: none;
  }

  .cta--mobile {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(29, 22, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav--open {
    right: 0;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-overlay--open {
    display: block;
    opacity: 1;
  }

  .nav__link {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(198, 140, 88, 0.1);
    font-size: 1.1rem;
  }

  .nav__link:last-child {
    border-bottom: none;
  }

  .phases,
  .what-you-get,
  .about,
  .cta-section {
    scroll-margin-top: 120px;
  }

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

@media (max-width: 768px) {
  .quote-section__text {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .hero {
    min-height: 85vh;
    background-attachment: scroll;
    background-size: 150% auto;
    background-position: center 20%;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 16px 24px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
  }

  .header__actions {
    gap: 12px;
  }

  .cta--mobile {
    font-size: 0.85rem;
    padding: 12px 20px;
  }

  .nav {
    width: 100%;
    max-width: 320px;
  }

  .cta {
    width: 100%;
  }

  .hero {
    padding: 60px 24px 80px;
    min-height: auto;
    background-attachment: scroll;
    background-size: 150% auto;
    background-position: center 20%;
  }

  .hero__headline {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .quote-section {
    padding: clamp(40px, 10vw, 60px) 24px;
    padding-bottom: clamp(80px, 12vw, 120px);
  }

  .transformation,
  .phases,
  .what-you-get,
  .about {
    padding: clamp(48px, 10vw, 80px) 24px;
    padding-bottom: clamp(96px, 14vw, 150px);
    scroll-margin-top: 100px;
  }

  .cta-section {
    padding: clamp(60px, 12vw, 100px) 24px;
    scroll-margin-top: 100px;
  }

  .nav__link::after {
    display: none;
  }

  .phase__marker {
    width: 14px;
    height: 14px;
    left: 4px;
  }

  .phase {
    padding-left: 36px;
  }

  .phase::before {
    left: 10px;
  }
}

/* Large desktop optimization */
@media (min-width: 1400px) {
  .transformation__inner,
  .about__inner {
    max-width: 1100px;
  }

  .phases__inner,
  .what-you-get__inner {
    max-width: 1000px;
  }

  .transformation__row {
    grid-template-columns: 280px 1fr;
    gap: 64px;
  }
}

/* Tablet-specific optimizations */
@media (min-width: 601px) and (max-width: 900px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

