/* ============================================================
   LUMEA MINIATURILOR — Design System
   Palette: Deep Navy #0D1B2A + Copper #B87333, White base
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Custom Properties ── */
:root {
  --primary:        #0D1B2A;
  --primary-dark:   #060F18;
  --primary-mid:    #162336;
  --accent:         #B87333;
  --accent-light:   #D4A574;
  --accent-dark:    #8B5A24;
  --bg:             #FFFFFF;
  --bg-warm:        #FAF8F5;
  --bg-alt:         #F2EDE6;
  --text:           #1A1A2E;
  --text-mid:       #3D3D5A;
  --text-light:     #6B6B88;
  --border:         #E0D8CE;
  --border-light:   #EDE8E2;
  --success:        #2E7D32;
  --white:          #FFFFFF;
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --container:      1200px;
  --radius:         8px;
  --radius-lg:      16px;
  --shadow-sm:      0 2px 8px rgba(13,27,42,.07);
  --shadow-md:      0 4px 24px rgba(13,27,42,.11);
  --shadow-lg:      0 8px 48px rgba(13,27,42,.16);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { line-height: 1.75; }

.section-label {
  font-size: .8rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); display: block; margin-bottom: .6rem;
}
.section-title  { margin-bottom: 1rem; }
.section-sub    { color: var(--text-mid); font-size: 1.05rem; max-width: 620px; }
.text-center    { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem;
  transition: all .2s ease; cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary  { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }

/* ── Section spacing ── */
section { padding: 5rem 0; }

/* ── Hero detail line ── */
.hero-detail {
  font-size: .78rem; color: rgba(255,255,255,.38);
  letter-spacing: .1em; margin-top: 2rem;
  text-transform: uppercase;
}

/* ──────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0; transition: all .35s ease;
}
.nav.scrolled {
  background: var(--primary); box-shadow: var(--shadow-md); padding: .85rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading); font-size: 1.35rem;
  color: var(--white); font-weight: 700; line-height: 1.15;
}
.nav-logo span {
  display: block; font-size: .65rem; font-family: var(--font-body);
  font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-light); margin-top: .1rem;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.82); font-size: .9rem;
  font-weight: 500; transition: color .2s; position: relative; padding-bottom: .15rem;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--accent-light); transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.lang-switcher { display: flex; gap: .2rem; font-size: .82rem; font-weight: 600; }
.lang-switcher a {
  color: rgba(255,255,255,.55); padding: .2rem .45rem;
  border-radius: 4px; transition: all .2s;
}
.lang-switcher a.active, .lang-switcher a:hover {
  color: var(--white); background: rgba(255,255,255,.14);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .5rem; border: none; background: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all .3s; border-radius: 2px;
}

/* Mobile nav — slide-down panel anchored below the nav bar.
   Hidden on desktop, only renders inside the mobile @media block. */
.mobile-nav {
  display: none;
  position: fixed; top: 56px; left: 0; right: 0;
  z-index: 1100;
  background: var(--primary);
  border-bottom: 1px solid rgba(212,165,116,.18);
  flex-direction: column;
  padding: 1.1rem 1.5rem 1.4rem;
  gap: .15rem;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform .28s cubic-bezier(.4,.0,.2,1),
              opacity .22s ease;
  pointer-events: none;
  box-shadow: 0 12px 32px rgba(6,15,24,.45);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: rgba(255,255,255,.92);
  font-weight: 500;
  padding: .85rem .25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s, padding-left .2s;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:active { color: var(--accent-light); padding-left: .75rem; }

/* Close button hidden — hamburger now toggles open/close */
.mobile-nav-close { display: none; }

/* Lang switcher inside mobile panel */
.mobile-lang {
  display: flex; gap: 1.25rem;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.mobile-lang a {
  font-family: var(--font-body) !important;
  font-size: .82rem !important;
  padding: 0 !important;
  border: none !important;
  font-weight: 600;
}
.mobile-lang a:hover { padding-left: 0 !important; color: var(--accent-light); }

/* Hamburger → X animation when menu open */
.nav-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #060F18 0%, #0D1B2A 45%, #162336 75%, #1C2D44 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(184,115,51,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(212,165,116,.08) 0%, transparent 45%);
  pointer-events: none;
}
/* decorative rail lines */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-light), var(--accent), transparent);
  opacity: .5;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent-light);
  margin-bottom: 1.75rem; padding: .45rem 1.15rem;
  border: 1px solid rgba(212,165,116,.55); border-radius: 100px;
  background: rgba(13,27,42,.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent-light); border-radius: 50%;
  display: inline-block; animation: pulse-dot 2s infinite ease-in-out;
}
@keyframes pulse-dot {
  0%, 100% { opacity: .4; }
  50%      { opacity: 1; }
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; font-size: clamp(2.2rem, 6vw, 4.2rem); }
.hero h1 em { font-style: italic; color: var(--accent-light); }
.hero-subtitle {
  color: rgba(255,255,255,.72); font-size: clamp(.95rem, 2vw, 1.2rem);
  margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { }
.hero-stat-value {
  font-family: var(--font-heading); font-size: 2.2rem;
  font-weight: 700; color: var(--accent-light); line-height: 1;
}
.hero-stat-label {
  font-size: .75rem; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .1em; margin-top: .3rem;
}

/* ──────────────────────────────────────────
   HERO with background image
────────────────────────────────────────── */
.hero.hero-image {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.hero.hero-image::before { display: none; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.hero-scroll span {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, var(--accent-light));
  animation: scroll-pulse 2.4s infinite ease-in-out;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.3); opacity: .3; transform-origin: top; }
  50%      { transform: scaleY(1);   opacity: 1;  transform-origin: top; }
}

