/* ===== Your Best Party — Design System (Premium) ===== */

:root {
  /* Colors — restrained, luxury-editorial palette (muted; used as whispers of tone, never solid blocks) */
  --beige-lightest: #FBF9F4;
  --beige: #F3EEE4;
  --beige-border: #E5DCC9;

  --sage: #E7E9DF;       /* pale, near-neutral — for hairlines/tints only */
  --sage-dark: #47533C;  /* deep botanical ink — text/icon accent only */
  --sage-mid: #7C8F6A;

  --terracotta: #EAD9C8; /* pale sand-blush — tints only */
  --terracotta-dark: #7A5138;

  --gold: #A9895A;       /* antique brass — the one accent used deliberately */
  --gold-pale: #EFE6D2;
  --gold-dark: #7C5F34;

  --text-primary: #2A241C;
  --text-secondary: #665F53;
  --text-muted: #9A9284;

  /* Type */
  --font-display: 'Fraunces', serif;
  --font-hand: 'Caveat', cursive;
  --font-body: 'Jost', sans-serif;

  /* Layout */
  --max-width: 1220px;
  --radius: 2px;
  --radius-lg: 3px;
  --ease: cubic-bezier(.22,.61,.28,1);
  --ease-slow: cubic-bezier(.16,.63,.19,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--beige-lightest);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.1px;
}

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

a { color: inherit; text-decoration: none; transition: opacity 0.35s ease, color 0.35s ease; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Language toggle ===== */
[data-lang="en"] .lang-el { display: none; }
[data-lang="el"] .lang-en { display: none; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--beige-border);
  transition: background 0.4s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 28px;
}

.logo {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 27px;
  color: var(--sage-dark);
  white-space: nowrap;
}

.logo-img {
  height: 58px;
  width: 58px;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  border: 0.5px solid var(--beige-border);
  border-radius: 20px;
  overflow: hidden;
  font-size: 11px;
}

.lang-switch button {
  border: none;
  background: transparent;
  padding: 7px 13px;
  cursor: pointer;
  color: var(--text-secondary);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.lang-switch button.active {
  background: var(--sage-dark);
  color: var(--beige-lightest);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--text-primary);
  color: var(--text-primary) !important;
  padding: 9px 18px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.35s ease, color 0.35s ease;
}
.whatsapp-btn:hover { background: var(--text-primary); color: var(--beige-lightest) !important; }

/* ===== Hero ===== */
.hero {
  background: var(--beige);
  padding: 168px 32px 120px;
  text-align: center;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 26px;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.18;
  margin: 0 0 22px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin: 0 0 30px;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.9;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }

.btn-sage { background: var(--sage-dark); color: var(--beige-lightest); }
.btn-terracotta { background: var(--terracotta-dark); color: var(--beige-lightest); }
.btn-gold { background: var(--gold-dark); color: var(--beige-lightest); }
.btn-dark { background: var(--text-primary); color: var(--beige-lightest); }
.btn-outline { background: transparent; border-color: currentColor; }

/* ===== Path cards (3 audiences) ===== */
.paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--beige-border);
}

.path-card {
  background-size: cover;
  background-position: center;
  padding: 88px 28px;
  text-align: center;
  transition: filter 0.6s var(--ease-slow);
  position: relative;
}

.path-card:hover { filter: brightness(1.05); }

.path-card .icon-dot {
  width: 30px;
  height: 1px;
  border-radius: 0;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.path-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 24px;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}

.path-card p {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

.path-card[data-tone="sage"] { background-color: var(--sage); }
.path-card[data-tone="sage"] h3, .path-card[data-tone="sage"] p { color: var(--beige-lightest); }
.path-card[data-tone="sage"] .icon-dot { background: var(--gold); }

.path-card[data-tone="terracotta"] { background-color: var(--terracotta); }
.path-card[data-tone="terracotta"] h3, .path-card[data-tone="terracotta"] p { color: var(--beige-lightest); }
.path-card[data-tone="terracotta"] .icon-dot { background: var(--gold); }

.path-card[data-tone="gold"] { background-color: var(--gold); }
.path-card[data-tone="gold"] h3, .path-card[data-tone="gold"] p { color: var(--beige-lightest); }
.path-card[data-tone="gold"] .icon-dot { background: var(--beige-lightest); }

/* ===== Section generic ===== */
section { padding: 128px 32px; }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 38px);
  text-align: center;
  margin: 0 0 56px;
}

.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.9;
}

/* ===== Experience grid ===== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.experience-item { text-align: center; }

.experience-item .tile {
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  overflow: hidden;
}

.experience-item .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-slow);
}
.experience-item:hover .tile img { transform: scale(1.045); }

.experience-item p {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--beige);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial { text-align: center; }

.testimonial p.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 16px;
  line-height: 1.65;
}

.testimonial p.source {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0;
}

/* ===== Philosophy strip ===== */
.philosophy-strip {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
}

.philosophy-strip .ph-mark {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--sage);
}

.philosophy-strip h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 8px;
}

.philosophy-strip p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.8;
}

/* ===== Footer / contact ===== */
.site-footer {
  background: var(--text-primary);
  color: var(--beige);
  padding: 72px 32px 40px;
  text-align: center;
}

.site-footer .logo { color: var(--gold); margin-bottom: 16px; display: inline-block; }

.footer-channels {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 28px 0;
  color: var(--beige);
}
.footer-channels a:hover { opacity: 0.7; }

.footer-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 24px;
  letter-spacing: 0.5px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-primary);
  position: relative;
  z-index: 160;
}
.mobile-menu-btn svg { display: block; }

/* ===== Responsive ===== */
@media (max-width: 780px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--beige-lightest);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 15px;
    z-index: 150;
  }
  .main-nav.mobile-open { display: flex; }
  .mobile-menu-btn { display: block; }
  .site-header .container { padding-top: 14px; padding-bottom: 14px; gap: 10px; }
  .logo { font-size: 22px; }
  .logo-img { height: 42px; width: 42px; }
  .header-actions { gap: 8px; }
  .lang-switch button { padding: 6px 9px; font-size: 10px; }
  .whatsapp-btn { padding: 8px 12px; font-size: 10px; letter-spacing: 0.5px; }
  .paths { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr) !important; gap: 20px !important; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .philosophy-strip { flex-direction: column; text-align: center; }
  .hero { padding: 48px 20px 32px; }
  .eyebrow { margin-bottom: 12px; }
  .hero h1 { font-size: clamp(26px, 7vw, 34px); margin-bottom: 12px; }
  .hero-sub { margin-bottom: 16px; }
  .hero-desc { margin-bottom: 24px; font-size: 14px; }
  .path-card { padding: 32px 20px; }
  section { padding: 64px 24px; }
}

/* ===== Focus visibility ===== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}

/* ===== Subtle scroll reveal (luxury, restrained) ===== */
.ybp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease-slow), transform 1s var(--ease-slow);
}
.ybp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .ybp-reveal { opacity: 1 !important; transform: none !important; }
}
