/* =============================================
   KELUNVORAX — Main Stylesheet
   Editorial Modern Design System
   ============================================= */


:root {
  --color-ink: #1a1814;
  --color-ink-soft: #3d3a35;
  --color-ink-muted: #6b6760;
  --color-paper: #f7f5f1;
  --color-paper-warm: #eeebe4;
  --color-paper-mid: #e2ddd5;
  --color-accent: #b5632a;
  --color-accent-light: #d4844e;
  --color-accent-dark: #8c4a1e;
  --color-gold: #c9a84c;
  --color-white: #fdfcfa;
  --color-dark-section: #201e1b;
  --color-dark-card: #2a2724;

  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-gold) 100%);
  --gradient-accent-hover: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  --gradient-hero-left: linear-gradient(160deg, #201e1b 0%, #3a2e24 100%);

  --shadow-sm: 0 1px 3px rgba(26,24,20,0.08), 0 1px 2px rgba(26,24,20,0.06);
  --shadow-md: 0 4px 12px rgba(26,24,20,0.10), 0 2px 6px rgba(26,24,20,0.07);
  --shadow-lg: 0 10px 30px rgba(26,24,20,0.12), 0 4px 12px rgba(26,24,20,0.08);
  --shadow-xl: 0 20px 50px rgba(26,24,20,0.15), 0 8px 20px rgba(26,24,20,0.10);
  --shadow-accent: 0 4px 20px rgba(181,99,42,0.30), 0 2px 8px rgba(181,99,42,0.20);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

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

  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --nav-height: 72px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-paper);
  color: var(--color-ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}


h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--color-ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-ink-soft);
  margin-bottom: 1rem;
}

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


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


.labelTag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(181,99,42,0.10);
  border: 1px solid rgba(181,99,42,0.20);
  padding: 0.35em 0.9em;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8em 1.8em;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.btnPrimary {
  background: var(--gradient-accent);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

.btnPrimary:hover {
  background: var(--gradient-accent-hover);
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(181,99,42,0.40);
  transform: translateY(-1px);
}

.btnOutline {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-paper-mid);
}

.btnOutline:hover {
  background: var(--color-paper-warm);
  color: var(--color-ink);
  border-color: var(--color-ink-muted);
}

.btnOutlineLight {
  background: rgba(255,255,255,0.10);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.30);
  backdrop-filter: blur(6px);
}

.btnOutlineLight:hover {
  background: rgba(255,255,255,0.20);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.60);
}

