:root {
  --isabel-black: #050505;
  --isabel-charcoal: #111111;
  --isabel-gold: #d8b26a;
  --isabel-gold-strong: #f2c777;
  --isabel-ivory: #f6f2eb;
  --isabel-soft: #f1eee8;
  --isabel-muted: #5d5a57;
  --isabel-white: #fff;
  --isabel-panel: rgba(255, 255, 255, 0.72);
  --isabel-border: rgba(216, 178, 106, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f7f2eb 0%, #efe7df 100%);
  color: #171717;
  letter-spacing: 0.01em;
}

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

a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(216, 178, 106, 0.3);
}

.site-header-inner,
.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--isabel-white);
  transition: opacity 0.2s ease;
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.9;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--isabel-gold);
  display: grid;
  place-items: center;
  color: var(--isabel-gold);
  font-size: 1.1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px 14px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--isabel-gold);
}

.nav-button,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-button,
.btn-primary {
  background: linear-gradient(135deg, var(--isabel-gold) 0%, #b57d2c 100%);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 22px rgba(183, 125, 44, 0.18);
}

.nav-button {
  padding: 0.75rem 1.2rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary {
  padding: 1rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-secondary {
  padding: 0.85rem 1.4rem;
  border: 1px solid rgba(216, 178, 106, 0.7);
  color: var(--isabel-gold);
  background: rgba(255, 255, 255, 0.02);
}

.nav-button:hover,
.btn-primary:hover,
.btn-secondary:hover,
.nav-button:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--isabel-white);
  padding: 0.55rem 0.7rem;
  font-size: 1.3rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: rgba(9, 9, 9, 0.96);
  border-top: 1px solid rgba(216, 178, 106, 0.25);
  padding: 1rem 0 1.4rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--isabel-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  background: var(--isabel-black);
  color: var(--isabel-white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(216, 178, 106, 0.18), transparent 38%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  left: -10%;
  top: -10%;
  background: linear-gradient(135deg, transparent 0%, rgba(216, 178, 106, 0.08) 50%, transparent 100%);
  transform: rotate(-12deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  width: min(1260px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 820px;
  gap: 20px;
}

.hero-copy {
  padding: 4rem 0 3rem;
}

.kicker {
  color: var(--isabel-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0.35rem 0 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 7vw, 9.5rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  font-weight: 700;
  text-transform: uppercase;
  color: #f5f5f3;
}

.hero h1 .gold {
  display: block;
  color: var(--isabel-gold);
  position: relative;
  padding-bottom: 0.25rem;
}

.hero h1 .gold::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--isabel-gold), rgba(216, 178, 106, 0.2));
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-benefits li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 18px;
  color: #f4f0ea;
  font-size: clamp(1.2rem, 1.9vw, 2.2rem);
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-benefits li i {
  color: var(--isabel-gold);
  border: 2px solid var(--isabel-gold);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.hero-benefits li strong {
  display: block;
  color: var(--isabel-gold);
  font-size: 0.7em;
}

.signature {
  margin-top: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 5vw, 6.5rem);
  line-height: 0.9;
  color: var(--isabel-gold);
  font-style: italic;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  min-height: 820px;
  padding: 1.2rem 1.2rem 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 1rem 0 0;
  border-radius: 28px 28px 20px 20px;
  background: linear-gradient(180deg, rgba(216, 178, 106, 0.12), rgba(216, 178, 106, 0.02));
  border: 1px solid rgba(216, 178, 106, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  height: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.08) contrast(1.05);
  border-radius: 28px 28px 22px 22px;
  border: 2px solid rgba(216, 178, 106, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.photo-badge {
  position: absolute;
  right: 8%;
  bottom: 8%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(216, 178, 106, 0.7);
  color: var(--isabel-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1rem 1.5rem;
  border-radius: 18px;
  backdrop-filter: blur(4px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.photo-badge span {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}

.feature {
  padding: 5rem 0;
}

.feature-light {
  background: linear-gradient(180deg, #ece6df 0%, #e6e0d9 100%);
}

.feature-dark {
  background: linear-gradient(180deg, #0d0d0d 0%, #111111 100%);
  color: var(--isabel-white);
}

.feature-inner {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 1fr;
  gap: 30px;
  align-items: center;
}

.feature-icon {
  width: 150px;
  height: 150px;
  border: 2px solid rgba(216, 178, 106, 0.9);
  border-radius: 50%;
  color: var(--isabel-gold);
  display: grid;
  place-items: center;
  font-size: 4rem;
  margin: 0 auto;
}

.feature-copy h2,
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5vw, 6rem);
  line-height: 0.9;
  margin: 0 0 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.feature-copy h3 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
}

.feature-copy p {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 52ch;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(216, 178, 106, 0.12);
  color: var(--isabel-gold);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list-dark li {
  color: rgba(255, 255, 255, 0.85);
}

.check-list-dark li::before {
  background: rgba(216, 178, 106, 0.18);
}

.price-box {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 2px solid rgba(216, 178, 106, 0.8);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.06);
}

.price-box span {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

.price-box strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  font-weight: 700;
  color: var(--isabel-gold);
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(216, 178, 106, 0.05));
  border: 1px solid rgba(216, 178, 106, 0.35);
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.08);
}

.feature-visual img {
  width: min(520px, 100%);
  height: 680px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  border: 1px solid rgba(216, 178, 106, 0.38);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.section-wrap {
  background: #0b0b0b;
  color: var(--isabel-white);
  padding: 5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.plans-copy {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.plans-grid {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.plan-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(216, 178, 106, 0.5);
  border-radius: 24px;
  padding: 2rem 1.5rem 1.6rem;
  min-height: 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.plan-card:hover,
.plan-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(216, 178, 106, 0.9);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(216, 178, 106, 0.08), rgba(15, 15, 15, 0.95));
}

.plan-card .tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--isabel-gold);
  margin-bottom: 0.8rem;
}

.plan-card h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.85;
  text-transform: uppercase;
}

.plan-card .sessions {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  margin: 1rem 0 1.4rem;
  background: rgba(216, 178, 106, 0.08);
  border: 1px solid rgba(216, 178, 106, 0.6);
  border-radius: 14px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--isabel-gold);
}

.plan-card ul {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.plan-card li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.5;
}

.plan-card li::before {
  content: "•";
  color: var(--isabel-gold);
  font-size: 1.3rem;
  line-height: 1;
}

.plan-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--isabel-gold);
  line-height: 0.9;
  margin: 0 0 0.5rem;
}

.plan-card .caption {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact {
  background: #efebe7;
  padding: 5rem 0 4rem;
}

.contact-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card {
  background: var(--isabel-panel);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover,
.contact-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--isabel-border);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
  margin: 0 0 1.2rem;
  font-size: 2rem;
  text-transform: uppercase;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.02rem;
  color: #1d1d1d;
}

.contact-list a {
  color: #1d1d1d;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--isabel-gold);
}

.contact-list i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(216, 178, 106, 0.12);
  color: var(--isabel-gold);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  color: #171717;
  padding: 0.95rem 1rem;
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  display: none;
  margin-top: 0.75rem;
  font-weight: 600;
}

.form-status.visible {
  display: block;
}

.site-footer {
  background: #070707;
  color: rgba(255, 255, 255, 0.8);
  padding: 1.3rem 0;
  text-align: center;
  border-top: 1px solid rgba(216, 178, 106, 0.2);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

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

  .hero-inner,
  .feature-inner,
  .contact-inner,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: initial;
    padding-bottom: 2rem;
  }

  .hero-copy {
    order: 1;
    padding-top: 2.5rem;
  }

  .hero-visual {
    order: 2;
    min-height: 560px;
    padding-top: 0;
  }

  .hero-visual img {
    height: 560px;
    object-position: center top;
  }

  .feature-visual img {
    height: 500px;
    object-position: center top;
  }

  .feature-icon {
    margin: 0;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 4.2rem;
  }

  .hero-benefits li {
    grid-template-columns: 44px 1fr;
    font-size: 1.2rem;
  }

  .hero-benefits li i {
    width: 44px;
    height: 44px;
  }

  .photo-badge {
    right: 5%;
    bottom: 5%;
    padding: 0.75rem 1rem;
  }

  .plan-card,
  .contact-card {
    padding: 1.4rem 1rem;
  }

  .feature-copy h2,
  .section-heading {
    font-size: 3rem;
  }
}