/* ──────────────────────────────────────────
   CINEMATIC FULL-BLEED BLOCK
────────────────────────────────────────── */
.cinematic {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 520px;
  overflow: hidden;
  margin: 0;
  background: var(--primary-dark);
}
.cinematic.cinematic-tall { height: 88vh; min-height: 600px; }
.cinematic img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.cinematic figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 6rem 2rem 3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(6,15,24,.85) 100%);
  color: var(--white);
  text-align: center;
}
.cinematic .cap-label {
  display: block;
  font-size: .8rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent-light);
  margin-bottom: .85rem;
}
.cinematic figcaption p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  font-style: italic;
  line-height: 1.5;
  max-width: 760px; margin: 0 auto;
  color: var(--white);
}
.cinematic .cap-bottom p { font-style: italic; }

/* ──────────────────────────────────────────
   STORY SPLIT (image + text, alternating)
────────────────────────────────────────── */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg);
  padding: 0;
  align-items: stretch;
}
.story-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  background: var(--primary-mid);
}
.story-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 1.2s ease;
}
.story-split:hover .story-img-wrap img { transform: scale(1.03); }
.story-content {
  padding: 5rem clamp(2rem, 6vw, 5rem);
  display: flex; flex-direction: column;
  justify-content: center;
  background: var(--bg-warm);
}
.story-content h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: 1.5rem; line-height: 1.15;
}
.story-content p {
  color: var(--text-mid);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.story-split-reverse .story-img-wrap { order: 2; }
.story-split-reverse .story-content  { order: 1; }

/* ──────────────────────────────────────────
   QUOTE PULL
────────────────────────────────────────── */
.quote-pull {
  background: var(--bg-warm); padding: 6rem 0; text-align: center;
  border-top: 1px solid var(--border-light);
  position: relative;
}
.quote-pull::before {
  content: '"';
  position: absolute; top: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 6rem; line-height: 1;
  color: var(--accent); opacity: .15;
  pointer-events: none;
}
.main-quote { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
.main-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  line-height: 1.6; color: var(--primary);
  font-style: italic; margin-bottom: 1.75rem;
  position: relative;
}
.main-quote cite {
  font-size: .82rem; color: var(--text-mid);
  font-style: normal; letter-spacing: .08em;
  display: inline-block; position: relative;
  padding-top: 1rem;
}
.main-quote cite::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 1px; background: var(--accent);
}

