/* ============================================
   GOLDSCHMIEDE MANUFAKTUR Ã¢â‚¬â€ Design System
   Premium Goldsmith Website
   DSGVO-konform: Alle Fonts lokal eingebettet
   ============================================ */

/* --- FONTS (lokal, keine externen Requests) --- */
@font-face {
  font-family: 'Marcellus';
  src: url('../fonts/Marcellus-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* --- CSS CUSTOM PROPERTIES (Design Tokens) --- */
:root {
  /* Colors */
  --bg-primary: #FDFAF5;
  --bg-secondary: #F5EDE3;
  --bg-tertiary: #EDE4D8;
  --bg-dark: #1A1A1A;
  --bg-dark-alt: #2A2A2A;

  --gold-primary: #C5A55A;
  --gold-light: #D4B96E;
  --gold-dark: #A8893E;
  --gold-bg: rgba(197, 165, 90, 0.08);
  --gold-bg-hover: rgba(197, 165, 90, 0.15);

  --text-primary: #2C2C2C;
  --text-secondary: #6B6B6B;
  --text-tertiary: #999;
  --text-light: #F4F1ED;
  --text-light-secondary: #B8B0A5;

  --border: #E5DDD3;
  --border-light: #F0EAE0;
  --border-dark: #3A3A3A;

  --white: #FFFFFF;
  --black: #000000;
  --overlay: rgba(26, 26, 26, 0.55);
  --overlay-light: rgba(26, 26, 26, 0.35);

  /* Typography */
  --font-heading: 'Marcellus', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 900px;
  --container-wide: 1400px;
  --nav-height: 80px;
  --nav-height-scrolled: 64px;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(197, 165, 90, 0.2);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--gold-dark);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Reduced motion */
@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;
  }
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.overline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  display: block;
  margin-bottom: var(--space-md);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.text-gold {
  color: var(--gold-primary);
}

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

.text-secondary {
  color: var(--text-secondary);
}

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

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

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

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

.section--bg {
  background-color: var(--bg-secondary);
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-light);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

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

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

.flex--column {
  flex-direction: column;
}

.flex--gap-sm {
  gap: var(--space-sm);
}

.flex--gap-md {
  gap: var(--space-md);
}

.flex--gap-lg {
  gap: var(--space-lg);
}

.flex--gap-xl {
  gap: var(--space-xl);
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.nav.scrolled {
  height: var(--nav-height-scrolled);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 44px;
  height: 44px;
  transition: transform var(--transition-base);
}

.nav.scrolled .nav__logo-icon {
  width: 36px;
  height: 36px;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav__logo-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.nav__logo-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

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

@media (min-width: 1024px) {
  .nav__menu {
    display: flex;
  }
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-primary);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-primary);
}

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

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  padding: var(--space-sm) 0;
  transition: color var(--transition-base);
}

.nav__dropdown-toggle:hover {
  color: var(--gold-primary);
}

.nav__dropdown-icon {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-base);
}

.nav__dropdown:hover .nav__dropdown-icon {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 200px;
  padding: var(--space-sm) 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.nav__dropdown-link:hover {
  background: var(--gold-bg);
  color: var(--gold-primary);
}

/* CTA Button in nav */
.nav__cta {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  background: var(--gold-primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  transition: all var(--transition-base);
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .nav__cta {
    display: flex;
  }
}

.nav__cta:hover {
  background: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle-line {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

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

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

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

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: rgba(253, 250, 245, 0.85);
  `n backdrop-filter: blur(24px);
  `n -webkit-backdrop-filter: blur(24px);
  `n border-left: 1px solid rgba(197, 165, 90, 0.15);
  `n border-radius: 40px 0 0 40px;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  z-index: 999;
  overflow-y: auto;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
}

.nav__mobile.open {
  transform: translateX(0);
}

.nav__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav__mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile-link {
  display: block;
  padding: 14px 24px;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  border-radius: 50px;
  transition: color var(--transition-base);
}

.nav__mobile-link:hover,
.nav__mobile-link.active {
  background: rgba(197, 165, 90, 0.1);
  color: var(--gold-primary);
}

.nav__mobile-sub {
  padding-left: var(--space-lg);
}

.nav__mobile-sub .nav__mobile-link {
  font-family: var(--font-body);
  font-size: 1rem;
}

.nav__mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding: 14px 28px;
  width: 100%;
  justify-content: center;
  border-radius: 50px;
  background: var(--gold-primary);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  width: 100%;
  justify-content: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  min-height: 48px;
  justify-content: center;
}

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

.btn--primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--gold-primary);
  border: 1.5px solid var(--gold-primary);
}