.btnText {
  background: none;
  border: none;
  color: var(--color-accent);
  padding: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.btnText:hover {
  color: var(--color-accent-dark);
  gap: 0.75em;
}

/* =============================================
   NAVIGATION
   ============================================= */
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.siteHeader.siteHeader_scrolled {
  background: rgba(247,245,241,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.siteHeader_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.siteHeader_logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.siteHeader_logoImg {
  width: 32px;
  height: 32px;
}

.siteHeader_logoText {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.siteHeader_scrolled .siteHeader_logoText {
  color: var(--color-ink);
}

.siteHeader_nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.siteHeader_navLink {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.5em 0.9em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.siteHeader_navLink:hover,
.siteHeader_navLink.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.12);
}

.siteHeader_scrolled .siteHeader_navLink {
  color: var(--color-ink-soft);
}

.siteHeader_scrolled .siteHeader_navLink:hover,
.siteHeader_scrolled .siteHeader_navLink.active {
  color: var(--color-ink);
  background: var(--color-paper-warm);
}

.siteHeader_navCta {
  background: var(--gradient-accent);
  color: var(--color-white) !important;
  padding: 0.5em 1.2em;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-accent);
}

.siteHeader_navCta:hover {
  background: var(--gradient-accent-hover) !important;
  color: var(--color-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(181,99,42,0.35) !important;
}

.siteHeader_scrolled .siteHeader_navCta {
  color: var(--color-white) !important;
}

.siteHeader_hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.siteHeader_hamburger:hover {
  background: rgba(255,255,255,0.12);
}

.siteHeader_scrolled .siteHeader_hamburger:hover {
  background: var(--color-paper-warm);
}

.siteHeader_hamburgerLine {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.siteHeader_scrolled .siteHeader_hamburgerLine {
  background: var(--color-ink);
}

/* =============================================
   MOBILE MENU — Diagonal Wipe
   ============================================= */
.mobileMenu {
  position: fixed;
  inset: 0;
  z-index: 950;
  pointer-events: none;
}

.mobileMenu_overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,20,0.5);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.mobileMenu_nav {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--color-dark-section);
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobileMenu.mobileMenu_open {
  pointer-events: all;
}

.mobileMenu.mobileMenu_open .mobileMenu_overlay {
  opacity: 1;
}

.mobileMenu.mobileMenu_open .mobileMenu_nav {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.mobileMenu_close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.mobileMenu_close:hover {
  background: rgba(255,255,255,0.16);
}

.mobileMenu_link {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.75);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition-fast);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.15s ease;
}

.mobileMenu.mobileMenu_open .mobileMenu_link {
  opacity: 1;
  transform: translateX(0);
}

.mobileMenu.mobileMenu_open .mobileMenu_link:nth-child(2) { transition-delay: 0.15s; }
.mobileMenu.mobileMenu_open .mobileMenu_link:nth-child(3) { transition-delay: 0.20s; }
.mobileMenu.mobileMenu_open .mobileMenu_link:nth-child(4) { transition-delay: 0.25s; }
.mobileMenu.mobileMenu_open .mobileMenu_link:nth-child(5) { transition-delay: 0.30s; }
.mobileMenu.mobileMenu_open .mobileMenu_link:nth-child(6) { transition-delay: 0.35s; }

.mobileMenu_link:hover {
  color: var(--color-white);
  padding-left: 0.5rem;
}

.mobileMenu_linkCta {
  margin-top: var(--space-md);
  background: var(--gradient-accent);
  color: var(--color-white) !important;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  border-bottom: none;
  box-shadow: var(--shadow-accent);
}

.mobileMenu_linkCta:hover {
  background: var(--gradient-accent-hover) !important;
  padding-left: 1.5rem;
}

/* =============================================
   HERO SECTION — Vertical Split
   ============================================= */
.mainHero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.mainHero_halfLeft {
  position: absolute;
  inset: 0;
  right: 50%;
  background: var(--gradient-hero-left);
  transform: translateX(-100%);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

.mainHero_halfRight {
  position: absolute;
  inset: 0;
  left: 50%;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

.mainHero_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
}

.mainHero_halfLeft.heroAnimated,
.mainHero_halfRight.heroAnimated {
  transform: translateX(0);
}

.mainHero_content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  padding-top: var(--nav-height);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}

.mainHero_content.heroContentVisible {
  opacity: 1;
  transform: translateY(0);
}

.mainHero .labelTag {
  color: rgba(201,168,76,0.9);
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.25);
}

.mainHero_title {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.mainHero_subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

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

.mainHero_scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   INTRO SECTION
   ============================================= */
.introSection {
  padding: var(--space-3xl) 0 var(--space-2xl);
  position: relative;
  z-index: 5;
  margin-top: -60px;
}

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

.introSection_textBlock .labelTag { display: block; }

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

.introSection_body {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.introSection_imageBlock {
  position: relative;
}

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

.introSection_badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gradient-accent);
  color: var(--color-white);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-accent);
}

/* =============================================
   SERVICES GRID
   ============================================= */
.servicesSection {
  padding: var(--space-2xl) 0;
  background: var(--color-dark-section);
  position: relative;
  z-index: 4;
  margin-top: -60px;
  padding-top: calc(var(--space-2xl) + 60px);
}

.servicesSection_header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.servicesSection_heading {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.servicesSection_sub {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
}

.servicesSection .labelTag {
  color: rgba(201,168,76,0.9);
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.25);
}

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

