:root {
  --bg:        #e2e2e2;
  --ink:       #1C1C1E;
  --ink-soft:  #5A5A5A;
  --walnut:    #d0b608;
  --walnut-lt: #ffe25b;
  --white:     #FFFFFF;
  --card-shadow: 0 4px 40px rgba(0,0,0,0.07);
}

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

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

html { scroll-behavior: smooth; }
main { flex: 1; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  overflow-x: hidden;
}

body.loading,
body.hero-active { overflow: hidden; }

body.loading { background: var(--ink); }
body.hero-active { background: var(--bg); }

/* ── LOADER ─────────────────────────────── */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: rgba(0,0,0,0.06);
  z-index: 9999;
}
#loader-bar {
  height: 100%; width: 0%;
  background: var(--walnut);
  transition: width 0.1s linear;
}

/* ── HERO TITLE ──────────────────────────── */
#hero-title {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  z-index: 201;
  text-align: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  white-space: nowrap;
}

body.hero-active #hero-title { opacity: 1; }

.hero-title__name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}

.hero-title__sub {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ── NAVBAR ─────────────────────────────── */
#navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px 10px 28px;
  height: 68px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.6s ease;
}

body.loading #navbar,
body.hero-active #navbar {
  opacity: 0;
  pointer-events: none;
}

body.loading #hero-achievements-wrap,
body.loading #content,
body.hero-active #hero-achievements-wrap,
body.hero-active #content {
  opacity: 0;
  visibility: hidden;
}

#hero-achievements-wrap,
#content {
  transition: opacity 1.6s ease, visibility 0s;
}

body.hero-revealed #hero-achievements-wrap,
body.hero-revealed #content {
  opacity: 1;
  visibility: visible;
}

body.navbar-preview:not(.hero-active) #navbar {
  opacity: 0.6;
  pointer-events: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  margin-right: 8px;
}

.nav-logo__img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  padding: 10px 18px;
  border-radius: 14px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--ink);
  background: rgba(0,0,0,0.05);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  background: var(--ink);
  padding: 12px 24px;
  border-radius: 14px;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--walnut); }

/* ── HAMBURGER BUTTON ───────────────────── */
#nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}
#nav-hamburger.open,
#nav-hamburger.open:hover,
#nav-hamburger.open:focus { background: none; }
#nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
#nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ITEMS (inside navbar) ──── */
#nav-mobile-items {
  display: none;
}

.nav-bar {
  display: contents;
}

@media (max-width: 768px) {
  .nav-desktop { display: none !important; }
  #nav-hamburger { display: flex; }

  .nav-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    justify-content: space-between;
  }

  #navbar {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    max-width: calc(100% - 32px);
    flex-direction: column;
    padding: 10px 12px 10px 20px;
    transition: width 0.3s cubic-bezier(.4,0,.2,1), padding 0.3s cubic-bezier(.4,0,.2,1), opacity 0.6s ease;
    overflow: hidden;
  }

  /* Phase 1: expand width */
  #navbar.nav-expanding,
  #navbar.nav-open {
    width: calc(100% - 32px);
    padding: 10px 12px 10px 20px;
  }

  /* Phase 2: reveal items */
  #nav-mobile-items {
    display: none;
  }

  #navbar.nav-expanding #nav-mobile-items,
  #navbar.nav-open #nav-mobile-items {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(.4,0,.2,1), opacity 0.25s ease, padding 0.3s ease;
  }

  #navbar.nav-open #nav-mobile-items {
    max-height: 320px;
    opacity: 1;
    padding: 8px 8px 4px;
  }

  /* Closing: collapse items while keeping width */
  #navbar.nav-open.nav-closing #nav-mobile-items {
    max-height: 0;
    opacity: 0;
    padding: 0 8px;
  }

  .nav-mobile__link {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: 12px;
    transition: background 0.15s, color 0.15s;
  }
  .nav-mobile__link:hover {
    background: rgba(0,0,0,0.04);
    color: var(--ink);
  }
  .nav-mobile__link--cta {
    margin-top: 4px;
    background: var(--ink);
    color: var(--white);
    font-weight: 600;
    text-align: center;
  }
  .nav-mobile__link--cta:hover {
    background: var(--walnut);
    color: var(--white);
  }
}

/* ── SKIP INTRO ─────────────────────────── */
#skip-intro {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  cursor: pointer;
  border: 1px solid currentColor;
  background: none;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
  transition: opacity 0.6s ease, color 0.2s;
  pointer-events: none;
}

body.hero-active #skip-intro {
  opacity: 0.55;
  pointer-events: auto;
}

