/* =============================================
   ENERGIECODE — Premium Wellness Website
   White + Gold aesthetic, Apple-style minimal
   ============================================= */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  hanging-punctuation: first last;
  scroll-padding-top: 0px;
  /* Scroll snap — mandatory so each section locks into place */
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: auto;
}

/* === DESIGN TOKENS === */
:root {
  /* Typography */
  --font-display: 'Zodiak', Georgia, serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;

  /* Fluid Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Colors — White + Gold ONLY */
  --color-bg: #FFFFFF;
  --color-gold: #D4B44A;
  --color-gold-light: #E0C45C;
  --color-gold-dark: #C9A83E;
  --color-gold-deep: #B89530;
  --color-gold-gradient: linear-gradient(135deg, #D4B44A 0%, #E0C45C 50%, #D4B44A 100%);
  --color-gold-subtle: rgba(204, 165, 48, 0.08);
  --color-gold-border: rgba(204, 165, 48, 0.2);
  --color-text: #C9A83E;
  --color-text-light: #D4B44A;

  /* Radius — everything rounded */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 300ms var(--ease);

  /* Content widths */
  --content-narrow: 680px;
  --content-default: 900px;
  --content-wide: 1100px;
}

/* === BODY === */
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-gold-dark);
  background-color: var(--color-bg);
  text-align: center;
  overflow-x: hidden;
  /* iOS elastic overscroll simulation */
  -webkit-overflow-scrolling: touch;
}

/* === SELECTION === */
::selection {
  background: rgba(204, 165, 48, 0.2);
  color: var(--color-text);
}

/* === FOCUS === */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* === LINKS & INTERACTIVES === */
a, button, [role="button"] {
  transition: color var(--transition),
              background var(--transition),
              border-color var(--transition),
              box-shadow var(--transition),
              transform var(--transition),
              opacity var(--transition);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; font: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.15;
  color: var(--color-gold);
}

p { text-wrap: pretty; max-width: 72ch; text-align: center; margin-left: auto; margin-right: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* === SCROLL SNAP SECTIONS === */
.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(204, 165, 48, 0.1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  /* Ensure nav doesn't interfere with snap */
  pointer-events: auto;
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav--scrolled {
  box-shadow: 0 1px 24px rgba(204, 165, 48, 0.08);
}

.nav__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: var(--space-4) 16px var(--space-4) 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.nav__logo:hover {
  opacity: 1;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    var(--color-gold) 40%,
    #F5E6A3 50%,
    var(--color-gold) 60%,
    var(--color-gold) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
}

.nav__logo:hover .nav__logo-text {
  background-position: 0% 0;
}

.nav__logo-img {
  width: 160px;
  height: 160px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 8px rgba(224, 196, 92, 0.5)) drop-shadow(0 0 20px rgba(212, 180, 74, 0.35)) drop-shadow(0 0 40px rgba(212, 180, 74, 0.2));
  transition: filter 0.4s var(--ease), transform 0.4s var(--ease);
}

.nav__logo:hover .nav__logo-img {
  filter: brightness(1.15) drop-shadow(0 0 8px rgba(212, 180, 74, 0.5));
  transform: scale(1.05);
  animation: shimmer-tree 0.8s ease forwards;
}

@keyframes shimmer-tree {
  0% { filter: brightness(1) drop-shadow(0 0 0 transparent); }
  40% { filter: brightness(1.3) drop-shadow(0 0 16px rgba(245, 230, 163, 0.7)); }
  100% { filter: brightness(1.1) drop-shadow(0 0 8px rgba(212, 180, 74, 0.4)); }
}



.nav__links {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-evenly;
  list-style: none;
  margin: 0 var(--space-6);
}

.nav__links a {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-gold-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--color-gold-dark) 0%,
    var(--color-gold-dark) 40%,
    #F5E6A3 50%,
    var(--color-gold-dark) 60%,
    var(--color-gold-dark) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
}

.nav__links a:hover {
  background-position: 0% 0;
}

.nav__cta {
  background: var(--color-gold-gradient) !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  padding: var(--space-2) var(--space-6) !important;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  font-size: var(--text-sm) !important;
  transition: all 0.4s var(--ease) !important;
  position: relative;
  overflow: hidden;

}

