/* ===== CSS VARIABLES ===== */
:root {
  --cream-bg: #f8f4ed;
  --cream-soft: #f2ecdf;
  --olive-dark: #2d3416;
  --olive-mid: #3a4220;
  --olive-light: #5a6338;
  --gold: #b8933f;
  --gold-bright: #d4a94a;
  --gold-soft: #e8d9a8;
  --text-primary: #2d3416;
  --text-dim: #6b6a52;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-pad: 120px;
  --block-gap: 60px;
  --header-h: 72px;

  --shadow-soft: 0 12px 32px rgba(45, 52, 22, 0.08);
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
    --block-gap: 40px;
    --header-h: 60px;
  }
}

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

html { scroll-behavior: auto; }

body {
  background: var(--cream-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.section {
  position: relative;
  padding: var(--section-pad) 24px;
  max-width: 1200px;
  margin: 0 auto;
}

#technology, #session { background: var(--cream-soft); }
#feel, #contraindications, #price { background: var(--cream-bg); }
#location { background: var(--cream-soft); }

.section-head {
  text-align: center;
  margin-bottom: var(--block-gap);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--olive-dark);
  font-weight: 600;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-dim);
  margin-top: 12px;
}

@media (max-width: 768px) {
  .section-head h2 { font-size: 30px; }
  .section-sub { font-size: 16px; }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--block-gap);
  align-items: center;
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
}

.disclaimer {
  color: var(--text-dim);
  font-size: 13px;
  text-align: center;
  margin-top: var(--block-gap);
  line-height: 1.6;
}

/* ===== SECTION WAVE DIVIDER ===== */
.section::after,
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 16'%3E%3Cpath d='M0 8 Q25 0 50 8 T100 8 T150 8 T200 8' fill='none' stroke='%23b8933f' stroke-width='1' stroke-opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 200px 16px;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--olive-dark);
  color: var(--cream-bg);
  padding: 20px 48px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn-gold:hover {
  background: var(--gold-bright);
  color: var(--olive-dark);
  box-shadow: 0 8px 24px rgba(184, 147, 63, 0.4);
  transform: scale(1.02);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--olive-dark);
  color: var(--olive-dark);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.btn-outline:hover {
  box-shadow: 0 8px 20px rgba(45, 52, 22, 0.12);
  transform: scale(1.02);
  background: rgba(45, 52, 22, 0.06);
}

/* ===== REVEAL ANIMATION ===== */
.reveal,
.feel-card,
.tech-text,
.tech-image {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible,
.feel-card.is-visible,
.tech-text.is-visible,
.tech-image.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STICKY HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 200;
  background: transparent;
  transform: translateY(-100%);
  transition: transform 0.3s ease, background 0.3s ease;
  pointer-events: none;
}

.site-header.is-visible {
  transform: translateY(0);
  background: rgba(248, 244, 237, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(45, 52, 22, 0.06);
  pointer-events: auto;
}

.header-inner {
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-btn {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--olive-dark);
  display: block;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.header-title {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--olive-dark);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .header-title { display: none; }
}

.header-cta {
  padding: 12px 24px;
  font-size: 14px;
}

.header-cta-mobile {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--olive-dark);
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .header-cta { display: none; }
  .header-cta-mobile { display: flex; }
}