.serviceCard {
  background: var(--color-dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.serviceCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.serviceCard:hover {
  transform: translateY(-4px);
  border-color: rgba(181,99,42,0.25);
  box-shadow: 0 12px 36px rgba(0,0,0,0.30), 0 4px 12px rgba(181,99,42,0.15);
}

.serviceCard:hover::before {
  opacity: 1;
}

.serviceCard_icon {
  width: 52px;
  height: 52px;
  background: rgba(181,99,42,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent-light);
  margin-bottom: var(--space-md);
  transition: background var(--transition-base);
}

.serviceCard:hover .serviceCard_icon {
  background: rgba(181,99,42,0.25);
}

.serviceCard_title {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.serviceCard_text {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   FEATURES SECTION — Two Columns
   ============================================= */
.featuresSection {
  padding: var(--space-2xl) 0;
  background: var(--color-paper);
  position: relative;
  z-index: 5;
  margin-top: -60px;
  padding-top: calc(var(--space-2xl) + 60px);
}

.featuresSection_header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

.featuresGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.featureItem {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-paper-mid);
  transition: background var(--transition-fast);
}

.featureItem:nth-child(odd) {
  border-right: 1px solid var(--color-paper-mid);
}

.featureItem:nth-last-child(-n+2) {
  border-bottom: none;
}

.featureItem:hover {
  background: var(--color-paper-warm);
}

.featureItem_icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  box-shadow: var(--shadow-accent);
}

.featureItem_title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.4rem;
}

.featureItem_text {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.processSection {
  padding: var(--space-2xl) 0;
  background: var(--color-paper-warm);
  position: relative;
  z-index: 4;
  margin-top: -60px;
  padding-top: calc(var(--space-2xl) + 60px);
}

.processSection_header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.processSection_heading {
  margin-bottom: 0;
}

.processSteps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.processStep {
  flex: 1;
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.processStep_divider {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-top: 2rem;
  flex-shrink: 0;
}

.processStep_number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.processStep_title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
}

.processStep_text {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   CTA SECTION
   ============================================= */
.ctaSection {
  padding: var(--space-2xl) 0;
  background: var(--color-dark-section);
  position: relative;
  z-index: 4;
  margin-top: -60px;
  padding-top: calc(var(--space-2xl) + 60px);
}

.ctaSection::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(181,99,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ctaSection_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  position: relative;
}

.ctaSection_heading {
  color: var(--color-white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.ctaSection_sub {
  color: rgba(255,255,255,0.6);
  margin: 0;
  max-width: 480px;
}

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

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallerySection {
  padding: var(--space-2xl) 0;
  background: var(--color-paper);
  position: relative;
  z-index: 5;
  margin-top: -60px;
  padding-top: calc(var(--space-2xl) + 60px);
}

.gallerySection_header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

.gallerySection_sub {
  color: var(--color-ink-muted);
  max-width: 480px;
  margin: 0 auto;
}

.galleryGrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-sm);
}

.galleryItem {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
}

.galleryItem_large {
  aspect-ratio: auto;
  grid-row: span 2;
}

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

.galleryItem:hover .galleryItem_image {
  transform: scale(1.04);
}

.galleryItem_label {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  background: rgba(26,24,20,0.75);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35em 0.8em;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.pageHero {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--color-dark-section);
  position: relative;
  overflow: hidden;
}

.pageHero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(181,99,42,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.pageHero_content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.pageHero_title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.pageHero_subtitle {
  color: rgba(255,255,255,0.65);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  margin: 0;
}

.pageHero .labelTag {
  color: rgba(201,168,76,0.9);
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.25);
}

/* =============================================
   FILOZOFIE PAGE
   ============================================= */
.filozofieIntro {
  padding: var(--space-2xl) 0;
  background: var(--color-paper);
}

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

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

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

.valoriSection {
  padding: var(--space-2xl) 0;
  background: var(--color-paper-warm);
}

.valoriSection_header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.valoriSection_heading {
  margin-bottom: 0;
}

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

.valoareCard {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-paper-mid);
  transition: all var(--transition-base);
}

.valoareCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(181,99,42,0.20);
}

.valoareCard_icon {
  font-size: 1.6rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.valoareCard_title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.valoareCard_text {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  margin: 0;
}

.pullQuoteSection {
  padding: var(--space-2xl) 0;
  background: var(--color-dark-section);
}

.pullQuote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  border: none;
  padding: 0;
}

.pullQuote_text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--color-white);
  line-height: 1.45;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.pullQuote_source {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.echipaMentionSection {
  padding: var(--space-2xl) 0;
  background: var(--color-paper);
}

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

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

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

/* =============================================
   PACHETE PAGE
   ============================================= */
.pretNote {
  padding: var(--space-lg) 0;
  background: var(--color-paper);
}

.pretNote_inner {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: rgba(181,99,42,0.07);
  border: 1px solid rgba(181,99,42,0.20);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.pretNote_icon {
  color: var(--color-accent);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pretNote_text {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  line-height: 1.7;
  margin: 0;
}

.pacheteSection {
  padding: var(--space-2xl) 0;
  background: var(--color-paper);
}

.pacheteSection_header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pacheteSection_heading { margin-bottom: 0; }

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

.pachetCard {
  background: var(--color-white);
  border: 1px solid var(--color-paper-mid);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

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

.pachetCard_featured {
  border-color: rgba(181,99,42,0.30);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(181,99,42,0.15);
}

.pachetCard_badge {
  background: var(--gradient-accent);
  color: var(--color-white);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5em;
  letter-spacing: 0.05em;
}

.pachetCard_header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-paper-warm);
}

.pachetCard_icon {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.pachetCard_title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.pachetCard_desc {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  margin: 0;
}

.pachetCard_list {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pachetCard_list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
}

.pachetCard_list li i {
  color: var(--color-accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pachetCard_cta {
  display: block;
  margin: 0 var(--space-lg) var(--space-lg);
  text-align: center;
}

.incluziiSection {
  padding: var(--space-2xl) 0;
  background: var(--color-dark-section);
}

.incluziiSection_header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.incluziiSection_heading {
  color: var(--color-white);
  margin-bottom: 0;
}

.incluziiSection .labelTag {
  color: rgba(201,168,76,0.9);
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.25);
}

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

.incluzieItem {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.incluzieItem:hover {
  border-color: rgba(181,99,42,0.25);
  color: var(--color-white);
}

.incluzieItem i {
  color: var(--color-accent-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* =============================================
   COLABORARI PAGE
   ============================================= */
.colaborareIntro {
  padding: var(--space-2xl) 0;
  background: var(--color-paper);
}

.colaborareIntro_heading {
  margin-bottom: var(--space-md);
  max-width: 700px;
}

.partenerSection {
  padding: var(--space-2xl) 0;
  background: var(--color-paper-warm);
}

.partenerSection_header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.partenerSection_heading { margin-bottom: 0; }

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

.partenerCard {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-paper-mid);
  transition: all var(--transition-base);
}

.partenerCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(181,99,42,0.20);
}

.partenerCard_icon {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.partenerCard_title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.partenerCard_text {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  margin: 0;
}

.colaborareImageSection {
  padding: var(--space-2xl) 0;
  background: var(--color-paper);
}

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

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

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

.colaborareBeneficiiSection {
  padding: var(--space-2xl) 0;
  background: var(--color-dark-section);
}

.colaborareBeneficii_header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.colaborareBeneficii_heading {
  color: var(--color-white);
  margin-bottom: 0;
}

.colaborareBeneficii_header .labelTag {
  color: rgba(201,168,76,0.9);
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.25);
}

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

.beneficiuItem {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--color-dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-fast);
}

.beneficiuItem:hover {
  border-color: rgba(181,99,42,0.25);
}

.beneficiuItem > i {
  color: var(--color-accent-light);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.beneficiuItem h4 {
  color: var(--color-white);
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.beneficiuItem p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin: 0;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contactSection {
  padding: var(--space-2xl) 0;
  background: var(--color-paper);
}

.contactSection_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contactSection_formTitle,
.contactSection_infoTitle {
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-paper-mid);
}

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

.contactForm_label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink-soft);
  margin-bottom: 0.4rem;
}

.contactForm_label span {
  color: var(--color-accent);
}

.contactForm_input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1.5px solid var(--color-paper-mid);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
  min-height: 44px;
}

.contactForm_input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(181,99,42,0.12);
}

.contactForm_textarea {
  min-height: 130px;
  resize: vertical;
}

.contactForm_select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6760' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contactForm_privacyField {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.contactForm_privacyLabel {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--color-ink-soft);
  cursor: pointer;
  line-height: 1.5;
}