.btn--secondary:hover {
  background: var(--gold-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.btn--dark:hover {
  background: var(--bg-dark-alt);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--gold-primary);
  padding: 10px 0;
}

.btn--ghost:hover {
  color: var(--gold-dark);
}

.btn--ghost::after {
  content: 'Ã¢â€ â€™';
  transition: transform var(--transition-base);
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

.btn--white {
  background: var(--white);
  color: var(--text-primary);
}

.btn--white:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
}

.btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.hero--full {
  min-height: 100vh;
  margin-top: 0;
  padding-top: var(--nav-height);
}

.hero--sm {
  min-height: 50vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}

.hero__overlay--light {
  background: var(--overlay-light);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: var(--space-3xl) 0;
}

.hero__content--center {
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero .overline {
  color: var(--gold-light);
}

.hero p {
  color: var(--text-light-secondary);
  font-size: 1.05rem;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero__content--center p {
  margin-left: auto;
  margin-right: auto;
}

/* --- CARDS --- */
.card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  transition: all var(--transition-base);
  border: none;
}

.card:hover {
  /* Removed border and shadow so the arch shape looks natural */
}

.card__image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 200px 200px 0 0;
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__body {
  padding: var(--space-md) 0 0 0;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.card__subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.card__price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-primary);
}

.card__text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Icon Card */
.icon-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.icon-card:hover {
  background: var(--gold-bg);
}

.icon-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--gold-bg);
  color: var(--gold-primary);
  transition: all var(--transition-base);
}

.icon-card:hover .icon-card__icon {
  background: var(--gold-primary);
  color: var(--white);
}

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

.icon-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.icon-card__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- USP BAR --- */
.usp-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.usp-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
}

.usp-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold-primary);
}

.usp-item__icon svg {
  width: 100%;
  height: 100%;
}

.usp-item__text {
  display: flex;
  flex-direction: column;
}

.usp-item__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
}

.usp-item__subtitle {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* --- STATS --- */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

/* --- SECTION HEADER --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Gold divider */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold-primary);
  margin: var(--space-lg) auto;
}

.divider--left {
  margin-left: 0;
}

/* --- TABS / FILTER --- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.tab {
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
}

.tab:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.tab.active {
  background: var(--gold-primary);
  color: var(--white);
  border-color: var(--gold-primary);
}

/* --- PROCESS / STEPS --- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  counter-reset: step;
}

@media (min-width: 768px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process__step {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
  counter-increment: step;
}

.process__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.process__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.process__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* --- PREMIUM TIMELINE --- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  padding: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .exposee-card {
    flex-direction: column !important;
    text-align: center;
  }
  .exposee-card__text {
    text-align: center !important;
  }
  .exposee-card__visual {
    margin: 0 auto var(--space-md);
  }
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .timeline__item {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    max-width: 1000px;
    align-items: center;
  }

  .timeline__item:nth-child(even) {
    text-align: right;
  }

  .timeline__item:nth-child(even) .timeline__content {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline__item:nth-child(even) .timeline__year-wrap {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }
}

.timeline__year-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-bg);
  position: relative;
  z-index: 0;
  margin-bottom: -1.5rem;
}

@media (min-width: 900px) {
  .timeline__year {
    font-size: 10rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold-primary);
    opacity: 0.4;
    margin-bottom: 0;
  }
}

.timeline__content {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.timeline__title {
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.timeline__text {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- FOOTER --- */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: var(--space-4xl) 0 var(--space-xl);
}

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

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-light);
  text-decoration: none;
}

.footer__logo-icon {
  width: 40px;
  height: 40px;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer__logo-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
}

.footer__logo-subtitle {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light-secondary);
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-dark);
  color: var(--text-light-secondary);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--white);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
}

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