#skip-intro:hover { opacity: 1; color: var(--ink); }

@media (max-width: 768px) {
  #skip-intro {
    font-size: 10px;
    padding: 5px 14px;
  }
}

/* ── HERO SECTION ───────────────────────── */
#hero-section {
  height: 100vh;
  position: relative;
}

#hero-canvas {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  mix-blend-mode: darken;
}

/* ── HERO VIGNETTE ───────────────────────── */
#hero-vignette {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    transparent 40%,
    rgba(0, 0, 0, 0.32) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.hero-active #hero-vignette { opacity: 1; }

/* ── HERO CARDS ─────────────────────────── */
.hero-card {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  padding: 36px 40px;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  z-index: 10;
}

.hero-card.visible { opacity: 1; }
.hero-card.left  { right: var(--card-left-right, 60%); }
.hero-card.right { left: var(--card-right-left, 60%); }
.hero-card.high  { top: 30%; }

/* Hide side cards on mobile/tablet - canvas animation still plays */
@media (max-width: 1024px) {
  .hero-card { display: none !important; }
}

/* ── SCROLL HINT ─────────────────────────── */
#scroll-hint {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

body.hero-active #scroll-hint { opacity: 1; }

#scroll-hint.hidden {
  opacity: 0 !important;
  transform: translateX(-50%) translateY(8px);
}

#scroll-hint__text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

@media (max-width: 768px) {
  #scroll-hint__text {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
}

#scroll-hint__arrow {
  width: 28px;
  height: 28px;
  color: var(--ink-soft);
  opacity: 0.5;
}

.hero-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 12px;
}

.hero-card__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}

.hero-card__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ── CLASSIC HERO ───────────────────────── */
/* ── Hero + Achievements wrapper ─────────────── */
#hero-achievements-wrap {
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 20;
}

#classic-hero {
  flex: 1;
  min-height: 0;
  background: var(--ink);
  background-image: radial-gradient(
    ellipse 120% 100% at 72% 50%,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 20%,
    rgba(0,0,0,0.08) 45%,
    rgba(0,0,0,0.22) 70%,
    rgba(0,0,0,0.32) 100%
  );
  padding: 0 80px;
  position: relative;
  overflow: hidden;
}

.classic-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.classic-hero__content {
  align-self: center;
  padding: 80px 60px 60px 0;
}

.classic-hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 28px;
}

.classic-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 44px;
}

.classic-hero__title em {
  color: var(--walnut);
  font-style: italic;
}

.classic-hero__image {
  align-self: end;
  display: flex;
  justify-content: center;
}

.classic-hero__image img {
  height: 100%;
  max-height: 60vh;
  width: auto;
  display: block;
}

@media (max-width: 1025px) {
  #classic-hero {
    padding: 22vh 48px 0;
    overflow: hidden;
  }
  .classic-hero__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0;
  }
  .classic-hero__content {
    padding: 0;
  }
  .classic-hero__eyebrow {
    font-size: 11px;
    margin-bottom: 16px;
  }
  .classic-hero__title {
    font-size: clamp(60px, 10vw, 96px);
    margin-bottom: 0;
  }
  .classic-hero__image {
    justify-content: center;
    margin-top: auto;
  }
  .classic-hero__image img {
    height: auto;
    max-height: 52vh;
    width: 100%;
    max-width: 580px;
    display: block;
  }
}

/* ── ACHIEVEMENTS STRIP ──────────────────── */
#achievements {
  flex-shrink: 0;
  background: #111;
  border-top: 1px solid rgba(208,182,8,0.2);
}

.achievements-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 100%;
}

.achievement-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  gap: 4px;
}

.achievement-stat__num-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.achievement-stat__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  color: #d0b608;
}

.achievement-stat__plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: #d0b608;
  line-height: 1;
}

.achievement-stat__label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.achievement-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

@media (max-width: 1025px) {
  .achievements-inner {
    padding: 0 24px;
  }
  .achievement-stat {
    padding: 20px 12px;
  }
}

@media (max-width: 1025px) {
  #hero-achievements-wrap {
    height: 100vh;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .achievement-stat__label {
    font-size: 10px;
  }
}

/* ── CONTENT SECTIONS ───────────────────── */
#content {
  position: relative;
  z-index: 20;
}

/* ── SERVICES SECTION (full-bleed video) ── */
#servicii {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  background: #1C1C1E;
  z-index: 1;
}

#servicii > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* gradient: dark top (for heading legibility) + dark bottom (for overlay legibility) */
.servicii-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(28,28,30,0.72) 0%, rgba(28,28,30,0) 40%),
    linear-gradient(to top,    rgba(28,28,30,0.85) 0%, rgba(28,28,30,0) 50%);
  z-index: 1;
  pointer-events: none;
}