.contactForm_checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.contactForm_privacyLink {
  color: var(--color-accent);
}

.contactForm_error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.contactForm_submit {
  width: 100%;
  justify-content: center;
}

.contactInfo_item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-paper-warm);
}

.contactInfo_item:last-of-type {
  border-bottom: none;
}

.contactInfo_icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}

.contactInfo_item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
  margin-bottom: 0.25rem;
}

.contactInfo_item p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--color-ink-soft);
}

.contactInfo_item a {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

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

.contactSection_access {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-paper-warm);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-accent);
}

.contactSection_accessTitle {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contactSection_accessText {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  margin: 0;
  line-height: 1.7;
}

.mapSection {
  padding: 0 0 var(--space-2xl);
  background: var(--color-paper);
}

.mapSection_wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mapSection_iframe {
  display: block;
  border-radius: var(--radius-lg);
}

/* =============================================
   THANKS PAGE
   ============================================= */
.thanksMain {
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  flex-direction: column;
}

.thanksSection {
  flex: 1;
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--color-paper);
}

.thanksSection_inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.thanksSection_icon {
  font-size: 3.5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.thanksSection_title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
}

.thanksSection_text {
  font-size: 1.05rem;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-xl);
}

.thanksSection_nextSteps {
  text-align: left;
  background: var(--color-paper-warm);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.thanksSection_nextTitle {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-paper-mid);
}