/* ===== SIDE MENU PANEL ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 52, 22, 0.4);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: var(--olive-mid);
  border-right: 1px solid var(--gold);
  z-index: 260;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.menu-panel.is-open {
  transform: translateX(0);
}

@media (max-width: 640px) {
  .menu-panel { width: 100vw; }
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  width: 48px;
  height: 48px;
}

.menu-panel-inner {
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.menu-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 8px;
  color: var(--gold-soft);
  margin-bottom: 24px;
}

.menu-links {
  flex: 1;
}

.menu-links li a {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--cream-bg);
  padding: 20px 0;
  padding-left: 68px;
  text-indent: -68px;
  transition: color 0.2s ease, transform 0.2s ease;
}

@media (max-width: 480px) {
  .menu-links li a { font-size: 26px; padding-left: 56px; text-indent: -56px; }
}

.menu-links li a:hover {
  color: var(--gold);
  transform: translateX(8px);
}

.menu-num {
  display: inline-block;
  width: 68px;
  text-indent: 0;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
}

@media (max-width: 480px) {
  .menu-num { width: 56px; }
}

.menu-footer {
  padding-top: 40px;
  border-top: 1px solid rgba(184, 147, 63, 0.25);
}

.menu-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 8px;
}

.menu-address {
  color: var(--gold-soft);
  font-size: 15px;
  margin-bottom: 20px;
}

.menu-socials {
  display: flex;
  gap: 16px;
}

.menu-socials a {
  color: var(--gold);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 147, 63, 0.35);
  border-radius: 50%;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.menu-socials a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

/* ===== DECORATIVE OLIVE BRANCHES ===== */
.hero::before,
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 70px 70px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23e8d9a8' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M6 54 C16 40 12 26 22 8' stroke-opacity='0.55'/%3E%3Cellipse cx='13' cy='42' rx='6' ry='2.6' transform='rotate(-35 13 42)' stroke-opacity='0.5'/%3E%3Cellipse cx='11' cy='28' rx='5.5' ry='2.4' transform='rotate(-20 11 28)' stroke-opacity='0.5'/%3E%3Cellipse cx='17' cy='15' rx='5' ry='2.2' transform='rotate(-5 17 15)' stroke-opacity='0.5'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23e8d9a8' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M54 54 C44 40 48 26 38 8' stroke-opacity='0.55'/%3E%3Cellipse cx='47' cy='42' rx='6' ry='2.6' transform='rotate(35 47 42)' stroke-opacity='0.5'/%3E%3Cellipse cx='49' cy='28' rx='5.5' ry='2.4' transform='rotate(20 49 28)' stroke-opacity='0.5'/%3E%3Cellipse cx='43' cy='15' rx='5' ry='2.2' transform='rotate(5 43 15)' stroke-opacity='0.5'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23e8d9a8' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M6 6 C16 20 12 34 22 52' stroke-opacity='0.4'/%3E%3Cellipse cx='13' cy='18' rx='6' ry='2.6' transform='rotate(35 13 18)' stroke-opacity='0.35'/%3E%3Cellipse cx='11' cy='32' rx='5.5' ry='2.4' transform='rotate(20 11 32)' stroke-opacity='0.35'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23e8d9a8' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M54 6 C44 20 48 34 38 52' stroke-opacity='0.4'/%3E%3Cellipse cx='47' cy='18' rx='6' ry='2.6' transform='rotate(-35 47 18)' stroke-opacity='0.35'/%3E%3Cellipse cx='49' cy='32' rx='5.5' ry='2.4' transform='rotate(-20 49 32)' stroke-opacity='0.35'/%3E%3C/g%3E%3C/svg%3E");
  background-position:
    24px 24px,
    calc(100% - 24px) 24px,
    24px calc(100% - 24px),
    calc(100% - 24px) calc(100% - 24px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 100px 24px 60px;
  background: var(--cream-bg);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(184, 147, 63, 0.06), transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
}

.hero-eight {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 40px;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 32px rgba(184, 147, 63, 0.22), 0 10px 28px rgba(45, 52, 22, 0.1);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 72px);
  letter-spacing: clamp(2px, 1.6vw, 8px);
  color: var(--olive-dark);
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(32px, 9vw, 44px); }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--gold);
  margin-top: 20px;
}

.hero-tagline {
  font-size: 18px;
  color: var(--olive-dark);
  opacity: 0.7;
  margin-top: 16px;
}

.hero-cta {
  margin-top: 40px;
}

.hero-more {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.hero-more:hover {
  color: var(--gold);
}

.hero-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== TECHNOLOGY SECTION ===== */
.tech-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.tech-text p:last-child { margin-bottom: 0; }

.tech-image img {
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  width: 100%;
}

/* ===== FEEL CARDS ===== */
.feel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.feel-card {
  background: var(--cream-soft);
  border: 1px solid rgba(184, 147, 63, 0.3);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.feel-icon {
  width: 60px;
  height: 60px;
  padding: 16px;
  box-sizing: border-box;
  background: var(--olive-mid);
  border: 1px solid var(--gold);
  border-radius: 50%;
  stroke: var(--gold-soft);
  margin-bottom: 20px;
}

.feel-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--olive-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.feel-card p {
  font-size: 16px;
  color: var(--text-primary);
  opacity: 0.8;
  line-height: 1.6;
}

/* ===== SESSION IMAGE ===== */
.session-image {
  max-width: 700px;
  margin: 0 auto var(--block-gap);
}

.session-image img {
  width: 100%;
  border: 1px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

/* ===== STEPS ===== */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 900px) {
  .steps { flex-direction: column; align-items: stretch; }
}

.step {
  flex: 1;
  text-align: center;
}

@media (max-width: 900px) {
  .step { text-align: left; }
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--gold);
  line-height: 1;
  font-weight: 600;
}

@media (max-width: 768px) {
  .step-num { font-size: 64px; }
}

.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--olive-dark);
  margin: 16px 0 12px;
  font-weight: 600;
}