/* ──────────────────────────────────────────
   LANDMARKS LIST
────────────────────────────────────────── */
.landmarks-section { background: var(--bg-warm); padding: 6rem 0; }
.landmarks-header { text-align: center; margin-bottom: 4rem; }
.landmarks-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.landmarks-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; max-width: 1100px; margin: 0 auto;
}
.landmark-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  transition: all .25s ease;
  display: flex; flex-direction: column; gap: .35rem;
  position: relative; overflow: hidden;
}
.landmark-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent); transform: scaleY(0);
  transform-origin: top; transition: transform .3s ease;
}
.landmark-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.landmark-card:hover::before { transform: scaleY(1); }
.lm-name {
  font-family: var(--font-heading);
  font-size: 1.1rem; color: var(--primary); font-weight: 600;
  line-height: 1.3;
}
.lm-region {
  font-size: .72rem; color: var(--accent);
  text-transform: uppercase; letter-spacing: .14em; font-weight: 600;
}
/* legacy list (still supported on inner pages) */
.landmark-list { list-style: none; }
.landmark-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1rem 0; border-bottom: 1px solid var(--border-light); gap: 1rem;
}
.landmark-list li:last-child { border-bottom: none; }

/* ──────────────────────────────────────────
   FEATURES CARDS
────────────────────────────────────────── */
.cards-section { background: var(--bg-warm); }
.cards-header { text-align: center; margin-bottom: 3rem; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all .3s ease; border: 1px solid var(--border-light);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img {
  width: 100%; height: 220px; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-mid), var(--primary));
  display: flex; align-items: center; justify-content: center;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-img-ph { font-size: 3rem; opacity: .25; }
.card-body { padding: 1.5rem; }
.card-tag {
  font-size: .72rem; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem;
}
.card h3 { margin-bottom: .65rem; font-size: 1.2rem; }
.card p { color: var(--text-mid); font-size: .9rem; }

/* ──────────────────────────────────────────
   SPLIT / ABOUT PREVIEW
────────────────────────────────────────── */
.split-section { background: var(--white); }
.split-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img-ph {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--border) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 5rem; opacity: .4;
}
.split-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--primary); color: var(--white);
  padding: .75rem 1.25rem; border-radius: var(--radius);
  font-family: var(--font-heading); font-size: 1rem;
  box-shadow: var(--shadow-md);
}
.split-img-badge span {
  display: block; font-family: var(--font-body); font-size: .75rem;
  color: var(--accent-light); font-weight: 400; margin-top: .15rem;
}
.split-content p { color: var(--text-mid); margin-bottom: 1rem; }
.split-content p:last-of-type { margin-bottom: 1.75rem; }

/* ── Feature list ── */
.feature-list { margin-bottom: 2rem; }
.feature-list li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .55rem 0; color: var(--text-mid); font-size: .92rem;
  border-bottom: 1px solid var(--border-light);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓'; color: var(--success); font-weight: 700;
  flex-shrink: 0; margin-top: .1rem; font-size: .9rem;
}

