/* ============================================
   Orbisys s.r.o. — Premium Sauna Website
   ============================================ */

:root {
  --color-bg: #0f0e0c;
  --color-bg-elevated: #1a1814;
  --color-bg-card: #221f1a;
  --color-surface: #2a2620;

  --color-text: #f5f0e8;
  --color-text-muted: #a89f8f;
  --color-text-subtle: #6b6358;

  --color-accent: #c9a962;
  --color-accent-light: #e0c98a;
  --color-accent-dark: #9a7b3c;

  --color-wood: #3d2e1f;
  --color-wood-light: #5c4a35;

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

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

  --header-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Typography */
.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section__eyebrow--light {
  color: var(--color-accent-light);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.section__title--light {
  color: var(--color-text);
}

.section__title em {
  font-style: italic;
  color: var(--color-accent-light);
}

.section__lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  max-width: 540px;
}

.section__lead--center {
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: var(--space-2xl) 0;
}

.section__header {
  margin-bottom: var(--space-xl);
}

.section__header--center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-bg);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn--ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-light);
}

.btn--large {
  padding: 1.125rem 2.5rem;
  font-size: 0.9375rem;
}

.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(15, 14, 12, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-bg);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: var(--radius-sm);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  padding: 0.625rem 1.25rem;
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-accent-light);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: rgba(201, 169, 98, 0.25);
  border-color: var(--color-accent);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 14, 12, 0.4) 0%,
    rgba(15, 14, 12, 0.6) 50%,
    rgba(15, 14, 12, 0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: var(--header-height);
  max-width: 800px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent-light);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-subtle);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Stats */
.stats {
  background: var(--color-bg-elevated);
  border-top: 1px solid rgba(201, 169, 98, 0.1);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  padding: var(--space-lg) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.stats__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.about__features {
  margin-top: var(--space-lg);
}

.about__features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--color-text);
  font-weight: 400;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.about__features svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.about__image {
  position: relative;
}

.about__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

/* Craft */
.craft {
  background: var(--color-bg-elevated);
}

.craft__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.craft__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.08);
  transition: var(--transition);
}

.craft__card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.2);
  box-shadow: var(--shadow-lg);
}

.craft__card--featured {
  border-color: rgba(201, 169, 98, 0.25);
}

.craft__card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.craft__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.craft__card:hover .craft__card-img img {
  transform: scale(1.05);
}

.craft__card-body {
  padding: var(--space-md);
}

.craft__card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.craft__card-body p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Customization */
.customize__paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.customize__path {
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.08);
  transition: var(--transition);
}

.customize__path:hover {
  border-color: rgba(201, 169, 98, 0.2);
  transform: translateY(-4px);
}

.customize__path--featured {
  border-color: rgba(201, 169, 98, 0.25);
  background: linear-gradient(
    135deg,
    var(--color-bg-card) 0%,
    rgba(61, 46, 31, 0.4) 100%
  );
}

.customize__path-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.customize__path-icon svg {
  width: 26px;
  height: 26px;
}

.customize__path h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.customize__path p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.customize__woods-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.customize__woods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.customize__wood {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 169, 98, 0.08);
  transition: var(--transition);
}

.customize__wood:hover {
  border-color: rgba(201, 169, 98, 0.2);
}

.customize__wood-swatch {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.customize__wood h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.customize__wood p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.customize__woods-note {
  text-align: center;
  font-size: 1rem;
  color: var(--color-text-muted);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-md);
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

/* Electronics */
.electronics__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.electronics__visual {
  position: relative;
}

.electronics__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.electronics__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(15, 14, 12, 0.9);
  backdrop-filter: blur(8px);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 169, 98, 0.3);
  text-align: center;
}

.electronics__badge-label {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.electronics__badge-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.1em;
}

.electronics__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.electronics__feature {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 169, 98, 0.08);
  transition: var(--transition);
}

.electronics__feature:hover {
  border-color: rgba(201, 169, 98, 0.2);
}

.electronics__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
}

.electronics__feature-icon svg {
  width: 24px;
  height: 24px;
}

.electronics__feature h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.electronics__feature p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Bio Sauna */
.bio {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.bio__bg {
  position: absolute;
  inset: 0;
}

.bio__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 14, 12, 0.92) 0%,
    rgba(15, 14, 12, 0.75) 50%,
    rgba(15, 14, 12, 0.85) 100%
  );
}

.bio__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-xl);
}

.bio__card {
  max-width: 560px;
  padding: var(--space-xl);
  background: rgba(26, 24, 20, 0.85);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.bio__tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-accent-light);
  margin-bottom: var(--space-md);
}

.bio__card p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.bio__card strong {
  color: var(--color-accent-light);
  font-weight: 500;
}

.bio__benefits {
  margin-bottom: var(--space-lg);
}

.bio__benefits li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-md);
  border-left: 2px solid var(--color-accent);
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.bio__benefits strong {
  display: block;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 0.125rem;
}

.bio__health {
  width: 100%;
  padding: var(--space-xl);
  background: rgba(26, 24, 20, 0.85);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.bio__health-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.bio__health-intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  font-size: 1rem;
}

.bio__health-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.bio__health-item {
  padding: var(--space-md);
  background: rgba(15, 14, 12, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 169, 98, 0.08);
  transition: var(--transition);
}

.bio__health-item:hover {
  border-color: rgba(201, 169, 98, 0.2);
}