.footer__link {
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: var(--gold-primary);
}

.footer__contact-item {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  margin-bottom: var(--space-sm);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-primary);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--text-light-secondary);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--text-light-secondary);
  transition: color var(--transition-base);
}

.footer__legal a:hover {
  color: var(--gold-primary);
}

/* --- COOKIE CONSENT --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: var(--space-lg) var(--space-xl);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

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

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: var(--container-max);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.cookie-banner__text a {
  color: var(--gold-primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.cookie-banner__btn--accept {
  background: var(--gold-primary);
  color: var(--white);
  border: none;
}

.cookie-banner__btn--accept:hover {
  background: var(--gold-dark);
}

.cookie-banner__btn--necessary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.cookie-banner__btn--necessary:hover {
  border-color: var(--text-secondary);
}

/* --- PARTNER CARDS --- */
.partner-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.partner-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.partner-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.partner-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.partner-card:hover .partner-card__image img {
  transform: scale(1.05);
}

.partner-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.partner-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.partner-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-md);
}

/* --- LEGAL PAGES --- */
.legal {
  padding: var(--space-3xl) 0;
  margin-top: var(--nav-height);
}

.legal h1 {
  margin-bottom: var(--space-2xl);
}

.legal h2 {
  font-size: 1.5rem;
  margin: var(--space-2xl) 0 var(--space-md);
}

.legal h3 {
  font-size: 1.15rem;
  margin: var(--space-lg) 0 var(--space-sm);
}