/* ──────────────────────────────────────────
   ANIMATIONS MARQUEE (flowing strip)
────────────────────────────────────────── */
.anim-strip {
  background: var(--primary-dark);
  padding: 4rem 0; overflow: hidden;
  border-top: 1px solid rgba(184,115,51,.18);
  border-bottom: 1px solid rgba(184,115,51,.18);
}
.anim-strip-label {
  text-align: center; color: var(--accent-light); font-size: .78rem;
  font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.anim-marquee {
  position: relative; width: 100%; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.anim-marquee-track {
  display: flex; gap: 3rem; width: max-content;
  animation:
    marquee-fade-in .8s ease both,
    marquee-scroll 42s linear infinite;
}
@keyframes marquee-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim-item {
  display: inline-flex; align-items: center; gap: 1.25rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: rgba(255,255,255,.82);
  white-space: nowrap;
}
.anim-item::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  display: inline-block; flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .anim-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ──────────────────────────────────────────
   GALLERY TEASER
────────────────────────────────────────── */
.gallery-section { background: var(--bg-alt); }
.gallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer; background: var(--border);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-ph {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-mid) 0%, var(--primary) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; opacity: .35; transition: opacity .3s;
}
.gallery-item:nth-child(1) .gallery-ph { aspect-ratio: auto; min-height: 380px; }
.gallery-item:hover .gallery-ph { opacity: .55; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(13,27,42,.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 1.5rem; }

/* ──────────────────────────────────────────
   VISIT SECTION
────────────────────────────────────────── */
.visit-section { background: var(--white); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.visit-info h2 { margin-bottom: 1.75rem; }
.visit-detail {
  display: flex; gap: 1rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border-light);
}
.visit-detail:last-child { border-bottom: none; }
.visit-icon {
  width: 42px; height: 42px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--accent);
}
.visit-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.visit-dt { font-size: .78rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }
.visit-dd { color: var(--text); font-weight: 500; font-size: .95rem; }
.visit-dd a { color: var(--accent); }
.visit-dd a:hover { color: var(--accent-dark); }
.visit-map {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.map-embed { width: 100%; height: 460px; border: none; display: block; }
.map-ph {
  width: 100%; height: 460px;
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-alt));
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1rem; color: var(--text-light);
}
.map-ph p { font-size: .95rem; color: var(--text-mid); font-weight: 500; }

/* ──────────────────────────────────────────
   CTA BANNER
────────────────────────────────────────── */
.cta-banner {
  background: var(--primary); padding: 5.5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,115,51,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--white); margin-bottom: 1rem;
  font-size: clamp(1.7rem, 4vw, 2.6rem); position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,.68); font-size: 1.05rem;
  margin-bottom: 2.5rem; max-width: 520px; margin-left: auto;
  margin-right: auto; position: relative;
}
.cta-banner .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer { background: var(--primary-dark); color: rgba(255,255,255,.75); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand h3 {
  font-family: var(--font-heading); color: var(--white);
  font-size: 1.5rem; margin-bottom: .75rem;
}
.footer-brand p { font-size: .88rem; line-height: 1.75; margin-bottom: 1rem; }
.footer-heading {
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-light); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent-light); }
.footer-contact p { font-size: .9rem; margin-bottom: .65rem; }
.footer-contact a { color: rgba(255,255,255,.85); transition: color .2s; }
.footer-contact a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.75rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom a:hover { color: var(--accent-light); }

/* ──────────────────────────────────────────
   PAGE HERO (inner pages)
────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(145deg, #060F18 0%, #0D1B2A 60%, #162336 100%);
  padding: 8.5rem 0 4.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero h1 em { font-style: italic; color: var(--accent-light); }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 620px; margin: 0 auto; line-height: 1.7; }

/* Cinematic page hero — photo background variant */
.page-hero.has-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 11rem 0 6rem; min-height: 56vh;
  display: flex; align-items: center;
}
.page-hero.has-image::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,15,24,.6) 0%, rgba(6,15,24,.7) 60%, rgba(6,15,24,.92) 100%);
  z-index: 0;
  pointer-events: none;
}
.page-hero.has-image .container { position: relative; z-index: 1; }
.page-hero.has-image .breadcrumb { justify-content: center; }
.page-hero h1 { font-size: clamp(2rem, 5.2vw, 3.6rem); line-height: 1.15; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; margin-bottom: 1.5rem; justify-content: center;
}
.breadcrumb a { color: var(--accent-light); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ──────────────────────────────────────────
   ABOUT PAGE
────────────────────────────────────────── */
.about-content { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-ph {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg-alt), var(--border));
  display: flex; align-items: center; justify-content: center; font-size: 5rem; opacity: .4;
}
.about-quote {
  margin: 2.5rem 0; padding: 1.5rem 2rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-warm); border-radius: 0 var(--radius) var(--radius) 0;
}
.about-quote p { font-family: var(--font-heading); font-size: 1.1rem; font-style: italic; color: var(--text); }
.about-quote cite { display: block; margin-top: .75rem; font-size: .82rem; color: var(--text-light); font-style: normal; }
.craft-section { background: var(--bg-warm); }
.craft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.craft-card {
  padding: 2rem; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm); text-align: center;
}
.craft-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.craft-card h3 { font-size: 1.1rem; margin-bottom: .65rem; }
.craft-card p { font-size: .88rem; color: var(--text-mid); }
/* Landmark detail card (used on Despre page) */
.landmark-detail-card {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
  transition: all .25s ease;
  position: relative;
}
.landmark-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.landmark-detail-card h3 {
  font-size: 1.1rem; margin-bottom: .5rem; color: var(--primary);
}
.landmark-detail-card p {
  font-size: .88rem; color: var(--text-mid); line-height: 1.65;
}

