/* ------------------------------
   ELYSON SPA CONCEPTS
   Ultra-luxury single page
------------------------------ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, -apple-system, sans-serif;
  background-color: #ffffff;
  color: #3a332a;
  line-height: 1.55;
  letter-spacing: -0.1px;
}

/* Palette */
:root {
  --gold: #c9b27a;
  --gold-soft: rgba(201,178,122,0.22);
  --text-dark: #2d2620;
  --text-soft: #6b645b;
  --border-soft: rgba(0,0,0,0.08);
}

/* Background watermark */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1400px;
  height: 1400px;
  background: url("elyson-bg.png") center/contain no-repeat;
  opacity: 0.06;
  filter: blur(3px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

/* Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.8rem;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 50;
}

.header-inner {
  height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-wordmark {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding-left: 0.12em;
}

/* HEADER RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* NAVIGATION */
.nav {
  display: flex;
  gap: 2.4rem;
}

.nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  transition: opacity 0.25s ease;
}

.nav a:hover {
  opacity: 0.55;
}

/* HEADER CONTROLS */
.header-controls {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

/* LANGUAGE TOGGLE */
.lang-toggle {
  display: flex;
  gap: 0.25rem;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  padding: 3px;
  background: #fff;
}

.lang-btn {
  padding: 4px 10px;
  border-radius: 12px;
  border: none;
  background: transparent;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-transform: uppercase;
  color: var(--text-soft);
}

.lang-btn.is-active {
  background: var(--gold-soft);
  color: var(--text-dark);
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-links a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.social-links svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--text-soft);
  stroke-width: 1.4;
}

.social-links svg path {
  fill: var(--text-soft);
  stroke: none;
}

.social-links a:hover {
  border-color: var(--gold);
  background: #fdf9f0;
  transform: translateY(-1px);
}

.social-links a:hover svg {
  stroke: var(--gold);
}

.social-links a:hover svg path {
  fill: var(--gold);
}

/* HERO */
.hero {
  padding: 180px 0 140px;
  background: #ffffff;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1.18;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
}

.hero-text {
  font-size: 1.06rem;
  color: var(--text-soft);
  margin-bottom: 2.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: #b9a067;
}

.btn-ghost {
  border: 1px solid var(--border-soft);
  color: var(--text-dark);
  background: rgba(255,255,255,0.7);
}

.btn-ghost:hover {
  background: #f8f6f1;
}

/* SECTIONS */
.section {
  padding: 120px 0;
}

.section-alt {
  background: #faf8f4;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 500;
  margin-bottom: 1.8rem;
  color: var(--text-dark);
}

.section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.section p {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

/* Subheading inside section */
.subheading {
  margin-top: 2.2rem;
  margin-bottom: 1.4rem;
}

/* TWO COLUMN LAYOUT */
.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

/* About panel */
.about-panel {
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  padding: 1.9rem 2rem;
  background: rgba(255,255,255,0.96);
}

/* Hotels intro */
.hotels-intro {
  margin-bottom: 1.6rem;
}

/* LISTS */
.list {
  list-style: none;
  margin-top: 1rem;
}

.list li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.55rem;
  color: var(--text-soft);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* BENEFITS / CARDS GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}

.partnership-grid {
  margin-bottom: 2.2rem;
}

.why-grid {
  grid-template-columns: repeat(4,1fr);
}

.card {
  border: 1px solid var(--border-soft);
  padding: 2.2rem;
  border-radius: 16px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.04);
}

.small-card {
  padding: 1.8rem;
}

/* NOTES */
.note {
  font-size: 0.9rem;
  color: var(--text-soft);
  opacity: 0.9;
}

/* CONTACT & FOUNDER */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
}

.contact-block {
  border: 1px solid var(--border-soft);
  padding: 1.8rem 2rem;
  border-radius: 18px;
  background: #ffffff;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
  font-size: 0.96rem;
}

.label {
  min-width: 110px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-soft);
}

.contact a {
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.contact a:hover {
  border-color: var(--gold);
}

.founder-card {
  border: 1px solid var(--border-soft);
  padding: 2rem;
  border-radius: 18px;
  background: #fff;
}

.founder-name {
  margin-top: 1rem;
  font-size: 0.96rem;
}

/* FOOTER */
.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.96);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-social a {
  width: 26px;
  height: 26px;
}

/* IMPRESSUM LINK */
.imprint-link {
  font-size: 0.82rem;
  text-decoration: none;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(0,0,0,0.16);
  padding-bottom: 1px;
}

.imprint-link:hover {
  color: var(--text-dark);
  border-color: var(--gold);
}

/* ANIMATIONS */
.fade-section {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* RESPONSIVE WATERMARK */
@media (max-width: 1024px) {
  body::before {
    width: 1000px;
    height: 1000px;
    opacity: 0.06;
  }
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 980px) {
  .benefits-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 110px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .header-right {
    gap: 1.4rem;
  }

  .benefits-grid {
    gap: 1.6rem;
  }
}

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

  .header-inner {
    height: 88px;
  }

  .hero {
    padding-top: 140px;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  body::before {
    width: 700px;
    height: 700px;
    opacity: 0.07;
    filter: blur(3.2px);
  }
}