.legal p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal ul {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal ul li {
  list-style: disc;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

/* --- MAP EMBED --- */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: var(--space-xl);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

@media (min-width: 768px) {
  .map-container iframe {
    height: 400px;
  }
}

/* --- SCROLL 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);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger children */
.stagger>* {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible>*:nth-child(1) {
  transition-delay: 0ms;
}

.stagger.visible>*:nth-child(2) {
  transition-delay: 100ms;
}

.stagger.visible>*:nth-child(3) {
  transition-delay: 200ms;
}

.stagger.visible>*:nth-child(4) {
  transition-delay: 300ms;
}

.stagger.visible>*:nth-child(5) {
  transition-delay: 400ms;
}

.stagger.visible>*:nth-child(6) {
  transition-delay: 500ms;
}

.stagger.visible>*:nth-child(7) {
  transition-delay: 600ms;
}

.stagger.visible>*:nth-child(8) {
  transition-delay: 700ms;
}

.stagger.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* --- IMAGE SECTION (split layout) --- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split--reverse {
    direction: rtl;
  }

  .split--reverse>* {
    direction: ltr;
  }
}

.split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

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

.split__content h2 {
  margin-bottom: var(--space-md);
}

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

/* --- FEATURE LIST --- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.feature-list__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-primary);
  margin-top: 2px;
}

.feature-list__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* --- FOUR C's (Diamant) --- */
.four-c {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.four-c:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.four-c__letter {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.four-c__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.four-c__text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- UTILITY CLASSES --- */
.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

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

.mt-xl {
  margin-top: var(--space-xl);
}

.mt-2xl {
  margin-top: var(--space-2xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

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

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

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

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.hidden {
  display: none !important;
}

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

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gold-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Print styles */
@media print {

  .nav,
  .footer,
  .cookie-banner,
  .back-to-top {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}

/* --- HERO SPLIT SECTION --- */
.hero-split {
  position: relative;
  min-height: calc(100vh - var(--nav-height) - var(--space-2xl));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(var(--nav-height) + var(--space-md));
  background: var(--white);
}

.hero-split--full {
  min-height: 100vh;
  margin-top: 0;
  padding-top: calc(var(--nav-height) + var(--space-md));
}

.hero-split__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('../assets/images/hero/hero-window-gold-intense.png');
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

.hero-split__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

@media (min-width: 900px) {
  .hero-split__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.hero-split__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
}

.hero-split__image-wrapper {
  order: -1;
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero-split__image-wrapper {
    order: 1;
    max-width: 360px;
    margin-left: auto;
    margin-right: 0;
  }
}

.hero-split__image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 500px 500px 0 0;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-split h1 {
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  font-size: 2.8rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: none;
}

.hero-split .overline {
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.hero-split p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: var(--space-xl);
  max-width: 400px;
  line-height: 1.6;
}

@media (max-width: 899px) {
  .hero-split {
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + var(--space-xl));
  }

  .hero-split__content {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .hero-split h1 {
    font-size: 2.2rem;
  }

  .hero-split p {
    margin-left: auto;
    margin-right: auto;
  }
}



/* --- CONTACT LAYOUT --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media(min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
  }
}

.contact-layout__visual {
  position: relative;
}

.contact-layout__image {
  max-width: 400px;
  margin: 0 auto;
}

.contact-layout__image img {
  width: 100%;
  aspect-ratio: 4/6;
  object-fit: cover;
  border-radius: 500px 500px 0 0;
}

.contact-layout__form-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

@media(min-width: 900px) {
  .contact-layout__form-card {
    position: absolute;
    top: 50%;
    right: 0;
    width: 450px;
    margin-top: 0;
    transform: translateY(-30%);
  }
}

.contact-map-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-4xl);
}

@media(min-width: 900px) {
  .contact-map-section {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }
}

.contact-map-section__map {
  border-radius: 30px;
  overflow: hidden;
  height: 300px;
}

.contact-map-section__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Info Refinements */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-info__icon {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-info__label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-info__value {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-info__value a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* --- TEASER CARDS --- */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

@media(min-width: 900px) {
  .teaser-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.teaser-card {
  background: var(--white);
  border-radius: 24px;
  padding: var(--space-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--gold-bg);
}

.teaser-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-bottom: var(--space-md);
}

.teaser-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  border-radius: inherit;
}

.teaser-card--portrait .teaser-card__image {
  aspect-ratio: 4/5;
  height: auto;
  max-height: 350px;
  background: var(--bg-secondary);
}

.teaser-card--portrait .teaser-card__image img {
  object-fit: contain;
  padding: var(--space-md);
}

.teaser-card--wide .teaser-card__image {
  aspect-ratio: 2/1;
  height: auto;
  max-height: 300px;
}

.teaser-card--icon .teaser-card__image {
  width: 80px;
  height: 80px;
  min-height: auto;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--bg-secondary);
}

.teaser-card--icon .teaser-card__image img {
  object-fit: contain;
  padding: 12px;
}

.teaser-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.teaser-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.teaser-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.teaser-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.teaser-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  flex-grow: 1;
}

.teaser-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

.teaser-card__features .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  opacity: 0.8;
}

/* --- HERO COLLAGE --- */
.hero-collage {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--nav-height);
  background: var(--bg-secondary);
}

.hero-collage__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
  padding: var(--space-4xl) var(--space-lg);
}

@media (min-width: 900px) {
  .hero-collage__inner {
    grid-template-columns: 1fr 1.2fr;
    padding: var(--space-2xl) var(--space-lg);
  }
}

.hero-collage__content {
  max-width: 500px;
}

.hero-collage__gallery {
  position: relative;
  height: 500px;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-collage__gallery {
    height: 700px;
  }
}

.hero-collage__img {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: float 8s ease-in-out infinite;
}

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

.hero-collage__img--1 {
  width: 55%;
  aspect-ratio: 4/5;
  top: 10%;
  right: 5%;
  z-index: 1;
}

.hero-collage__img--2 {
  width: 45%;
  aspect-ratio: 1;
  bottom: 5%;
  left: 0;
  z-index: 2;
  animation-delay: -2s;
}

.hero-collage__img--3 {
  width: 35%;
  aspect-ratio: 3/4;
  top: 0;
  left: 15%;
  z-index: 3;
  animation-delay: -4s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.glass-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.hero-collage__img--2 .glass-badge {
  bottom: auto;
  top: -15px;
  right: auto;
  left: -15px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* --- BENTO GALLERY --- */
.bento-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  grid-auto-rows: 250px;
  margin-top: var(--space-3xl);
}

@media (min-width: 768px) {
  .bento-gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 320px;
    gap: var(--space-lg);
  }
}

.bento-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-tertiary);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.bento-item:hover {
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.bento-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-item--wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-item--tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-item:hover img {
  transform: scale(1.08);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: rgba(197, 165, 90, 0.05);
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  pointer-events: none;
}

.bento-item:hover .bento-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.15);
}

.bento-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
  pointer-events: auto;
}