.vision-section {
  background: var(--primary); padding: 5rem 0; text-align: center;
}
.vision-section h2 { color: var(--white); margin-bottom: 1.25rem; }
.vision-section p { color: rgba(255,255,255,.72); max-width: 680px; margin: 0 auto 1.5rem; font-size: 1.05rem; }

/* ──────────────────────────────────────────
   GALLERY PAGE
────────────────────────────────────────── */
.gallery-page-section { background: var(--bg); }
.gallery-filter {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 3rem; justify-content: center;
}
.filter-btn {
  padding: .5rem 1.25rem; border-radius: 100px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: .85rem; font-weight: 500; cursor: pointer;
  transition: all .2s; color: var(--text-mid);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--primary); background: var(--primary); color: var(--white);
}
.gallery-footnote {
  text-align: center; margin-top: 4rem; padding: 2.5rem 2rem;
  background: var(--bg-warm); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.gallery-footnote p {
  color: var(--text-mid); font-size: 1rem;
  max-width: 580px; margin: 0 auto 1.25rem;
  font-style: italic;
}
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-full-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--bg-alt);
  aspect-ratio: 4/3;
}
.gallery-full-item:nth-child(6n+1) { grid-column: span 2; aspect-ratio: 16/10; }
.gallery-full-item:nth-child(6n+4) { aspect-ratio: 1/1; }
.gallery-item-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(6,15,24,.92));
  padding: 3rem 1.25rem 1.1rem; color: var(--white);
  font-size: .88rem; font-style: italic;
  opacity: 0; transition: opacity .3s;
  font-family: var(--font-heading);
}
.gallery-full-item:hover .gallery-item-caption { opacity: 1; }
.gallery-full-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease; display: block;
}
.gallery-full-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(6,15,24,.97); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 2rem; color: var(--white); cursor: pointer;
  background: none; border: none; line-height: 1;
}

/* ──────────────────────────────────────────
   CONTACT PAGE
────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border-light);
}
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--accent);
}
.contact-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.contact-dt { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: .2rem; }
.contact-dd { color: var(--text); font-weight: 500; font-size: .95rem; }
.contact-dd a { color: var(--accent); transition: color .2s; }
.contact-dd a:hover { color: var(--accent-dark); }
.contact-form { background: var(--bg-warm); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border-light); }
.contact-form h3 { margin-bottom: 1.5rem; font-size: 1.35rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .4rem; color: var(--text); }
.form-control {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem; color: var(--text);
  background: var(--white); transition: border-color .2s;
}
.form-control:focus { outline: none; border-color: var(--accent); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-note { font-size: .8rem; color: var(--text-light); margin-top: .4rem; }

/* Form feedback (success / error inline message) */
.form-feedback {
  margin-top: 1rem;
  padding: 0;
  font-size: .92rem;
  line-height: 1.55;
  border-radius: var(--radius);
  text-align: left;
  transition: all .25s ease;
  display: flex; align-items: flex-start; gap: .65rem;
}
.form-feedback:empty { padding: 0; margin: 0; display: none; }
.form-feedback::before {
  flex-shrink: 0; margin-top: .1rem;
  font-family: var(--font-heading); font-weight: 700;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; line-height: 1;
}
.form-feedback.feedback-success {
  padding: 1rem 1.25rem;
  background: rgba(184,115,51,.07);
  border: 1px solid rgba(184,115,51,.25);
  color: var(--primary);
}
.form-feedback.feedback-success::before {
  content: '✓';
  background: var(--accent); color: var(--white);
}
.form-feedback.feedback-error {
  padding: 1rem 1.25rem;
  background: rgba(13,27,42,.05);
  border: 1px solid rgba(13,27,42,.18);
  color: var(--text);
}
.form-feedback.feedback-error::before {
  content: '!';
  background: var(--primary); color: var(--accent-light);
}