.nav__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: none;
}

.nav__cta:hover::after {
  left: 120%;
  transition: left 0.6s ease;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(224, 196, 92, 0.5), 0 0 30px rgba(212, 180, 74, 0.3);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  background: var(--color-bg);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-32) var(--space-6) var(--space-16);
  max-width: 780px;
}

.hero__title {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold) 40%, #F5E6A3 50%, var(--color-gold) 60%, var(--color-gold) 100%) !important;
  background-size: 250% 100% !important;
  background-position: 100% 0 !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  transition: background-position 0.6s ease !important;
  cursor: default;
}

.hero__title:hover {
  background-position: 0% 0 !important;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: var(--space-12);
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold-border);
  border-radius: var(--radius-full);
  text-decoration: none;
  animation: bounceDown 2s ease-in-out infinite;
}

.hero__scroll:hover {
  background: var(--color-gold-subtle);
  border-color: var(--color-gold);
}

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

/* === WATERMARK BACKGROUND === */
.watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130vmin;
  height: 130vmin;
  pointer-events: none;
  z-index: 0;
}

.watermark-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.12;
  filter: blur(0.5px);
  user-select: none;
}

.section {
  position: relative;
  overflow: visible;
  padding: var(--space-16) 0;
  flex-direction: column;
}

.section--about,
.section--philosophy,
.section--effect,
.section--disclaimer {
  overflow: hidden;
}

.section .container {
  position: relative;
  z-index: 1;
}

/* === SECTION SCROLL ARROWS === */
.section__scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: var(--space-10);
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold-border);
  border-radius: var(--radius-full);
  text-decoration: none;
  animation: bounceDown 2s ease-in-out infinite;
  align-self: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.section__scroll:hover {
  background: var(--color-gold-subtle);
  border-color: var(--color-gold);
}

/* === SECTIONS === */

.section__title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-8);
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold) 40%, #F5E6A3 50%, var(--color-gold) 60%, var(--color-gold) 100%) !important;
  background-size: 250% 100% !important;
  background-position: 100% 0 !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  transition: background-position 0.6s ease !important;
  cursor: default;
}

.section__title:hover {
  background-position: 0% 0 !important;
}

.section__content {
  max-width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
}

.section__text p {
  margin-bottom: var(--space-5);
  color: var(--color-gold-dark);
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.7;
}

.section__lead {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-gold-dark) !important;
  line-height: 1.7;
  text-align: center !important;
  text-align-last: center !important;
  word-spacing: normal !important;
}

.section__highlight {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-gold) !important;
  font-style: normal;
  margin-top: var(--space-4);
}

/* Divider */
.divider {
  width: 60px;
  height: 1.5px;
  background: var(--color-gold-gradient);
  margin-top: var(--space-12);
  border-radius: var(--radius-full);
}

/* === PHILOSOPHY SECTION (Block 3) — Special Treatment === */
.section--philosophy {
  padding: var(--space-16) 0;
}

.philosophy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.philosophy__icon {
  color: var(--color-gold);
  opacity: 0.4;
  margin-bottom: var(--space-10);
}

.philosophy__icon svg {
  margin: 0 auto;
}

.philosophy__quote {
  border: none;
  padding: 0;
  margin: 0 0 var(--space-10);
}

.philosophy__headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    var(--color-gold) 40%,
    #F5E6A3 50%,
    var(--color-gold) 60%,
    var(--color-gold) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
  cursor: default;
}

.philosophy__headline:hover {
  background-position: 0% 0;
}

.philosophy__sub {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-4);
  line-height: 1.4;
  text-align: center !important;
  text-align-last: center !important;
  word-spacing: normal !important;
  background: linear-gradient(
    90deg,
    var(--color-gold-dark) 0%,
    var(--color-gold-dark) 40%,
    #F5E6A3 50%,
    var(--color-gold-dark) 60%,
    var(--color-gold-dark) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
  cursor: default;
}

.philosophy__sub:hover {
  background-position: 0% 0;
}