.servicii-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 80px 0;
}

#servicii .section-title      { color: #ffffff; }
#servicii .section-title em   { font-style: italic; color: #d0b608; }
#servicii .section-body       { color: rgba(255,255,255,0.5); }

.servicii-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 13px 32px;
  background: #d0b608;
  color: #1C1C1E;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}

.servicii-cta:hover {
  background: #ffe25b;
  transform: translateY(-2px);
}

@media (max-width: 1025px) {
  #servicii { min-height: 100svh; }
  .servicii-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 48px 60px;
  }
}

@media (max-width: 600px) {
  .servicii-inner {
    padding: 0 24px 48px;
  }
}


.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.section-body {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 680px;
}

.services-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-list li {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.services-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--walnut);
  flex-shrink: 0;
  margin-top: 8px;
}

.services-list__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-right: 0.5rem;
}

.services-list__text {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.services-divider {
  width: 64px;
  height: 2px;
  background: var(--walnut);
  margin: 48px 0 0;
  border-radius: 2px;
}

/* ── PROCESS SECTION ────────────────────── */
#process {
  background: var(--bg);
  position: relative;
  z-index: 21;
  height: calc(100vh + 1800px);
  padding-bottom: 20px;
}

.process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 116px 80px 32px;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-height: 900px) and (min-width: 769px) {
  #process {
    height: auto;
  }
  .process-sticky {
    position: relative;
    height: auto;
    padding: 80px 80px 60px;
    overflow: visible;
  }
  .process-line-wrap {
    display: none;
  }
  .process-timeline {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
    max-width: 960px;
    flex-direction: unset;
  }
  .process-step {
    display: block !important;
    flex: none;
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
    justify-content: initial !important;
  }
  .process-step__dot {
    display: none !important;
  }
  .process-step__card {
    width: 100% !important;
    position: relative;
    padding-left: 22px;
    border-left: 2px solid var(--walnut);
  }
}

.process-header {
  text-align: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.process-header .section-title {
  margin-bottom: 0;
}

.process-timeline {
  position: relative;
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.process-line-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process-line-wrap svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.process-line-wrap path {
  transition: stroke-dashoffset 0.25s ease;
}

.process-step {
  width: 100%;
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}

.process-step:nth-child(odd)  { justify-content: flex-start; }
.process-step:nth-child(even) { justify-content: flex-end; }

.process-step__dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid rgba(0,0,0,0.15);
  transition: border-color 0.3s, background 0.3s;
  z-index: 2;
}

/* Dot at the inner edge of each card */
.process-step:nth-child(odd)  .process-step__dot { left: calc(50% - 20px); }
.process-step:nth-child(even) .process-step__dot { left: calc(50% + 20px); }

.process-step.visible .process-step__dot {
  border-color: var(--walnut);
  background: var(--walnut);
}

.process-step__card {
  width: calc(50% - 20px);
  background: var(--white);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: var(--card-shadow);
}

.process-step__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--walnut);
  margin-bottom: 0.25rem;
}

.process-step__title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.process-step__text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ── PROCESS - MOBILE ───────────────────── */
@media (max-width: 768px) {
  #process {
    height: auto;
  }

  .process-sticky {
    position: relative;
    height: auto;
    padding: 72px 20px 40px;
    overflow: visible;
  }

  .process-header {
    margin-bottom: 2rem;
  }

  .process-timeline {
    max-width: 100%;
  }

  /* Hide the SVG curving line on mobile */
  .process-line-wrap {
    display: none;
  }

  .process-step {
    flex: none;
    justify-content: flex-start !important;
    padding-left: 32px;
    margin-bottom: 20px;
    position: relative;
  }

  .process-step:last-child {
    margin-bottom: 0;
  }

  /* Vertical line on the left */
  .process-step::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0,0,0,0.10);
  }
  .process-step:first-of-type::before { top: 50%; }
  .process-step:last-of-type::before  { bottom: 50%; }

  .process-step__dot {
    position: absolute;
    left: 0 !important;
    top: 50%;
    transform: translate(0, -50%) !important;
  }

  .process-step__card {
    width: 100%;
  }
}

/* ── CTA STRIP ──────────────────────────── */
#cta-strip {
  background: var(--ink);
  padding: 0 80px;
  overflow: visible;
  position: relative;
}

.cta-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 60px;
}

.cta-strip__image {
  flex-shrink: 0;
  margin-top: -80px;
  align-self: flex-end;
  position: relative;
  z-index: 2;
}