/* ──────────────────────────────────────────
   VISIT PAGE
────────────────────────────────────────── */
.visit-page-section { background: var(--white); }
.visit-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.info-card {
  background: var(--bg-warm); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border-light); margin-bottom: 1.5rem;
}
.info-card h3 {
  margin-bottom: 1rem; font-size: 1.15rem;
  font-family: var(--font-heading); color: var(--primary);
}
.info-card p { color: var(--text-mid); font-size: .98rem; line-height: 1.65; }
.info-note {
  background: rgba(184,115,51,.07); border: 1px solid rgba(184,115,51,.18);
  border-radius: var(--radius); padding: .85rem 1.1rem; font-size: .9rem;
  color: var(--text-mid); margin-top: 1rem; line-height: 1.55;
}
.info-note strong { color: var(--accent); }

/* Materials inline paragraph (replaces ✓ checkmark list on Despre) */
.materials-line {
  margin: 2.5rem auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-mid);
  line-height: 1.7;
  padding: 0 1rem;
}
.price-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; border-bottom: 1px solid var(--border-light); }
.price-row:last-child { border-bottom: none; }
.price-label { font-size: .92rem; color: var(--text-mid); }
.price-value { font-weight: 700; color: var(--primary); font-size: 1.05rem; }

/* ──────────────────────────────────────────
   ANIMATIONS / SCROLL
────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* ──────────────────────────────────────────
   WATERMARK CROP — phone photos have "HONOR 90 200MP Matrix Camera"
   at bottom-left. Strategy:
   1) Aggressive object-position shift to crop the bottom of the photo
   2) Subtle bottom gradient only where needed (cinematic / hero)
   3) Clean photos (no watermark) get .photo-clean — no mask applied
────────────────────────────────────────── */
.cinematic img,
.story-img-wrap img,
.gallery-full-item img,
.about-img img {
  object-position: 55% 20%;
}
/* Clean photos (no watermark) use natural centering */
.story-img-wrap.photo-clean img,
.gallery-full-item.photo-clean img,
.about-img.photo-clean img {
  object-position: center center;
}
.page-hero.has-image {
  background-position: 55% 20% !important;
}
.page-hero.has-image.photo-clean {
  background-position: center center !important;
}
.hero.hero-image {
  background-position: 55% 20% !important;
}

/* Cinematic block: single subtle gradient covers watermark while keeping
   image visible. The figcaption already has its own gradient — don't double up. */
.cinematic { position: relative; }
.cinematic figcaption {
  z-index: 2;
  padding-top: 7rem;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(6,15,24,.55) 35%,
    rgba(6,15,24,.95) 100%);
}

/* Hero: smooth feathered gradient at bottom, matches the page background. */
.hero.hero-image::after {
  content: '';
  position: absolute; inset: auto 0 0 0; height: 30%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(6,15,24,.55) 50%,
    rgba(6,15,24,.96) 100%);
  pointer-events: none; z-index: 0;
  border: none; opacity: 1;
}
.hero.hero-image .container { position: relative; z-index: 1; }

/* Story / Gallery / About — bottom mask ONLY when image is known watermarked.
   Photos with .photo-clean class skip the mask. */
.story-img-wrap, .gallery-full-item, .about-img {
  position: relative; isolation: isolate;
}
/* Default masks (apply to all unless .photo-clean) — sized to fully cover
   HONOR 90 / 200MP Matrix Camera watermark at bottom-left of phone photos. */