.thanksStep {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.thanksStep:last-child {
  margin-bottom: 0;
}

.thanksStep_num {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}

.thanksStep_content h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.thanksStep_content p {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  margin: 0;
}

/* =============================================
   LEGAL PAGES — Accordion
   ============================================= */
.legalSection {
  padding: var(--space-2xl) 0;
  background: var(--color-paper);
}

.legalContent {
  max-width: 820px;
  margin: 0 auto;
}

.accordionItem {
  border: 1px solid var(--color-paper-mid);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
}

.accordionItem:hover {
  box-shadow: var(--shadow-md);
}

.accordionItem_open {
  border-color: rgba(181,99,42,0.25);
  box-shadow: var(--shadow-md);
}

.accordionItem_trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
  text-align: left;
  transition: background var(--transition-fast);
  min-height: 44px;
}

.accordionItem_trigger:hover {
  background: var(--color-paper-warm);
}

.accordionItem_open .accordionItem_trigger {
  background: rgba(181,99,42,0.05);
  color: var(--color-accent-dark);
}

.accordionItem_icon {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition-base);
  font-size: 0.85rem;
}

.accordionItem_open .accordionItem_icon {
  transform: rotate(180deg);
}

.accordionItem_body {
  padding: 0 var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--color-paper-warm);
}

.accordionItem_body p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--color-ink-soft);
  margin-bottom: 0.75rem;
}

.accordionItem_body a {
  color: var(--color-accent);
}

/* =============================================
   FOOTER
   ============================================= */
.pageFooter {
  background: var(--color-ink);
  position: relative;
  z-index: 3;
  margin-top: -60px;
  padding-top: 60px;
}

.pageFooter_statsBar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-md) 0;
}

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

.pageFooter_stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

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

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

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

.pageFooter_logoLink {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: var(--space-md);
}

.pageFooter_logo {
  width: 32px;
  height: 32px;
}

.pageFooter_brandName {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.pageFooter_tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.pageFooter_address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin: 0;
}

.pageFooter_navTitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--space-md);
}

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

.pageFooter_link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.pageFooter_link:hover {
  color: var(--color-white);
}

.pageFooter_contactItem {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.pageFooter_contactItem:hover {
  color: var(--color-white);
}

.pageFooter_contactItem i {
  color: var(--color-accent-light);
  width: 16px;
  flex-shrink: 0;
}

.pageFooter_bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.pageFooter_copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.30);
  margin: 0;
}

.pageFooter_domain {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.20);
  margin: 0;
  font-family: monospace;
}

/* =============================================
   COOKIE CONSENT — Bottom-Left Corner Modal
   ============================================= */
.cookieConsent {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  width: 100%;
  max-width: 360px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(26,24,20,0.18), 0 2px 8px rgba(26,24,20,0.10), 0 0 0 1px rgba(26,24,20,0.06);
  padding: var(--space-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookieConsent.cookieConsent_visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.cookieConsent_text {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.cookieConsent_customizeWrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.6rem 0;
  margin-bottom: var(--space-sm);
  border-top: 1px solid var(--color-paper-warm);
  border-bottom: 1px solid var(--color-paper-warm);
}

.cookieConsent_checkLabel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-ink-soft);
  cursor: pointer;
}