.philosophy__body {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-gold-dark);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* === DISCLAIMER (Block 5) === */
.disclaimer {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer__intro {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-6);
  line-height: 1.7;
  text-align: center;
  background: linear-gradient(90deg, var(--color-gold-dark) 0%, var(--color-gold-dark) 40%, #F5E6A3 50%, var(--color-gold-dark) 60%, var(--color-gold-dark) 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
  cursor: default;
}

.disclaimer__intro:hover {
  background-position: 0% 0;
}

.disclaimer__box {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.disclaimer__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-4);
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    var(--color-gold) 40%,
    #F5E6A3 50%,
    var(--color-gold) 60%,
    var(--color-gold) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
  cursor: default;
}

.disclaimer__title:hover {
  background-position: 0% 0;
}

.disclaimer__box p {
  color: var(--color-gold-dark);
  margin-bottom: var(--space-2);
  font-size: var(--text-xs);
  line-height: 1.6;
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

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

/* === CONTACT (Block 6) === */
.section--contact {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(204,165,48,0.03) 100%);
}

.contact {
  text-align: center;
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.contact .section__title {
  text-align: center;
}

.contact__text {
  margin-bottom: var(--space-10);
}

.contact__text p {
  margin: 0 auto var(--space-5);
  text-align: center;
}

.contact__text .section__lead {
  max-width: 600px;
  margin: 0 auto var(--space-5);
  font-weight: 600 !important;
  background: linear-gradient(90deg, var(--color-gold-dark) 0%, var(--color-gold-dark) 40%, #F5E6A3 50%, var(--color-gold-dark) 60%, var(--color-gold-dark) 100%) !important;
  background-size: 250% 100% !important;
  background-position: 100% 0 !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  transition: background-position 0.6s ease !important;
  cursor: default;
}

.contact__text .section__lead:hover {
  background-position: 0% 0 !important;
}

.contact__free {
  font-size: var(--text-base);
  color: var(--color-gold-dark);
}

.contact__free strong {
  font-weight: 600;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold) 40%, #F5E6A3 50%, var(--color-gold) 60%, var(--color-gold) 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
  cursor: default;
}

.contact__free strong:hover {
  background-position: 0% 0;
}

.contact__note {
  font-size: var(--text-sm);
  color: var(--color-gold-dark);
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(90deg, var(--color-gold-dark) 0%, var(--color-gold-dark) 40%, #F5E6A3 50%, var(--color-gold-dark) 60%, var(--color-gold-dark) 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
  cursor: default;
}

.contact__note:hover {
  background-position: 0% 0;
}

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

.contact__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  min-width: 180px;
  justify-content: center;
  color: var(--color-gold);
}

.contact__btn svg {
  color: var(--color-gold);
  stroke: var(--color-gold);
  fill: none;
  flex-shrink: 0;
}

.contact__btn--whatsapp svg {
  fill: #FFFFFF;
  stroke: none;
  color: #FFFFFF;
}

.contact__btn:hover {
  transform: translateY(-2px);
}

.contact__btn--whatsapp {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  position: relative;
  overflow: hidden;
}

.contact__btn--whatsapp svg {
  fill: var(--color-gold) !important;
  color: var(--color-gold) !important;
}

.contact__btn--whatsapp span {
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    var(--color-gold) 40%,
    #F5E6A3 50%,
    var(--color-gold) 60%,
    var(--color-gold) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
}

.contact__btn--whatsapp:hover span {
  background-position: 0% 0;
}

.contact__btn--whatsapp:hover {
  background: var(--color-gold-subtle);
}

.contact__btn--email {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  position: relative;
  overflow: hidden;
}

.contact__btn--email span {
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    var(--color-gold) 40%,
    #F5E6A3 50%,
    var(--color-gold) 60%,
    var(--color-gold) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
}

.contact__btn--email:hover span {
  background-position: 0% 0;
}

.contact__btn--email:hover {
  background: var(--color-gold-subtle);
}

.contact__btn--phone {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  position: relative;
  overflow: hidden;
}

.contact__btn--phone span {
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    var(--color-gold) 40%,
    #F5E6A3 50%,
    var(--color-gold) 60%,
    var(--color-gold) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
}

.contact__btn--phone:hover span {
  background-position: 0% 0;
}

.contact__btn--phone:hover {
  background: var(--color-gold-subtle);
  border-color: var(--color-gold);
}

/* === FOOTER === */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-gold-border);
  padding: var(--space-8) 0;
  min-height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

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