.story-img-wrap:not(.photo-clean)::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 110px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(6,15,24,.35) 40%,
    rgba(6,15,24,.92) 100%);
  pointer-events: none; z-index: 1;
}
.gallery-full-item:not(.photo-clean)::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 85px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(6,15,24,.45) 45%,
    rgba(6,15,24,.95) 100%);
  pointer-events: none; z-index: 1;
}
.about-img:not(.photo-clean)::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(6,15,24,.35) 50%,
    rgba(6,15,24,.85) 100%);
  pointer-events: none; z-index: 1;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.gallery-item-caption { z-index: 2; }

/* ──────────────────────────────────────────
   GLOBAL POLISH
────────────────────────────────────────── */
html { -webkit-text-size-adjust: 100%; }
body { -webkit-tap-highlight-color: transparent; }
img { -webkit-user-drag: none; user-select: none; }

/* Brand-aligned text selection */
::selection { background: var(--accent); color: var(--white); }
::-moz-selection { background: var(--accent); color: var(--white); }

/* Focus styles — visible and on-brand */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }

/* Better font rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Story-content max-width on very wide screens — keep text readable */
.story-content { max-width: 720px; }
.story-split-reverse .story-content { margin-left: auto; }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .story-split { grid-template-columns: 1fr; }
  .story-img-wrap { min-height: 360px; height: 55vh; }
  .story-split-reverse .story-img-wrap { order: 1; }
  .story-split-reverse .story-content  { order: 2; }
  .cinematic { height: 60vh; min-height: 380px; }
  .cinematic.cinematic-tall { height: 70vh; min-height: 460px; }
  .landmarks-grid  { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .split-inner, .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 3rem; }
  .split-inner.reverse { direction: ltr; }
  .craft-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .visit-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .gallery-full-item:nth-child(6n+1) { grid-column: span 2; aspect-ratio: 16/10; }
  .gallery-full-item:nth-child(6n+4) { aspect-ratio: 4/3; }
}