.bio__health-item--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
  border-color: rgba(201, 169, 98, 0.25);
  background: linear-gradient(
    135deg,
    rgba(15, 14, 12, 0.6) 0%,
    rgba(61, 46, 31, 0.3) 100%
  );
}

.bio__health-item--featured .bio__health-icon {
  margin-bottom: 0;
}

.bio__health-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.bio__health-icon svg {
  width: 22px;
  height: 22px;
}

.bio__health-item h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.bio__health-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.bio__health-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
  font-style: italic;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

/* Process */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.process__step {
  position: relative;
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.process__number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(201, 169, 98, 0.2);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.process__step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Gallery */
.gallery {
  background: var(--color-bg-elevated);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: var(--space-sm);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(15, 14, 12, 0.9), transparent);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text);
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery__item:hover figcaption {
  transform: translateY(0);
}

/* CTA */
.cta {
  padding: var(--space-2xl) 0;
  background: linear-gradient(
    135deg,
    var(--color-wood) 0%,
    var(--color-bg-elevated) 50%,
    var(--color-wood) 100%
  );
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.cta__inner {
  text-align: center;
  max-width: 600px;
}

.cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.cta__inner h2 em {
  font-style: italic;
  color: var(--color-accent-light);
}

.cta__inner p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact__details {
  margin-top: var(--space-lg);
}

.contact__detail {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.contact__detail svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__detail span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: 0.25rem;
}

.contact__detail a {
  color: var(--color-text);
  transition: var(--transition);
}

.contact__detail a:hover {
  color: var(--color-accent-light);
}

.contact__detail p {
  color: var(--color-text);
}

.contact__form {
  background: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form__group input,
.form__group textarea {
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--color-text-subtle);
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

.form__note {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--color-text-subtle);
  text-align: center;
}

/* Cold Plunge */
.plunge {
  background: var(--color-bg-elevated);
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.plunge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.plunge__visual {
  position: relative;
}

.plunge__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.plunge__badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: rgba(15, 14, 12, 0.9);
  backdrop-filter: blur(8px);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 169, 98, 0.3);
}

.plunge__badge-label {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.plunge__badge-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
}

.plunge__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.plunge__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.plunge__feature {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 169, 98, 0.08);
  transition: var(--transition);
}

.plunge__feature:hover {
  border-color: rgba(201, 169, 98, 0.2);
}

.plunge__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
}

.plunge__feature-icon svg {
  width: 24px;
  height: 24px;
}

.plunge__feature h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.plunge__feature p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.plunge__pairing {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.15);
}

.plunge__pairing-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.plunge__pairing-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.plunge__pairing-content strong {
  color: var(--color-accent-light);
  font-weight: 500;
}

.plunge__pairing-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.plunge__pairing-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: rgba(15, 14, 12, 0.5);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

.plunge__pairing-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(201, 169, 98, 0.1);
  border-radius: 50%;
}

.plunge__pairing-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.plunge__pairing-step p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.plunge__health {
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.15);
}

.plunge__health-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.plunge__health-intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  font-size: 1rem;
}

.plunge__health-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.plunge__health-item {
  padding: var(--space-md);
  background: rgba(15, 14, 12, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 169, 98, 0.08);
  transition: var(--transition);
}

.plunge__health-item:hover {
  border-color: rgba(201, 169, 98, 0.2);
}

.plunge__health-item--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
  border-color: rgba(201, 169, 98, 0.25);
  background: linear-gradient(
    135deg,
    rgba(15, 14, 12, 0.6) 0%,
    rgba(61, 46, 31, 0.3) 100%
  );
}

.plunge__health-item--featured .plunge__health-icon {
  margin-bottom: 0;
}

.plunge__health-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.plunge__health-icon svg {
  width: 22px;
  height: 22px;
}

.plunge__health-item h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.plunge__health-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.plunge__health-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
  font-style: italic;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

/* Footer */
.footer {
  background: var(--color-bg);
  border-top: 1px solid rgba(201, 169, 98, 0.1);
  padding-top: var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.footer__brand p {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  max-width: 280px;
}

.footer__links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.footer__links li {
  margin-bottom: var(--space-xs);
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--color-accent-light);
}

.footer__eos-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-accent);
  border: 2px solid rgba(201, 169, 98, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.1em;
}

.footer__partner p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer__bottom {
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(201, 169, 98, 0.08);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .bio__health-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plunge__pairing {
    grid-template-columns: 1fr;
  }

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

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

  .craft__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
    --space-2xl: 4rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-bg-elevated);
    border-left: 1px solid rgba(201, 169, 98, 0.1);
    transition: right 0.4s ease;
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__link {
    font-size: 1rem;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .customize__paths {
    grid-template-columns: 1fr;
  }

  .customize__woods-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .about__grid,
  .electronics__grid,
  .plunge__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about__image {
    order: -1;
  }

  .electronics__visual {
    order: -1;
  }

  .plunge__visual img {
    aspect-ratio: 16/10;
  }

  .plunge__health-grid {
    grid-template-columns: 1fr;
  }

  .plunge__health-item--featured {
    grid-template-columns: 1fr;
  }

  .plunge__pairing,
  .plunge__health {
    padding: var(--space-lg);
  }

  .bio__content {
    align-items: stretch;
  }

  .bio__card {
    max-width: 100%;
    padding: var(--space-lg);
  }

  .bio__health {
    padding: var(--space-lg);
  }

  .bio__health-grid {
    grid-template-columns: 1fr;
  }

  .bio__health-item--featured {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .contact__form {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand p {
    max-width: none;
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }
}