/* ============================================================
   VALERY — Design System
   Palette: Deep Sage / Warm Off-White / Dusty Rose / Muted Gold
   Type: Cormorant Garamond (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500&display=swap');

/* --- Tokens --- */
:root {
  --sage:       #2D4A3E;
  --sage-light: #3D6154;
  --sage-pale:  #EDF1EF;
  --cream:      #F7F4EF;
  --rose:       #C9A99A;
  --rose-light: #E8D5CE;
  --gold:       #B8975A;
  --ink:        #1A1A1A;
  --ink-muted:  #5A5A5A;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --transition: 0.3s ease;
  --shadow-card: 0 2px 24px rgba(45,74,62,0.10);
  --shadow-hover: 0 8px 40px rgba(45,74,62,0.18);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography Scale --- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.display-xl em {
  font-style: italic;
  font-weight: 600;
  color: var(--rose);
}
h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  line-height: 1.3;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-muted);
}
.body-sm {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 6rem 0;
}
.section--lg {
  padding: 8rem 0;
}
.section--dark {
  background: var(--sage);
  color: var(--white);
}
.section--pale {
  background: var(--sage-pale);
}
.section--rose {
  background: var(--rose-light);
}
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.divider--center { margin: 1.5rem auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn--primary {
  background: var(--sage);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.btn--outline {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
}
.btn--outline:hover {
  background: var(--sage);
  color: var(--white);
}
.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: #a07e48;
  transform: translateY(-1px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(247, 244, 239, 0.97);
  box-shadow: 0 1px 20px rgba(45,74,62,0.08);
  backdrop-filter: blur(8px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--sage); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--sage); }
.nav__links a.active::after { width: 100%; }
.nav__cta { margin-left: 1rem; }

/* Mobile nav */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--sage);
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sage);
  letter-spacing: 0.04em;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--ink-muted);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 5rem;
  overflow: hidden;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem 4rem 4rem;
  max-width: 680px;
}
.hero__rule {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.hero__headline em {
  font-style: italic;
  font-weight: 600;
  color: var(--rose);
  display: block;
}
.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__image-col {
  position: relative;
  overflow: hidden;
}
.hero__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image-overlay {
  position: absolute;
  bottom: 2rem; left: -1.5rem;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  max-width: 220px;
}
.hero__image-overlay .stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--sage);
  line-height: 1;
}
.hero__image-overlay .stat-label {
  font-size: 0.75rem;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--sage);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.marquee-inner .dot {
  color: var(--gold);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem;
  align-items: center;
}
.about__image-wrap {
  position: relative;
}
.about__image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about__accent-box {
  position: absolute;
  top: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px;
  background: var(--rose-light);
  border-radius: 50%;
  z-index: -1;
}
.about__accent-box2 {
  position: absolute;
  bottom: -1rem; left: -1rem;
  width: 80px; height: 80px;
  background: var(--sage-pale);
  border-radius: 50%;
  z-index: -1;
}
.about__content { }
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.about__tag {
  padding: 0.4rem 1rem;
  border: 1px solid var(--rose);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--rose);
  letter-spacing: 0.06em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.service-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0.5rem 0 0.75rem;
  color: var(--ink);
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
  flex: 1;
}
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sage-pale);
}
.service-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage);
}
.service-card__duration {
  font-size: 0.75rem;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   BOOKING CTA SECTION
   ============================================================ */
.booking-cta {
  text-align: center;
  padding: 8rem 2rem;
}
.booking-cta h2 {
  margin-bottom: 1rem;
}
.booking-cta p {
  max-width: 480px;
  margin: 0 auto 2.5rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  font-size: 1rem;
}

/* ============================================================
   CONTACT INFO BAR
   ============================================================ */
.contact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 4rem;
}
.contact-bar__item {
  text-align: center;
}
.contact-bar__icon {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.contact-bar__label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-bar__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 3rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__links {
  display: flex;
  gap: 2rem;
}
.footer__links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  font-size: 0.75rem;
}

/* ============================================================
   INNER PAGE HERO (shared)
   ============================================================ */
.page-hero {
  background: var(--sage);
  padding: 10rem 0 5rem;
  text-align: center;
  color: var(--white);
}
.page-hero .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--rose);
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 1.5rem auto 0;
  line-height: 1.75;
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.service-detail__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 7rem;
}
.service-detail__benefits {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.benefit-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.service-detail__pricing-card {
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2.5rem;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(45,74,62,0.12);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row__name { font-size: 0.9rem; color: var(--ink); }
.pricing-row__detail { font-size: 0.8rem; color: var(--ink-muted); }
.pricing-row__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sage);
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-embed {
  min-height: 700px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.booking-embed iframe {
  width: 100%;
  min-height: 700px;
  border: none;
}
.booking-placeholder {
  background: var(--sage-pale);
  border-radius: var(--radius-lg);
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  border: 2px dashed var(--rose);
}
.booking-placeholder h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--sage);
  margin-top: 1rem;
}
.booking-placeholder p {
  color: var(--ink-muted);
  margin-top: 0.75rem;
  max-width: 400px;
  line-height: 1.7;
  font-size: 0.9rem;
}

/* ============================================================
   CENNIK (PRICING) PAGE
   ============================================================ */
.pricing-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pricing-card__header {
  background: var(--sage);
  padding: 2rem;
  color: var(--white);
}
.pricing-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--white);
}
.pricing-card__header .eyebrow { color: var(--gold); margin-bottom: 0.5rem; }
.pricing-card__body { padding: 0 2rem 2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__content {
    padding: 6rem 2rem 3rem;
    max-width: 100%;
  }
  .hero__image-col {
    height: 60vw;
    min-height: 300px;
  }
  .hero__image-overlay { display: none; }

  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-wrap img { aspect-ratio: 16/9; }

  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact-bar { grid-template-columns: 1fr; text-align: center; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .service-detail__image { position: static; aspect-ratio: 16/9; }
  .pricing-section__grid { grid-template-columns: 1fr; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .section--lg { padding: 5rem 0; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
  * { transition: none !important; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