.bento-item:hover .bento-glass {
  transform: translateY(0);
  opacity: 1;
}

.bento-glass h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.bento-glass p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- PHILOSOPHY LIST --- */
.philosophy-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.philosophy-row {
  display: flex;
  flex-direction: column;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-base);
  gap: var(--space-md);
  position: relative;
}

.philosophy-row:first-child {
  border-top: 1px solid var(--border);
}

.philosophy-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-bg);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
  margin: 0 calc(var(--space-lg) * -1);
  border-radius: var(--radius-lg);
}

.philosophy-row:hover::before {
  opacity: 1;
}

@media (min-width: 768px) {
  .philosophy-row {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-3xl);
  }
}

.philosophy-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold-primary);
  line-height: 1;
  opacity: 0.5;
  width: 120px;
  flex-shrink: 0;
  z-index: 1;
}

.philosophy-content {
  flex-grow: 1;
  z-index: 1;
}

.philosophy-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.philosophy-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 650px;
}

.philosophy-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  margin-top: var(--space-md);
  z-index: 1;
}

@media (min-width: 768px) {
  .philosophy-cta {
    margin-top: 0;
    align-self: center;
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.philosophy-cta svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.philosophy-row:hover .philosophy-cta svg {
  transform: translateX(6px);
}

.philosophy-row:hover .philosophy-cta {
  color: var(--gold-dark);
}
/* Universal Badge Fix */
.glass-badge, .teaser-card__badge {
  display: inline-block !important;
  width: max-content !important;
  height: max-content !important;
  line-height: 1 !important;
  z-index: 9999 !important;
  white-space: nowrap !important;
}

@media (min-width: 768px) {
  .sticky-desktop {
    position: sticky;
    top: 120px;
  }
}


/* ==========================================================================
   APP-STYLE BOTTOM NAVIGATION (MOBILE ONLY)
   ========================================================================== */

.bottom-nav {
  display: none; /* Hidden on desktop by default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(197, 165, 90, 0.2);
  z-index: 9999;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  width: 25%;
}

.bottom-nav__item svg {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}

.bottom-nav__item.active,
.bottom-nav__item:hover {
  color: var(--gold-primary);
}

.bottom-nav__item.active svg {
  transform: scale(1.1);
  stroke-width: 2.5;
}

/* ==========================================================================
   BOTTOM SHEETS (MOBILE MODALS)
   ========================================================================== */

.bottom-sheet-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bottom-sheet-overlay.active {
  display: block;
  opacity: 1;
}

.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  z-index: 10000;
  padding: var(--space-xl) var(--space-xl) calc(var(--space-xl) + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.bottom-sheet.active {
  transform: translateY(0);
}

.bottom-sheet__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(197, 165, 90, 0.1);
}

.bottom-sheet__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin: 0;
}

.bottom-sheet__close {
  background: rgba(197, 165, 90, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  cursor: pointer;
}

.bottom-sheet__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.bottom-sheet__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(197, 165, 90, 0.03);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  text-align: center;
}

.bottom-sheet__item:hover,
.bottom-sheet__item:active {
  background: rgba(197, 165, 90, 0.1);
}

.bottom-sheet__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: var(--space-sm);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.bottom-sheet__icon svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   MOBILE MEDIA QUERY OVERRIDES
   ========================================================================== */

@media (max-width: 992px) {
  /* Show bottom nav */
  .bottom-nav {
    display: flex;
  }
  
  /* Add padding to body so bottom nav doesn't cover content */
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  /* Ensure footer has extra margin so its dark background doesn't bleed into the frosted glass bottom nav */
  .footer {
    margin-bottom: calc(100px + env(safe-area-inset-bottom)) !important;
    padding-bottom: var(--space-3xl); /* Reset to a normal padding if needed, or just let it fall back */
  }
}


/* ==========================================================================
   BESPOKE LAYOUTS (BVS & NACHHALTIGKEIT)
   ========================================================================== */

/* 1. Meister Vogelsang (BVS) Hero */
.hero-bespoke-bvs {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + var(--space-2xl)) var(--space-xl) var(--space-2xl);
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-bespoke-bvs__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 15rem);
  font-weight: 700;
  color: rgba(197, 165, 90, 0.03); /* Extremely subtle gold */
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-bespoke-bvs__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.hero-bespoke-bvs__image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 20px 20px; /* Arch shape for the hero image */
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.hero-bespoke-bvs__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.hero-bespoke-bvs__image-wrapper:hover img {
  transform: scale(1.05);
}

.hero-bespoke-bvs__glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-2xl);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  position: relative;
  margin-left: -100px; /* Overlap effect */
  z-index: 3;
}