.cta-strip__image img {
  height: 480px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

@media (min-width: 1300px) {
  .cta-strip__image img {
    height: 600px;
  }
}

@media (max-width: 1100px) {
  #cta-strip {
    padding: 0 40px;
    overflow: hidden;
  }
  .cta-strip__image {
    margin-top: 0;
    align-self: flex-end;
  }
  .cta-strip__image img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  #cta-strip {
    padding: 48px 24px 0;
    overflow: hidden;
  }
  .cta-strip__inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
  }
  .cta-strip__image {
    margin-top: 24px;
    align-self: center;
  }
  .cta-strip__image img {
    height: auto;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
  .cta-strip__content {
    padding: 0;
    text-align: center;
  }
}

.cta-strip__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-strip__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.cta-strip__title em {
  color: var(--walnut);
  font-style: italic;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--walnut);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}

.cta-btn:hover {
  background: var(--walnut-lt);
  transform: translateY(-2px);
}

.cta-whatsapp-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.cta-whatsapp-hint__or {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.cta-whatsapp-hint__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #25D366;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.cta-whatsapp-hint__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cta-whatsapp-hint__link:hover {
  color: #1ebe5d;
}

/* ── ABOUT SECTION ──────────────────────── */
#despre {
  background: var(--white);
  padding: 120px 80px 20px;
}

.despre-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.despre-year {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 24px;
}

.despre-year::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--walnut);
}

.despre-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 28px;
}

.despre-story {
  font-size: 19px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.despre-right {
  padding-top: 16px;
}

.despre-manifesto {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.despre-manifesto {
  padding-left: 24px;
  border-left: 2px solid var(--walnut);
}

.despre-manifesto__mobile { display: none; }

.despre-manifesto p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
}

.despre-manifesto p:last-of-type { margin-bottom: 28px; }

@media (max-width: 1025px) {
  #despre {
    padding: 60px 48px 32px;
  }
  .despre-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .despre-manifesto {
    gap: 16px;
  }
  .despre-manifesto p {
    font-size: 18px;
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  #despre {
    padding: 60px 24px 40px;
  }
  .despre-manifesto {
    gap: 0;
  }
  .despre-manifesto__desktop { display: none; }
  .despre-manifesto__mobile {
    display: block;
    margin-bottom: 20px;
  }
  .despre-manifesto p {
    font-size: 18px;
  }
}

.despre-manifesto strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ── FOOTER ─────────────────────────────── */
#footer {
  position: relative;
  z-index: 21;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.07);
  font-size: 16px;
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 80px 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 64px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 24px;
}

.footer-logo__img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-logo__wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 200px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 16px;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--walnut); }

.footer-contact-item {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.5;
}

.footer-contact-item a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--walnut); }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.07);
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom__copy {
  font-size: 13px;
  color: var(--ink-soft);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
  border-color: var(--walnut);
  background: rgba(123,81,53,0.06);
}

.footer-social svg {
  width: 16px; height: 16px;
  stroke: var(--ink-soft);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a:hover svg { stroke: var(--walnut); }

.footer-madeby {
  font-size: 11px;
  color: rgba(0,0,0,0.25);
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 40px 48px;
  }
  .footer-bottom {
    padding: 24px 40px;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px 40px;
  }
  .footer-bottom {
    padding: 20px 24px;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    text-align: center;
  }
  .footer-madeby {
    width: 100%;
    text-align: center;
  }
}

/* ── TESTIMONIALS SECTION ───────────────── */
#testimoniale {
  background: var(--white);
  padding: 100px 80px;
}

.testimoniale-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.t-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}

.t-header .section-title { margin-bottom: 0; }

/* Nav arrows */
.t-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.t-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, background 0.2s;
}

.t-arrow:hover {
  border-color: var(--walnut);
  background: rgba(208,182,8,0.06);
}

.t-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink);
}

.t-page-info {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  min-width: 36px;
  text-align: center;
}

/* Grid - always 3 cols on desktop */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.tcard {
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tcard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tcard__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.tcard__source {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.tcard__source svg { width: 22px; height: 22px; display: block; }
.tcard__source:hover { opacity: 0.75; }

.tcard__body {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
  flex: 1;
}

.tcard__link {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  opacity: 0.7;
  transition: opacity 0.2s;
  margin-top: auto;
}
.tcard__link { color: var(--walnut); }
.tcard__link:hover { opacity: 1; }

@media (max-width: 900px) {
  #testimoniale { padding: 72px 32px; }
  .tgrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  #testimoniale { padding: 56px 24px; }
  .tgrid { grid-template-columns: 1fr; }
  .t-header { align-items: flex-start; }
}