.footer__logo {
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: none;
  object-fit: contain;
  background: transparent;
}

.footer__brand {
  cursor: default;
}

.footer__brand:hover .footer__logo {
  filter: drop-shadow(0 0 8px rgba(224, 196, 92, 0.6)) drop-shadow(0 0 16px rgba(212, 180, 74, 0.3));
  transform: scale(1.05);
}

.footer__logo {
  transition: filter 0.4s var(--ease), transform 0.4s var(--ease);
}

.footer__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold) 40%, #F5E6A3 50%, var(--color-gold) 60%, var(--color-gold) 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
}

.footer__brand:hover .footer__name {
  background-position: 0% 0;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-gold-dark);
}

.footer__attr {
  font-size: var(--text-xs);
  color: var(--color-gold-dark);
  text-decoration: none;
  opacity: 0.7;
}

.footer__attr:hover {
  color: var(--color-gold);
  opacity: 1;
}

/* === IMPRESSUM LINK === */
.footer__impressum {
  font-size: var(--text-xs);
  color: var(--color-gold-dark);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.footer__impressum:hover {
  color: var(--color-gold-light);
}

/* === IMPRESSUM MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.modal-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  max-width: 560px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}

.modal-overlay--visible .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  color: var(--color-gold);
  padding: var(--space-2);
  border-radius: var(--radius-full);
  transition: background 0.3s var(--ease);
}

.modal__close:hover {
  background: var(--color-gold-subtle);
}

.modal__title {
  font-size: var(--text-xl) !important;
  margin-bottom: var(--space-6);
  text-align: center;
}

.modal__content p {
  font-size: var(--text-sm);
  color: var(--color-gold-dark);
  margin-bottom: var(--space-4);
  text-align: left;
  line-height: 1.6;
}

.modal__content strong {
  color: var(--color-gold);
}

/* === COOKIE BANNER (DSGVO) === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: var(--space-4) var(--space-6);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-gold-border);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.cookie-banner__text {
  font-size: var(--text-sm);
  color: var(--color-gold-dark);
  line-height: 1.5;
  max-width: none;
}

.cookie-banner__btn {
  flex-shrink: 0;
  background: var(--color-gold-gradient);
  color: #FFFFFF;
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
}

.cookie-banner__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* === RESPONSIVE — MOBILE === */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__logo-img {
    width: 70px;
    height: 70px;
  }

  .nav__logo-text {
    font-size: var(--text-base) !important;
  }

  .nav__inner {
    padding: var(--space-3) var(--space-4) !important;
  }

  p {
    text-align: center !important;
    text-align-last: center !important;
  }

  .watermark-bg {
    width: 100vmin;
    height: 100vmin;
  }

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-8);
    padding: var(--space-16);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
    z-index: 99;
  }

  .nav__links--open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    font-size: var(--text-xl);
    font-family: var(--font-display);
    color: var(--color-gold);
    text-align: center;
  }

  .nav__cta {
    font-size: var(--text-base) !important;
    padding: var(--space-3) var(--space-8) !important;
  }

  .hero__content {
    padding: var(--space-24) var(--space-4) var(--space-12);
  }

  .hero__logo {
    width: 180px;
  }

  .hero__title {
    font-size: clamp(1.75rem, 1rem + 3vw, 2.5rem);
  }

  .hero__subtitle {
    font-size: var(--text-base);
  }

  .philosophy__headline {
    font-size: var(--text-2xl);
  }

  .philosophy__sub {
    font-size: var(--text-lg);
  }

  .contact__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact__btn {
    min-width: auto;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
  }

  .footer__links {
    flex-direction: column;
    gap: var(--space-2);
  }


}

@media (max-width: 480px) {
  .hero__logo {
    width: 150px;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .nav__logo-img {
    width: 60px;
    height: 60px;
  }

  .nav__logo-text {
    font-size: var(--text-sm) !important;
  }
}

/* Smooth page transitions */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