/* 2. Arch Style Image Sektion */
.image-arch {
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.image-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 3. Nachhaltigkeit Hero (Circle) */
.hero-bespoke-eco {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-2xl);
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.hero-bespoke-eco__circle-wrapper {
  position: relative;
  width: clamp(300px, 50vw, 600px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  z-index: 2;
}

.hero-bespoke-eco__circle-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bespoke-eco__floating-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 100%;
  pointer-events: none;
}

.hero-bespoke-eco__floating-text h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin: 0;
  line-height: 1;
}

.hero-bespoke-eco__floating-text .overline {
  color: var(--gold-primary);
  background: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  letter-spacing: 2px;
}

/* 4. Eco Cycle Layout (Zick-Zack) */
.eco-cycle {
  position: relative;
  padding: var(--space-3xl) 0;
}

.eco-cycle__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, rgba(197, 165, 90, 0), rgba(197, 165, 90, 0.5), rgba(197, 165, 90, 0));
  transform: translateX(-50%);
  z-index: 1;
}

.eco-cycle__step {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
  align-items: center;
}

.eco-cycle__step:nth-child(even) {
  direction: rtl; /* Swaps the columns visually */
}
.eco-cycle__step:nth-child(even) > * {
  direction: ltr; /* Reset text direction inside */
}

.eco-cycle__content {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

/* Circle marker on the line */
.eco-cycle__content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--gold-primary);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(197, 165, 90, 0.2);
}

/* Left side content gets marker on the right */
.eco-cycle__step:nth-child(odd) .eco-cycle__content::before {
  right: calc(var(--space-2xl) * -0.5 - 8px); /* Position on the line */
}

/* Right side content gets marker on the left */
.eco-cycle__step:nth-child(even) .eco-cycle__content::before {
  left: calc(var(--space-2xl) * -0.5 - 8px);
}

.eco-cycle__image {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 70%;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

@media (max-width: 992px) {
  .hero-bespoke-bvs__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-bespoke-bvs__watermark {
    font-size: 5rem;
  }
  .hero-bespoke-bvs__glass-card {
    margin-left: 0;
    margin-top: -60px;
  }
  
  .eco-cycle__line {
    left: 20px;
  }
  .eco-cycle__step, .eco-cycle__step:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-lg);
  }
  .eco-cycle__step:nth-child(odd) .eco-cycle__content::before,
  .eco-cycle__step:nth-child(even) .eco-cycle__content::before {
    left: -28px; /* Align to the left line */
    right: auto;
  }
  .eco-cycle__image {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 16/9;
  }
}

/* ==========================================================================
   5. BESPOKE CONTACT PAGE
   ========================================================================== */

/* Hero */
.hero-bespoke-contact {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  overflow: hidden;
  padding: var(--space-3xl) var(--space-md);
  text-align: center;
}

.hero-bespoke-contact__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  color: var(--gold-primary);
  opacity: 0.03;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.hero-bespoke-contact__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Glass Card Info Section */
.contact-atelier {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.contact-atelier__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url('../assets/images/hero/hero-manufaktur.png');
  background-size: cover;
  background-position: center;
  border-radius: 200px 0 0 200px;
  opacity: 0.8;
}

.contact-atelier__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.contact-glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-2xl);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.contact-glass-card__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(197, 165, 90, 0.2);
}

.contact-glass-card__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-glass-card__icon {
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
  flex-shrink: 0;
  background: rgba(197, 165, 90, 0.1);
  padding: 6px;
  border-radius: 50%;
}