.cookieConsent_checkLabel input {
  accent-color: var(--color-accent);
}

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

.cookieConsent_btn {
  width: 100%;
  padding: 0.65em 1em;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  min-height: 44px;
}

.cookieConsent_btnAccept {
  background: var(--gradient-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}

.cookieConsent_btnAccept:hover {
  background: var(--gradient-accent-hover);
}

.cookieConsent_btnCustomize {
  background: var(--color-paper-warm);
  color: var(--color-ink-soft);
  border: 1px solid var(--color-paper-mid);
}

.cookieConsent_btnCustomize:hover {
  background: var(--color-paper-mid);
}

.cookieConsent_btnSave {
  background: var(--color-paper-warm);
  color: var(--color-ink);
  border: 1px solid var(--color-paper-mid);
}

.cookieConsent_btnSave:hover {
  background: var(--color-paper-mid);
}

/* =============================================
   RESPONSIVE — Tablet
   ============================================= */
@media (max-width: 1024px) {
  .siteHeader_nav { display: none; }
  .siteHeader_hamburger { display: flex; }

  .introSection_grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .introSection_badge { left: var(--space-sm); }

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

  .featuresGrid { grid-template-columns: 1fr; }
  .featureItem:nth-child(odd) { border-right: none; }
  .featureItem:nth-last-child(-n+2) { border-bottom: 1px solid var(--color-paper-mid); }
  .featureItem:last-child { border-bottom: none; }

  .processSteps { flex-direction: column; align-items: center; }
  .processStep { width: 100%; max-width: 500px; }
  .processStep_divider { transform: rotate(90deg); }

  .ctaSection_inner { flex-direction: column; text-align: center; }
  .ctaSection_actions { justify-content: center; }

  .galleryGrid { grid-template-columns: 1fr 1fr; }
  .galleryItem_large { grid-row: span 1; aspect-ratio: 1; }

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

  .filozofieIntro_grid,
  .echipaMention_grid,
  .colaborareImage_grid { grid-template-columns: 1fr; gap: var(--space-xl); }

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

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

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

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

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

  .pageFooter_grid { grid-template-columns: 1fr 1fr; }
  .pageFooter_brand { grid-column: 1 / -1; }
}

/* =============================================
   RESPONSIVE — Mobile
   ============================================= */
@media (max-width: 640px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .mainHero_halfLeft,
  .mainHero_halfRight {
    right: 0;
    left: 0;
  }

  .mainHero_halfLeft {
    background: var(--gradient-hero-left);
    opacity: 0.92;
  }

  .mainHero_halfRight {
    opacity: 0.4;
  }

  .mainHero_halfLeft.heroAnimated,
  .mainHero_halfRight.heroAnimated {
    transform: translateX(0);
  }

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

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

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

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

  .galleryGrid { grid-template-columns: 1fr; }
  .galleryItem_large { grid-row: span 1; }

  .pageFooter_grid { grid-template-columns: 1fr; }
  .pageFooter_stats { flex-direction: column; align-items: flex-start; }
  .pageFooter_bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  .cookieConsent { left: var(--space-sm); right: var(--space-sm); bottom: var(--space-sm); max-width: none; }

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

  .introSection_badge { bottom: -1rem; left: var(--space-sm); font-size: 0.8rem; }

  .pretNote_inner { flex-direction: column; }

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

  .ctaSection_actions { flex-direction: column; width: 100%; }
  .ctaSection_actions .btn { width: 100%; justify-content: center; }

  .mainHero_actions { flex-direction: column; }
  .mainHero_actions .btn { width: 100%; justify-content: center; }
}

/* =============================================
   GLASS SURFACES — Decorative
   ============================================= */
.glassCard {
  background: rgba(247,245,241,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
}

/* =============================================
   GRADIENT ACCENT DECORATIVE ELEMENTS
   ============================================= */
.gradientBorder {
  position: relative;
}

.gradientBorder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

/* =============================================
   UTILITY
   ============================================= */
.textCenter { text-align: center; }
.mb0 { margin-bottom: 0; }
.mtAuto { margin-top: auto; }


::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-paper); }
::-webkit-scrollbar-thumb { background: var(--color-paper-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-ink-muted); }