/* ── Tablet & phone (768px) ── */
@media (max-width: 768px) {
  section { padding: 3rem 0; }
  h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); line-height: 1.15; }
  h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); line-height: 1.2; }

  /* Container — tighter side margins */
  .container { padding: 0 1.25rem; }

  /* Navigation — compact logo, hide lang switcher (it's in mobile-nav) */
  .nav { padding: .85rem 0; }
  .nav.scrolled { padding: .7rem 0; }
  .nav-logo { font-size: 1.05rem; line-height: 1.1; }
  .nav-logo span { font-size: .58rem; letter-spacing: .12em; margin-top: .15rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; padding: .65rem; }
  .lang-switcher { display: none; }
  .nav-right { gap: .5rem; }
  .mobile-nav { display: flex; }

  /* Hero — tighter, full-width CTAs */
  .hero { min-height: 92vh; padding: 5rem 0 3rem; }
  .hero-badge { font-size: .68rem; padding: .35rem .85rem; letter-spacing: .15em; margin-bottom: 1.25rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
  .hero-cta { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.5rem; }
  .hero-cta .btn { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: .95rem; }
  .hero-detail { font-size: .7rem; margin-top: 1.5rem; letter-spacing: .08em; }
  .hero-scroll { display: none; }

  /* Page hero (inner pages) */
  .page-hero { padding: 7rem 0 3.5rem; }
  .page-hero.has-image { padding: 8rem 0 4rem; min-height: 48vh; }
  .page-hero h1 { font-size: clamp(1.85rem, 8vw, 2.8rem); }

  /* Cinematic blocks — shorter on mobile */
  .cinematic { height: 50vh; min-height: 320px; }
  .cinematic.cinematic-tall { height: 60vh; min-height: 400px; }
  .cinematic figcaption { padding: 5rem 1.25rem 1.75rem; }
  .cinematic .cap-label { font-size: .7rem; letter-spacing: .16em; }
  .cinematic figcaption p { font-size: 1.05rem; line-height: 1.5; }

  /* Story splits */
  .story-img-wrap { min-height: 280px; height: 45vh; }
  .story-content { padding: 2.5rem 1.5rem; }
  .story-content h2 { font-size: clamp(1.45rem, 6vw, 1.85rem); }
  .story-content p { font-size: .96rem; line-height: 1.7; }

  /* Quote pull */
  .quote-pull { padding: 3.5rem 0; }
  .main-quote p { font-size: 1.1rem; line-height: 1.55; }

  /* Animation marquee — slow down + smaller text */
  .anim-strip { padding: 2.75rem 0; }
  .anim-strip-label { font-size: .7rem; letter-spacing: .16em; margin-bottom: 1.5rem; }
  .anim-marquee-track { gap: 2rem; animation-duration: 30s; }
  .anim-item { font-size: 1.05rem; gap: 1rem; }
  .anim-item::before { width: 5px; height: 5px; }

  /* Landmarks */
  .landmarks-section { padding: 3.5rem 0; }
  .landmarks-header { margin-bottom: 2.25rem; }
  .landmarks-grid { grid-template-columns: 1fr; gap: .75rem; }
  .landmark-card { padding: 1.1rem 1.25rem; }
  .lm-name { font-size: 1.02rem; }

  /* Visit + Contact sections */
  .visit-section { padding: 3.5rem 0; }
  .visit-grid { gap: 2.5rem; }
  .visit-detail { padding: 1rem 0; gap: .9rem; }
  .visit-icon { width: 38px; height: 38px; }
  .visit-icon svg { width: 16px; height: 16px; }
  .visit-dd { font-size: .9rem; }
  .map-embed { height: 320px; }

  .contact-grid { gap: 2.5rem; }
  .contact-form { padding: 1.5rem; border-radius: var(--radius); }
  .contact-form h3 { font-size: 1.15rem; }
  .form-control { font-size: 16px; /* prevents iOS zoom on focus */ }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Gallery — 1 col on phone, full-width hero photo */
  .gallery-full-grid { grid-template-columns: 1fr; gap: .75rem; }
  .gallery-full-item { aspect-ratio: 4/3; }
  .gallery-full-item:nth-child(6n+1),
  .gallery-full-item:nth-child(6n+4) { grid-column: span 1; aspect-ratio: 4/3; }
  /* Show captions always on mobile (no hover) */
  .gallery-item-caption {
    opacity: 1;
    background: linear-gradient(transparent 30%, rgba(6,15,24,.85));
    font-size: .8rem; padding: 2.5rem 1rem .9rem;
  }
  .gallery-footnote { padding: 1.75rem 1.25rem; margin-top: 2.5rem; }
  .gallery-footnote p { font-size: .92rem; }

  /* Vision section */
  .vision-section { padding: 3.5rem 0; }

  /* About / Despre */
  .about-content { padding: 3.5rem 0; }
  .craft-section { padding: 3.5rem 0; }
  .craft-card { padding: 1.5rem; }
  .craft-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-banner { padding: 4rem 0; }
  .cta-banner p { font-size: .98rem; }
  .cta-banner .btns { flex-direction: column; gap: .75rem; }
  .cta-banner .btn { width: 100%; justify-content: center; padding: 1rem 1.5rem; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .75rem; }

  /* Buttons — bigger tap targets */
  .btn { padding: .95rem 1.5rem; min-height: 46px; }

  /* Mobile nav links — slightly smaller so 5 fit */
  .mobile-nav a { font-size: 1.55rem; }
  .mobile-nav { gap: 1.85rem; }

  /* Breadcrumb — smaller */
  .breadcrumb { font-size: .75rem; margin-bottom: 1rem; }
}

/* ── Small phones (480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .nav-logo { font-size: .95rem; }
  .nav-logo span { font-size: .55rem; }
  .hero h1 { font-size: clamp(1.7rem, 9vw, 2.3rem); }
  .hero-subtitle { font-size: .95rem; }
  .hero-badge { font-size: .65rem; padding: .3rem .75rem; }
  .page-hero h1 { font-size: clamp(1.65rem, 8.5vw, 2.4rem); }
  .cinematic figcaption p { font-size: .98rem; }
  .main-quote p { font-size: 1.05rem; }
  .anim-item { font-size: .95rem; }
}