.step p {
  font-size: 15px;
  color: var(--text-primary);
  opacity: 0.85;
  line-height: 1.6;
}

.step-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(184, 147, 63, 0.35);
  min-height: 160px;
}

@media (max-width: 900px) {
  .step-divider { width: 100%; height: 1px; min-height: 0; }
}

/* ===== CONTRAINDICATIONS ===== */
.contra-title {
  letter-spacing: 2px;
}

.contra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: var(--block-gap);
}

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

.contra-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream-soft);
  border: 1px solid rgba(184, 147, 63, 0.25);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.contra-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--olive-mid);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contra-name {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--olive-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.contra-warning {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--cream-soft);
  border-left: 4px solid var(--olive-dark);
  border-radius: 4px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 640px) {
  .contra-warning { flex-direction: column; align-items: center; text-align: center; }
}

.contra-warning-icon {
  flex-shrink: 0;
}

.contra-warning-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--olive-dark);
  margin-bottom: 10px;
}

.contra-warning-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--olive-dark);
  line-height: 1.6;
}

/* ===== PRICE ===== */
.price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.price-image {
  max-width: 600px;
  width: 100%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

/* ===== LOCATION ===== */
.location-address {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--olive-dark);
  font-weight: 600;
}

.location-office {
  font-size: 18px;
  color: var(--text-dim);
  margin-top: 8px;
}

.location-contact {
  padding-top: 32px;
}

.location-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 12px;
}

.location-hours {
  font-size: 16px;
  color: var(--text-primary);
}

.location-contact .btn-outline {
  margin-top: 28px;
  display: inline-block;
}

.location-map iframe {
  border-radius: 8px;
  border: 1px solid rgba(184, 147, 63, 0.3);
  display: block;
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  background: var(--olive-mid);
  padding: var(--section-pad) 24px;
  text-align: center;
  overflow: hidden;
}

.cta-eight {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  box-shadow: 0 0 24px rgba(184, 147, 63, 0.35);
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--cream-bg);
  font-weight: 600;
}

@media (max-width: 768px) {
  .final-cta h2 { font-size: 30px; }
}

.final-cta p {
  font-size: 18px;
  color: var(--gold-soft);
  margin-top: 12px;
}

.cta-btn {
  margin-top: 36px;
  padding: 24px 64px;
  background: var(--gold);
  color: var(--olive-dark);
}

.cta-btn:hover {
  background: var(--gold-bright);
  color: var(--olive-dark);
}

@media (max-width: 480px) {
  .cta-btn { padding: 20px 36px; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--olive-mid);
  border-top: 1px solid var(--gold);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand {
  align-items: flex-start;
}

@media (max-width: 768px) {
  .footer-brand { align-items: center; }
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 4px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream-bg);
}

.footer-brand p {
  font-size: 13px;
  color: var(--gold-soft);
}

.footer-menu {
  justify-content: center;
}

.footer-menu a {
  font-size: 15px;
  color: var(--cream-bg);
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: var(--gold);
}

.footer-socials {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-socials { justify-content: center; }
}

.footer-socials a {
  color: var(--gold);
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: var(--gold-bright);
}

.footer-disclaimer {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--gold-soft);
  font-size: 12px;
  line-height: 1.6;
}

/* ===== MOBILE FIXED CTA ===== */
.mobile-fab {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--olive-dark);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  z-index: 150;
  box-shadow: 0 8px 24px rgba(45, 52, 22, 0.25);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-fab span {
  font-size: 9px;
  color: var(--cream-bg);
  font-weight: 500;
}

.mobile-fab.is-hidden {
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
}

@media (max-width: 640px) {
  .mobile-fab { display: flex; }
}