.contact-glass-card__label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.contact-glass-card__value {
  color: var(--text-color);
  line-height: 1.6;
}

.contact-glass-card__value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-glass-card__value a:hover {
  color: var(--gold-primary);
}

/* Elegant Form Section */
.contact-form-section {
  background: var(--gold-bg);
  padding: var(--space-3xl) 0;
  position: relative;
}

.form-bespoke {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  max-width: 800px;
  margin: 0 auto;
}

.form-bespoke__group {
  margin-bottom: var(--space-lg);
  position: relative;
}

.form-bespoke__input,
.form-bespoke__textarea {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: 1px solid rgba(197, 165, 90, 0.3);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.form-bespoke__input:focus,
.form-bespoke__textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(197, 165, 90, 0.1);
  background: rgba(255,255,255,0.8);
}

.form-bespoke__label {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 1rem;
  color: #888;
  transition: all 0.3s ease;
  pointer-events: none;
  background: var(--white);
  padding: 0 4px;
}

/* Float label up when focused or not empty */
.form-bespoke__input:focus ~ .form-bespoke__label,
.form-bespoke__input:not(:placeholder-shown) ~ .form-bespoke__label,
.form-bespoke__textarea:focus ~ .form-bespoke__label,
.form-bespoke__textarea:not(:placeholder-shown) ~ .form-bespoke__label {
  top: -10px;
  left: 15px;
  font-size: 0.85rem;
  color: var(--gold-primary);
}

/* DSGVO Map */
.contact-map-dsgvo {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: 40px;
  overflow: hidden;
  margin-top: var(--space-2xl);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-map-dsgvo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) sepia(20%) hue-rotate(5deg);
  transition: filter 0.5s ease;
}

.contact-map-dsgvo:hover img {
  filter: grayscale(0%) sepia(0%);
}

.contact-map-dsgvo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.contact-map-dsgvo:hover .contact-map-dsgvo__overlay {
  background: rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
  .contact-atelier__inner {
    grid-template-columns: 1fr;
  }
  .contact-atelier__bg {
    width: 100%;
    border-radius: 0;
    opacity: 0.3;
  }
  .contact-map-dsgvo {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 768px) {
  .hero-bespoke-contact {
    min-height: 40vh;
  }
  .hero-bespoke-contact__watermark {
    font-size: 4rem;
  }
}

/* ==========================================================================
   6. CONTACT PAGE (MOCKUP V2)
   ========================================================================== */

.contact-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  align-items: center;
  position: relative;
  padding: var(--space-3xl) 0;
}

.contact-hero-text {
  grid-column: 1 / 6;
  padding-right: var(--space-lg);
}

.contact-hero-arch {
  grid-column: 5 / 9;
  position: relative;
  z-index: 1;
}

.contact-hero-arch__inner {
  aspect-ratio: 1 / 2;
  border-radius: 300px 300px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-hero-arch__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-form {
  grid-column: 8 / 13;
  z-index: 10;
}

.contact-form-card-v2 {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  position: relative;
}

.contact-info-list-v2 {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-item-v2 {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-info-icon-v2 {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-info-label-v2 {
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 2px;
}

.contact-info-value-v2 {
  color: var(--text-color);
  line-height: 1.5;
}

.form-v2__group {
  margin-bottom: var(--space-md);
}

.form-v2__label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 8px;
}

.form-v2__input,
.form-v2__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
  background: #fdfdfd;
}

.form-v2__input:focus,
.form-v2__textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.contact-map-grid-v2 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-top: var(--space-xl);
}

.contact-map-img-v2 {
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  aspect-ratio: 21 / 9;
}

.contact-map-img-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(20%) hue-rotate(5deg);
}

@media (max-width: 1024px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .contact-hero-text,
  .contact-hero-arch,
  .contact-hero-form {
    grid-column: 1 / -1;
  }
  .contact-hero-arch__inner {
    aspect-ratio: 16 / 9;
    border-radius: 40px 40px 0 0;
    max-width: 600px;
    margin: 0 auto;
  }
  .contact-form-card-v2 {
    max-width: 600px;
    margin: 0 auto;
  }
  .contact-map-grid-v2 {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .contact-map-grid-v2 > div:last-child {
    text-align: center;
  }
}
