/* ================================================================
   style.css — Anna Sulac Wedding & Event Planner
   Design: Minimalist · Light · Editorial · Magazine Style
   ================================================================ */

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

@font-face {
  font-family: 'Ranget';
  src: url('/fonts/Ranget.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

/* ── Variables ──────────────────────────────────────────────────── */
:root {
  /* Colors */
  --white: #FFFFFF;
  --cream: #FAF8F5;
  --cream-dark: #F3EFE9;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #A8864D;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #8A8A8A;
  --border: #E8E4DF;
  --border-dark: #D4CEC7;
  --overlay: rgba(26, 26, 26, 0.45);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: clamp(8px, 1vw, 12px);
  --space-sm: clamp(12px, 2vw, 16px);
  --space-md: clamp(16px, 3vw, 24px);
  --space-lg: clamp(30px, 5vw, 60px);
  --space-xl: clamp(50px, 8vw, 90px);

  /* Layout */
  --container: min(1280px, 94vw);
  --nav-h: 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration: 0.35s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--gold-light);
  color: var(--text);
}

/* ── Typography ─────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

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

h5 {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

p {
  margin-bottom: 1.2em;
  color: var(--text-mid);
}

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

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

/* ── Section ────────────────────────────────────────────────────── */
section {
  padding: var(--space-xl) 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: var(--space-sm);
}

.section-tag::before {
  content: '—';
  margin-right: 8px;
  opacity: 0.5;
}

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

.section-header.centered {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ── NAVIGATION ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}

body:not(.page-home) #main-content {
  padding-top: var(--nav-h);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Header sempre scuro sulle pagine interne (non homepage) */
body:not(.page-home) .site-header {
  background: rgba(15, 15, 15, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  gap: var(--space-md);
  position: relative;
}

/* Layout centrato: menu | logo | CTA */
.nav-inner--centered {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-md);
}

.nav-inner--centered .nav-links--left {
  justify-self: start;
}

.nav-inner--centered .nav-logo--center {
  justify-self: center;
}

.nav-inner--centered .nav-right {
  justify-self: end;
}

.nav-inner--centered .nav-burger {
  justify-self: end;
}

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo img,
.nav-logo-img {
  max-height: 38px;
  width: auto;
  display: block;
}

.nav-logo span {
  color: var(--gold-dark);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration) var(--ease);
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active {
  color: #ffffff;
}

/* Nav right: lang + CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.lang-active {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: 4px;
  transition: all var(--duration) var(--ease);
  background: var(--cream);
}

.lang-active:hover {
  color: var(--gold-dark);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all var(--duration) var(--ease);
  z-index: 100;
}

.lang-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: block;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  transition: all var(--duration) var(--ease);
  text-align: center;
}

.lang-dropdown a:hover {
  color: var(--gold-dark);
  background: var(--cream);
}

/* Mobile menu button */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  -webkit-appearance: none;
  appearance: none;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.9);
  transition: all var(--duration) var(--ease);
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) 0;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration) var(--ease-out);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

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

.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--duration) var(--ease);
}

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

.mobile-nav .lang-row {
  display: flex;
  gap: 8px;
  padding-top: var(--space-xs);
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

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

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

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

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

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}

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

.btn-ghost {
  background: transparent;
  color: var(--gold-dark);
  border: none;
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0.1em;
}

.btn-ghost::after {
  content: '→';
  font-size: 1rem;
  transition: transform var(--duration) var(--ease);
}

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1EBE57;
  border-color: #1EBE57;
}

.btn-telegram {
  background: #229ED9;
  color: var(--white);
  border-color: #229ED9;
}

.btn-telegram:hover {
  background: #1A8EC4;
  border-color: #1A8EC4;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.72rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 0.85rem;
}

/* ── HERO SECTION ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(250, 248, 245, 0.85) 0%,
      rgba(250, 248, 245, 0.6) 40%,
      rgba(250, 248, 245, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: var(--space-xl) 0;
  animation: fadeUp 1s var(--ease-out) both;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: var(--space-sm);
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.12;
  font-style: italic;
  margin-bottom: var(--space-md);
  color: var(--text);
}

.hero h1 strong {
  font-weight: 500;
  font-style: normal;
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── ABOUT PREVIEW ──────────────────────────────────────────────── */
.about-preview {
  background: var(--cream);
}

.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-img:hover img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: var(--space-md);
  right: -20px;
  background: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-left: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

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

.about-text h2 {
  margin-bottom: var(--space-xs);
}

.about-subtitle-text {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: var(--space-md);
  display: block;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

/* ── SERVICES ───────────────────────────────────────────────────── */
.services-section {
  background: var(--white);
}

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

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--gold-light);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.service-card p {
  flex: 1;
}

.service-price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

/* ── COUNTRIES / MAP ────────────────────────────────────────────── */
.countries-section {
  background: var(--text);
  color: var(--white);
}

.countries-section .section-tag {
  color: var(--gold-light);
}

.countries-section h2 {
  color: var(--white);
}

.countries-section p {
  color: rgba(255, 255, 255, 0.65);
}

.countries-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.countries-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-md);
  margin-top: var(--space-lg);
}

.countries-section .country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

.countries-section .country-item::before {
  content: '◆';
  font-size: 0.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.map-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.05);
}

.map-container .europe-map {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-md);
  filter: brightness(0) invert(1) opacity(0.5);
}

/* ── PORTFOLIO GRID ─────────────────────────────────────────────── */
.portfolio-section {
  background: var(--cream);
}

.portfolio-filter {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 20px;
  border: 1.5px solid var(--border-dark);
  border-radius: 100px;
  background: none;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.portfolio-item:nth-child(3n+1) {
  aspect-ratio: 3/4;
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials-section {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-light);
  font-style: italic;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: var(--space-md);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gold-light);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.testimonial-event {
  font-size: 0.76rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── BLOG PREVIEW ───────────────────────────────────────────────── */
.blog-section {
  background: var(--cream);
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.blog-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
  flex: 1;
}

.blog-date {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: var(--space-sm);
}

/* ── CONTACT CTA STRIP ──────────────────────────────────────────── */
.contact-strip {
  background: var(--text);
  padding: var(--space-lg) 0;
}

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

.contact-strip h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-strip p {
  color: rgba(255, 255, 255, 0.65);
}

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

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

.contact-strip .btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.contact-strip .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.contact-strip .btn-outline:hover {
  background: var(--white);
  color: var(--text);
}

/* ── CONTACT PAGE ───────────────────────────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: var(--space-lg);
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--duration) var(--ease);
  border: 1.5px solid transparent;
}

.social-btn-whatsapp {
  background: #E8F9EE;
  color: #1A7A3F;
  border-color: #B8E8CB;
}

.social-btn-whatsapp:hover {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.social-btn-telegram {
  background: #E8F4FD;
  color: #1573B0;
  border-color: #B8DCF5;
}

.social-btn-telegram:hover {
  background: #229ED9;
  color: var(--white);
  border-color: #229ED9;
}

.social-btn-email {
  background: var(--cream-dark);
  color: var(--text-mid);
  border-color: var(--border);
}

.social-btn-email:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

/* ── FORM ───────────────────────────────────────────────────────── */
.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
}

.form-title-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: var(--space-lg);
  color: var(--text);
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 6px;
}

.form-group label .req {
  color: var(--gold-dark);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.92rem;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

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

.form-control.error {
  border-color: #E74C3C;
}

select.form-control {
  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 d='M1 1l5 5 5-5' stroke='%238A8A8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

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

.form-error-msg {
  font-size: 0.75rem;
  color: #E74C3C;
  margin-top: 4px;
}

.form-success-msg {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  color: #2E7D32;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: var(--space-md);
  display: none;
}

/* Turnstile container */
.cf-turnstile {
  margin: var(--space-sm) 0;
}

/* ── PAGE HERO ──────────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + var(--space-xl)) 0 var(--space-lg);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
}

.page-hero-subtitle {
  max-width: 560px;
  margin: var(--space-sm) auto 0;
  color: var(--text-mid);
}

/* ── ABOUT PAGE ─────────────────────────────────────────────────── */
.about-page-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.about-page-img {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 2/3;
}

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

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.about-value-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-sm) var(--space-md);
}

.about-value-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

/* ── SERVICES PAGE ──────────────────────────────────────────────── */
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.service-detail-card:nth-child(even) .service-detail-text {
  order: 2;
}

.service-detail-card:nth-child(even) .service-detail-img {
  order: 1;
}

.service-detail-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.service-includes-list {
  margin-top: var(--space-md);
}

.service-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  color: var(--text-mid);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.service-includes-list li::before {
  content: '✓';
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── BLOG PAGE ──────────────────────────────────────────────────── */
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.blog-post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

.blog-post-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.blog-post-card:hover .blog-post-img img {
  transform: scale(1.04);
}

.blog-post-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-body h2 {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.blog-post-body p {
  flex: 1;
}

.blog-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-md);
}

/* Blog Post Single */
.blog-post-single {
  max-width: 760px;
  margin: 0 auto;
}

.blog-post-single h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.blog-post-single .lead {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.blog-post-single h2 {
  font-size: 1.6rem;
  margin: var(--space-lg) 0 var(--space-sm);
}

.blog-post-single h3 {
  font-size: 1.2rem;
  margin: var(--space-md) 0 var(--space-xs);
}

.blog-post-single p {
  line-height: 1.8;
}

.blog-post-single ul {
  margin: var(--space-sm) 0;
  padding-left: 0;
}

.blog-post-single ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

.blog-post-single ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.blog-hero-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  aspect-ratio: 16/8;
}

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

/* ── TERMS PAGE ─────────────────────────────────────────────────── */
.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-content h2 {
  font-size: 1.4rem;
  margin: var(--space-lg) 0 var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.terms-content h2:first-child {
  border-top: none;
  margin-top: 0;
}

.terms-content ul {
  margin: var(--space-sm) 0;
}

.terms-content ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--text-mid);
}

.terms-content ul li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: var(--gold);
  font-size: 1.2rem;
}

/* ── 404 PAGE ───────────────────────────────────────────────────── */
.not-found {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-h) var(--space-md) var(--space-md);
  background: var(--cream);
}

.not-found-inner {
  max-width: 560px;
}

.not-found-number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  line-height: 1;
  color: var(--gold-light);
  font-style: italic;
  display: block;
  margin-bottom: var(--space-sm);
}

.not-found h1 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.not-found p {
  color: var(--text-mid);
  margin-bottom: var(--space-lg);
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--space-md);
}

.footer-brand .nav-logo {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration) var(--ease);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

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

.footer-copy {
  font-size: 0.78rem;
}

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

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--duration) var(--ease);
}

.footer-legal a:hover {
  color: var(--gold-light);
}

/* ── COOKIE BANNER ──────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, calc(100% - 32px));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeUp 0.5s var(--ease-out);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  font-size: 0.84rem;
  color: var(--text-mid);
  flex: 1;
  min-width: 200px;
}

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

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ── UTILITIES ──────────────────────────────────────────────────── */
.text-gold {
  color: var(--gold-dark);
}

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

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

.italic {
  font-style: italic;
}

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

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

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

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

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-lg) 0;
}

/* Loading spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-preview .container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .countries-inner {
    grid-template-columns: 1fr;
  }

  .countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
    justify-items: center;
    width: 100%;
  }

  .map-container {
    max-width: 500px;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .service-detail-card:nth-child(even) .service-detail-text {
    order: 0;
  }

  .service-detail-card:nth-child(even) .service-detail-img {
    order: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex !important;
    position: absolute;
    right: 0;
  }

  .mobile-nav {
    display: block;
  }

  .nav-right {
    display: none;
  }

  /* Grids */
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .portfolio-item:nth-child(3n+1) {
    aspect-ratio: 4/3;
    grid-row: span 1;
  }

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

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

  .blog-page-grid {
    grid-template-columns: 1fr;
  }

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

  .about-preview .container {
    grid-template-columns: 1fr;
  }

  .about-img-badge {
    right: 0;
  }

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

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .about-page-content {
    grid-template-columns: 1fr;
  }

  .about-page-img {
    position: static;
    aspect-ratio: 3/2;
  }

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

  .about-values {
    grid-template-columns: 1fr;
  }

  .contact-strip .container {
    justify-content: center;
    text-align: center;
  }

  .countries-list {
    grid-template-columns: 1fr;
  }

  /* Hero */
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Cookie */
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    bottom: 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item:nth-child(3n+1) {
    aspect-ratio: 4/3;
    grid-row: span 1;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

/* ── SAFARI iOS specific fixes ──────────────────────────────────── */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }

  .not-found {
    min-height: -webkit-fill-available;
  }

  select.form-control {
    font-size: 16px;
  }

  /* prevent zoom on focus */
  input.form-control,
  textarea.form-control {
    font-size: 16px;
  }
}

/* ── Print ──────────────────────────────────────────────────────── */
@media print {

  .site-header,
  .site-footer,
  .cookie-banner,
  .contact-strip {
    display: none;
  }

  body {
    color: #000;
  }
}

/* ══════════════════════════════════════════════════════════════════
   HERO SLIDER — ca originalul annasulac.com: fullscreen dark, 5 slide-uri
══════════════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #111;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  display: none;
}

.slide-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  width: min(900px, 92vw);
  animation: fadeUp .8s ease both;
  padding: 40px 50px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 4px;
}

.slide-tag {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.slide-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.6);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 38px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .7);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  transition: all .3s ease;
  text-decoration: none;
}

.btn-hero:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* Slider arrows */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(255, 255, 255, .25);
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT HOME — foto stânga, text dreapta
══════════════════════════════════════════════════════════════════ */
.section-about-home {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.about-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.about-home-img {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 340px;
  aspect-ratio: 3/4;
}

.about-home-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.about-home-img:hover img {
  transform: scale(1.04);
}

.about-home-text .section-eyebrow {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--text-light);
  margin-bottom: .8rem;
}

.about-home-text h2 {
  margin-bottom: .5rem;
  font-style: italic;
}

.about-body-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.about-role {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.about-signature {
  font-family: 'Ranget', cursive;
  font-size: 3.2rem;
  font-weight: 400;
  color: #4a4a8a;
  margin-top: 1.2rem;
  line-height: 1.2;
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-decoration: none;
  transition: color .3s;
}

.btn-text-link::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--text);
  transition: width .4s cubic-bezier(0.16, 1, 0.3, 1), background-color .3s;
}

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

.btn-text-link:hover::after {
  width: 65px;
  background-color: var(--gold-dark);
}

/* ══════════════════════════════════════════════════════════════════
   PORTFOLIO MASONRY HOME — identic cu grila originală
══════════════════════════════════════════════════════════════════ */
.section-portfolio-home {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.section-header-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  gap: 2rem;
}

.section-header-inline h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-weight: 300;
}

.section-header-desc {
  max-width: 600px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 350px;
  /* Much larger photos */
  gap: 32px;
  /* A lot more air/whitespace */
  margin-top: 2rem;
}

.pm-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}


.pm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.pm-item:hover img {
  transform: scale(1.06);
}

.pm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.pm-item:hover .pm-overlay {
  opacity: 1;
}

.pm-overlay h3 {
  color: #fff;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1.5px solid var(--text);
  color: var(--text);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  transition: all .3s ease;
}

.btn-outline-dark:hover {
  background: var(--text);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════════
   VIDEO GALLERY HOME — 5 thumbnails cu play button
══════════════════════════════════════════════════════════════════ */
.section-video-home {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.section-video-home .section-eyebrow {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--text-light);
  margin-bottom: .8rem;
}

.section-video-home h2 {
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

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

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

.video-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
  filter: brightness(.65);
}

.video-thumb:hover img {
  transform: scale(1.07);
  filter: brightness(.4);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s, background .3s, box-shadow .3s;
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
}

.video-thumb:hover .play-btn {
  transform: scale(1.18);
  background: var(--gold);
  color: #fff;
  box-shadow: 0 0 0 10px rgba(201, 168, 76, .18);
}

.play-btn svg {
  display: block;
}

.video-name {
  color: #fff;
  font-family: var(--font-display);
  font-size: .88rem;
  font-style: italic;
  text-align: center;
  padding: 0 .75rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
}

/* ── Video poster fills the card ── */
.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .6s ease, filter .4s ease;
  filter: brightness(.65);
}

.video-thumb {
  cursor: pointer;
}

.video-thumb:hover .video-poster {
  transform: scale(1.07);
  filter: brightness(.4);
}

/* ══════════════════════════════════════════════════════════════════
   VIDEO GALLERY — Instagram "More Videos" redirect card
══════════════════════════════════════════════════════════════════ */
.video-thumb--more {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 220px;
}

/* Animated gradient background */
.vmore-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0533 0%, #3d1a6e 40%, #6b2fa0 70%, #c9a84c 100%);
  background-size: 300% 300%;
  animation: vmoreBgShift 6s ease infinite;
  z-index: 0;
}

@keyframes vmoreBgShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Pulsing decorative rings */
.vmore-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.vmore-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  animation: vmorePulse 3s ease-out infinite;
}

.vmore-ring--1 {
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.vmore-ring--2 {
  width: 160px;
  height: 160px;
  animation-delay: .6s;
}

.vmore-ring--3 {
  width: 230px;
  height: 230px;
  animation-delay: 1.2s;
}

@keyframes vmorePulse {
  0% {
    opacity: .7;
    transform: scale(.85);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* Instagram icon */
.vmore-insta-icon {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: .5rem;
  transition: transform .3s ease;
}

.video-thumb--more:hover .vmore-insta-icon {
  transform: scale(1.15);
}

/* Text block */
.vmore-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  padding: 1.2rem 1rem 1.4rem;
  background: linear-gradient(to top, rgba(10, 4, 20, .85) 0%, transparent 100%);
  text-align: center;
}

.vmore-label {
  font-family: var(--font-display);
  font-size: .95rem;
  font-style: italic;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .03em;
  line-height: 1.3;
}

/* CTA styled as a real button */
.vmore-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem 1.1rem;
  border: 1.5px solid rgba(201, 168, 76, 0.8);
  border-radius: 30px;
  background: rgba(201, 168, 76, 0.12);
  color: #c9a84c;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.video-thumb--more:hover .vmore-btn {
  background: rgba(201, 168, 76, 0.9);
  color: #1a0533;
  border-color: #c9a84c;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════════
   VIDEO FILMSTRIP — slow horizontal marquee band
   Classes used by home.php: .video-filmstrip-wrap, .video-filmstrip,
   .vfilm-item, .vfilm-overlay, .vfilm-play, .vfilm-name,
   .vfilm-insta-link
══════════════════════════════════════════════════════════════════ */

/* Outer wrapper — clips overflow, adds top/bottom padding */
.video-filmstrip-wrap {
  overflow: hidden;
  padding: 0;
  width: 100%;
  position: relative;
  /* subtle side fade-out */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

/* The scrolling track — always wide enough so loop is seamless */
.video-filmstrip {
  display: flex;
  gap: 14px;
  width: max-content;
  /* grows to fit all items */
  animation: filmstripScroll 60s linear infinite;
  will-change: transform;
  cursor: grab;
}

.video-filmstrip:active {
  cursor: grabbing;
  animation-play-state: paused;
}

/* Pause on hover — gives a "look around" effect */
.video-filmstrip-wrap:hover .video-filmstrip {
  animation-play-state: paused;
}

@keyframes filmstripScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* 50% = first copy, loop back seamlessly */
}

/* Each filmstrip card */
.vfilm-item {
  position: relative;
  width: 240px;
  flex-shrink: 0;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease;
  cursor: pointer;
}

.vfilm-item:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
  z-index: 2;
}

/* Thumbnail image */
.vfilm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.22, 1, .36, 1), filter .5s ease;
  filter: brightness(.72);
}

.vfilm-item:hover img {
  transform: scale(1.06);
  filter: brightness(.5);
}

/* Dark gradient overlay — stronger at bottom */
.vfilm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .80) 0%,
      rgba(0, 0, 0, .15) 55%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding-bottom: 1.2rem;
  transition: background .4s ease;
}

/* Play button circle */
.vfilm-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 1.5px solid rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .3s, transform .35s cubic-bezier(.22, 1, .36, 1), border-color .3s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.vfilm-item:hover .vfilm-play {
  background: var(--gold, #c9a84c);
  border-color: var(--gold, #c9a84c);
  transform: scale(1.15);
}

/* Video title */
.vfilm-name {
  color: #fff;
  font-family: var(--font-display, Georgia, serif);
  font-size: .82rem;
  font-style: italic;
  text-align: center;
  padding: 0 .75rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .7);
  opacity: .9;
  line-height: 1.35;
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
}

/* "More on Instagram" text link below the filmstrip */
.vfilm-insta-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--text-light, #888);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  text-decoration: none;
  transition: color .3s ease;
}

.vfilm-insta-link:hover {
  color: var(--gold-dark, #a07828);
}

/* Responsive — narrower cards on small screens */
@media (max-width: 768px) {
  .vfilm-item {
    width: 160px;
  }

  .video-filmstrip {
    gap: 10px;
    animation-duration: 45s;
  }
}

@media (max-width: 480px) {
  .vfilm-item {
    width: 130px;
  }

  .video-filmstrip {
    animation-duration: 35s;
  }
}

/* ══════════════════════════════════════════════════════════════════
   VIDEO MODAL — Poster Blur Background
══════════════════════════════════════════════════════════════════ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  cursor: pointer;
}

/* Inner box — no fixed aspect ratio, adapts to video */
.video-modal-inner {
  position: relative;
  z-index: 1;
  width: min(92vw, 1000px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .8);
  transform: scale(.93) translateY(8px);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
  background: #0d0d0d;
}

.video-modal.open .video-modal-inner {
  transform: scale(1) translateY(0);
}

/* ── Thumbnail blurred as background ── */
.video-bg-blur {
  position: absolute;
  inset: -30px;
  /* extend beyond edges so blur doesn't show white */
  background-size: cover;
  background-position: center center;
  filter: blur(36px) brightness(.45) saturate(1.4);
  pointer-events: none;
  z-index: 0;
}

/* Radial vignette over blurred image */
.video-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, .1) 0%,
      rgba(0, 0, 0, .6) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── Top bar with title + close ── */
.video-modal-bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px 11px 20px;
  background: rgba(0, 0, 0, .38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.video-modal-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .9rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  margin-right: 12px;
}

.video-modal-close {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: rgba(255, 255, 255, .7);
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
  flex-shrink: 0;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  transform: rotate(90deg);
}

/* ── Main video — sized by JS to match exact video ratio ── */
.video-modal-player {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  background: #000;
  outline: none;
  flex-shrink: 0;
}

/* Alias for better compatibility */
.video-modal.show {
  opacity: 1;
  pointer-events: all;
}

/* ══════════════════════════════════════════════════════════════════
   BOOKING HOME — split: poză stânga, formular dreapta (dark bg)
══════════════════════════════════════════════════════════════════ */
.section-booking-home {
  padding: 0;
  overflow: hidden;
}

.booking-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.booking-home-img {
  position: relative;
  overflow: hidden;
}

.booking-home-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.7);
}

.booking-home-form {
  background: #1A1614;
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-home-form h2 {
  margin-bottom: 2rem;
  font-style: italic;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

/* Service tabs */
.service-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 3px;
  overflow: hidden;
}

.tab-btn {
  flex: 1;
  padding: 10px 0;
  background: transparent;
  color: rgba(255, 255, 255, .5);
  border: none;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  transition: all .3s ease;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* Form in dark */
.booking-home-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.booking-home-form .form-group {
  margin-bottom: 12px;
}

.booking-home-form .form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  font-size: .88rem;
  border-radius: 2px;
  transition: border-color .3s;
}

.booking-home-form .form-control::placeholder {
  color: rgba(255, 255, 255, .35);
}

.booking-home-form .form-control:focus {
  outline: none;
  border-color: var(--gold);
}

.booking-home-form textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.booking-home-form .btn-hero {
  width: 100%;
  justify-content: center;
  margin-top: .5rem;
  padding: 15px;
  font-size: .82rem;
}

.booking-contact-info {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.bci-item {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

/* ══════════════════════════════════════════════════════════════════
   INSTAGRAM GRID HOME — 6 poze
══════════════════════════════════════════════════════════════════ */
.section-instagram-home {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.section-instagram-home .section-eyebrow {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

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

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.insta-item:hover img {
  transform: scale(1.08);
  filter: brightness(.7);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
  padding: 12px;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-heart {
  font-size: 1.6rem;
  line-height: 1;
}

.insta-caption {
  font-size: .72rem;
  line-height: 1.4;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, .92);
}

/* Badge pentru VIDEO / CAROUSEL (colț dreapta sus) */
.insta-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: .65rem;
  padding: 2px 5px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 2;
}

/* Staggered reveal delay via CSS var --i */
.insta-item {
  transition-delay: calc(var(--i, 0) * 0.05s);
}

.insta-heading {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-style: italic;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE pentru noile secțiuni
══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-home-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-home-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-home-img {
    aspect-ratio: 3/4;
    max-height: none;
    max-width: 80%;
    margin: 0 auto;
  }

  .portfolio-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .booking-home-inner {
    grid-template-columns: 1fr;
  }

  .booking-home-img {
    display: none;
  }
}

@media (max-width: 600px) {
  .portfolio-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }



  .slider-prev,
  .slider-next {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .booking-home-form {
    padding: 32px 20px;
  }

  .booking-home-form .form-row-2 {
    grid-template-columns: 1fr;
  }

  .section-header-inline {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ══════════════════════════════════════════════════════════════════
   SLIDE CONTENT FIX — text centrat, nu iese din ecran
══════════════════════════════════════════════════════════════════ */
.slide-content {
  position: absolute !important;
  bottom: 15% !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  width: 100% !important;
  text-align: center;
  color: #fff;
  padding: 0 clamp(20px, 6vw, 120px);
  box-sizing: border-box;
}

.slide-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 4.2rem) !important;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* Slide counter  01 / 05 */
.slide-counter {
  display: none;
}

.slide-counter-current {
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 700;
}

.slide-counter-sep {
  opacity: .4;
}

.slide-counter-total {
  opacity: .6;
}

/* ══════════════════════════════════════════════════════════════════
   ARTISTS MARQUEE
══════════════════════════════════════════════════════════════════ */
.section-artists {
  background: var(--cream);
  padding: clamp(18px, 3vw, 36px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.artists-marquee-wrap {
  overflow: hidden;
  width: 100%;
}

.artists-marquee {
  display: flex;
  gap: 0;
  width: max-content;
  /* Direcție opusă față de video filmstrip: scrollează stânga→dreapta */
  animation: marquee-scroll-reverse var(--marquee-duration, 40s) linear infinite;
  will-change: transform;
}

.artists-marquee-wrap:hover .artists-marquee {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 12px 28px;
  border-right: 1px solid var(--border);
  white-space: normal;
  flex-shrink: 0;
  width: 220px;
  /* uniform width — consistent on all screens */
}

.artist-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  /* ensures image stays in circle */
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2px;
}

.artist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.artist-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.artist-info strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}

.artist-info span {
  font-size: .78rem;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}


/* ══════════════════════════════════════════════════════════════════
   PORTFOLIO FILTERS
══════════════════════════════════════════════════════════════════ */
.portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.pf-btn {
  padding: 8px 0;
  margin: 0 16px;
  border: none;
  background: transparent;
  color: var(--text-mid);
  font-size: .85rem;
  font-family: var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.pf-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: right;
}

.pf-btn:hover {
  color: var(--text);
}

.pf-btn.active {
  color: var(--text);
}

.pf-btn.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

#portfolio-masonry .pm-item {
  transition: opacity .3s ease, transform .3s ease;
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════════════ */
.about-page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--text-light);
}

.about-breadcrumb a {
  color: var(--text-mid);
  text-decoration: none;
}

.about-breadcrumb a:hover {
  color: var(--gold);
}

.about-booking-cta {
  float: right;
  margin-top: -24px;
  padding: 10px 26px;
  background: var(--text);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-decoration: none;
  transition: background .3s;
}

.about-booking-cta:hover {
  background: var(--gold);
}

/* Bio split */
.about-bio-section {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.about-bio-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.about-bio-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-bio-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: .4rem;
}

.about-role-title {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.about-bio-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .about-bio-inner {
    grid-template-columns: 1fr;
  }

  .about-booking-cta {
    float: none;
    display: block;
    margin: 8px 0 0;
    text-align: center;
  }
}

/* Services marquee */
.about-services-marquee-section {
  background: var(--cream);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.services-marquee-wrap {
  overflow: hidden;
  width: 100%;
}

.services-marquee {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}

.service-marquee-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 36px;
  border-right: 1px solid var(--border);
  min-width: 240px;
  flex-shrink: 0;
}

.service-icon {
  font-size: 1.8rem;
}

.service-marquee-card strong {
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.service-marquee-card p {
  font-size: .75rem;
  color: var(--text-light);
  max-width: 220px;
  line-height: 1.5;
  margin: 0;
}

/* Portfolio date on overlay */
.pm-date {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-light);
  margin-bottom: 4px;
}

/* Blog section on About */
.about-blog-section {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.about-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-lg);
}

@media (max-width: 900px) {
  .about-blog-grid {
    grid-template-columns: 1fr;
  }
}

.about-blog-card {
  background: var(--white);
  padding: 24px;
  border: 1px solid var(--border);
}

.about-blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.about-blog-date {
  font-size: .72rem;
  color: var(--text-light);
}

.about-blog-cat {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--gold);
  color: #fff;
  padding: 2px 8px;
  border-radius: 2px;
}

.about-blog-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.about-blog-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.about-blog-card h3 a:hover {
  color: var(--gold);
}

.about-blog-card p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* instagram grid 5-col on about */
.about-page-instagram .instagram-grid {
  grid-template-columns: repeat(5, 1fr);
}

/* ══════════════════════════════════════════════════════════════════
   PROJECTS PAGE
══════════════════════════════════════════════════════════════════ */
.projects-page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 6vw, 80px);
}

.projects-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin: 1rem 0 .5rem;
}

.projects-page-hero p {
  color: var(--text-mid);
  font-size: .95rem;
}

.projects-page-hero .about-breadcrumb {
  color: var(--text-light);
}

.projects-page-hero .about-breadcrumb a {
  color: var(--text-mid);
}

.projects-categories {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.projects-cat-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.proj-cat-tab {
  padding: 16px 28px;
  border: none;
  background: transparent;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  color: var(--text-mid);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all .25s;
  font-family: var(--font-body);
}

.proj-cat-tab:hover {
  color: var(--text);
}

.proj-cat-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.projects-intro {
  background: var(--white);
  padding: var(--space-lg) 0;
}

.projects-intro-grid {
  display: flex;
  gap: 32px;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.projects-intro-card h3 {
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.projects-description p {
  line-height: 2;
  color: var(--text);
  margin-bottom: 1.5rem;
  max-width: 860px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.projects-description p:first-child {
  font-size: 1.35rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.projects-grid-section {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.pm-location {
  display: block;
  font-size: .7rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 4px;
}

.projects-contact-strip {
  background: var(--text);
  color: #fff;
  padding: var(--space-md) 0;
}

.pcs-info {
  display: flex;
  gap: 32px;
  color: rgba(255, 255, 255, .7);
  font-size: .88rem;
  margin-bottom: .5rem;
}

.pcs-locations {
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, .4);
  font-size: .8rem;
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT — MY STORY SECTION
══════════════════════════════════════════════════════════════════ */
.about-story-section {
  background: var(--white);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
}

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

.about-story-header h2 {
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.about-story-lead {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: .6rem;
}

/* Premium Bento Grid for Story */
.about-story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: var(--space-xl);
}

@media (max-width: 900px) {
  .about-story-grid {
    display: flex;
    flex-direction: column;
  }
}

.story-card {
  background: transparent;
  padding: clamp(32px, 4vw, 56px) 0;
  position: relative;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
}

/* Elegant empty icons for minimalism */
.story-card-icon {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  display: block;
  color: var(--gold);
}

.story-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

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

/* Grid Spans - Minimalist Light Editorial Theme */
.sc-dark {
  grid-column: span 12;
  background: transparent;
  /* Changed from dark strictly to light */
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 40px;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: clamp(40px, 6vw, 80px) 0;
  box-shadow: none;
}

.sc-dark:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  .sc-dark {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 0;
  }
}

.sc-dark h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--text);
  font-style: italic;
}

.sc-dark p {
  color: var(--text-mid);
  font-size: 1.1rem;
}

.sc-dark .story-stats {
  padding-top: 0;
  gap: 3rem;
  margin-top: 0;
  flex: 1;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .sc-dark .story-stats {
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

.sc-dark .story-stat {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.sc-dark .story-stat span {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}


.sc-half-1 {
  grid-column: span 7;
}

.sc-half-2 {
  grid-column: span 5;
}

.sc-full {
  grid-column: span 12;
  background: transparent;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) 20px;
  border: none;
  box-shadow: none;
}

.sc-full:hover {
  transform: none;
  box-shadow: none;
}

.sc-full .story-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text);
  border: none;
  padding: 0;
  font-style: italic;
  margin: 0;
  line-height: 1.2;
}

.sc-full p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-mid);
}

/* Stats strip inside card */
.story-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.story-stat {
  font-size: .8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Countries grid */
.story-countries {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.story-countries span {
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: .85rem;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-mid);
}


/* List inside card */
.story-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.story-list li {
  padding: 7px 0 7px 18px;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
  border-bottom: 1px dashed var(--border);
  position: relative;
}

.story-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .8rem;
}

.story-list li:last-child {
  border-bottom: none;
}

/* Quote inside card */
.story-quote {
  margin: 1.2rem 0 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* CTA buttons row */
.about-story-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════════════════
   SERVICES PAGE — Hero + Nav + Cards
══════════════════════════════════════════════════════════════════ */
.services-page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 6vw, 80px);
}

.services-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin: 1rem 0 .5rem;
}

.services-hero-sub {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-dark);
  margin-top: .5rem;
}

/* Category jump nav */
.services-cat-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 80;
}

.services-cat-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.svc-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all .25s;
  font-family: var(--font-body);
  white-space: nowrap;
  position: relative;
}

.svc-nav-link:hover {
  border-bottom-color: var(--gold);
}

/* Number — always visible */
.svc-nav-num {
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: .05em;
  color: var(--text-mid);
  transition: color .25s;
}

.svc-nav-link:hover .svc-nav-num {
  color: var(--gold);
}

/* Label — hidden by default, shown on hover */
.svc-nav-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width .35s ease, opacity .25s ease, color .25s;
  white-space: nowrap;
}

.svc-nav-link:hover .svc-nav-label {
  max-width: 220px;
  opacity: 1;
  color: var(--gold);
}

/* Main section */
.services-main-section {
  background: var(--white);
  padding: var(--space-xl) 0;
}

/* Service card — alternating layout */
.svc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding: var(--space-xl) 0;
}

.svc-card:nth-child(even) .svc-card-text {
  order: 2;
}

.svc-card:nth-child(even) .svc-card-img {
  order: 1;
}

@media (max-width: 900px) {
  .svc-card {
    grid-template-columns: 1fr;
  }

  .svc-card:nth-child(even) .svc-card-text {
    order: 1;
  }

  .svc-card:nth-child(even) .svc-card-img {
    order: 2;
  }
}

/* Card text side */
.svc-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.svc-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.svc-badge {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 2px;
}

.svc-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  margin-bottom: .3rem;
}

.svc-tagline {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.svc-desc {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 1.8rem;
}

/* Includes block */
.svc-includes-block {
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.svc-includes-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-light);
  margin-bottom: 12px;
}

.svc-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

@media (max-width: 600px) {
  .svc-includes-list {
    grid-template-columns: 1fr;
  }
}

.svc-includes-list li {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.svc-includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Price & CTA row */
.svc-price-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.svc-price-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.svc-price-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-light);
}

.svc-price-range {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.svc-price-note {
  font-size: .7rem;
  color: var(--text-light);
  max-width: 240px;
  line-height: 1.4;
}

.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--btn-accent, var(--gold));
  color: #fff;
  font-size: .77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-decoration: none;
  border: 2px solid var(--btn-accent, var(--gold));
  transition: all .3s ease;
  white-space: nowrap;
}

.svc-cta-btn:hover {
  background: transparent;
  color: var(--btn-accent, var(--gold));
}

/* Card image side */
.svc-card-img {
  position: relative;
}

.svc-card-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.svc-img-badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

/* Divider between cards */
.svc-divider {
  display: none;
}

/* ══════════════════════════════════════════════════════════════════
   COVERAGE / EUROPE MAP SECTION
══════════════════════════════════════════════════════════════════ */
.coverage-section {
  background: var(--cream);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
}

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

.coverage-header h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: .5rem;
}



.coverage-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

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

@media (max-width: 480px) {
  .coverage-cards-grid {
    grid-template-columns: 1fr;
  }
}

.coverage-header p {
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.coverage-body {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .coverage-body {
    grid-template-columns: 1fr;
  }
}

/* SVG map container */
.countries-grid {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 10px 20px;
}

.coverage-map {
  position: relative;
  background: transparent;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, .07);
}

.europe-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Highlighted country interaction */
.country-highlight {
  transition: opacity .35s ease, filter .35s ease;
  cursor: default;
}

.country-highlight:hover {
  filter: brightness(1.12) saturate(1.1);
}

/* Country cards sidebar */
.coverage-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 88px;
}

.cov-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: all .22s ease;
  border-radius: 3px;
}

.cov-card:hover,
.cov-card.active {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 2px 10px rgba(201, 168, 76, .12);
  transform: translateX(5px);
}

.cov-flag {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.cov-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cov-info strong {
  font-size: .86rem;
  letter-spacing: .01em;
}

.cov-info span {
  font-size: .7rem;
  color: var(--text-light);
}

.cov-check {
  color: var(--gold);
  font-weight: 700;
  font-size: .95rem;
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT PAGE — Hero + Ways + Form
══════════════════════════════════════════════════════════════════ */
.contact-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 6vw, 80px);
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin: 1rem 0 .5rem;
}

.contact-hero-sub {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-dark);
}

/* ── 4 Ways Section ── */
.contact-ways-section {
  background: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
}

.contact-ways-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.contact-ways-header h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--text-dark);
}

/* ── Row list — editorial, no cards ── */
.contact-ways-grid {
  max-width: 780px;
  margin: 0 auto var(--space-xl);
  border-top: 1px solid var(--border);
}

/* Each contact row */
.cway-card {
  display: grid;
  grid-template-columns: 140px 1fr auto auto;
  align-items: center;
  gap: 0 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-dark);
  transition: background .22s ease, padding-left .22s ease;
  position: relative;
  overflow: hidden;
}

/* Gold left-line reveal on hover */
.cway-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform .25s ease;
  transform-origin: bottom;
}

.cway-card:hover {
  background: rgba(201, 168, 76, .04);
  padding-left: 14px;
}

.cway-card:hover::before {
  transform: scaleY(1);
}

/* No colored borders needed — minimal */
.cway-whatsapp,
.cway-telegram,
.cway-email,
.cway-form,
.cway-instagram {
  border-left: none;
}

/* Icon — hidden in minimal mode, keep for accessibility */
.cway-icon {
  display: none;
}

/* Channel name — col 1 */
.cway-card strong {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-dark);
  white-space: nowrap;
}

/* Description — col 2  */
.cway-body {
  display: contents;
  /* children participate in grid directly */
}

.cway-body span {
  font-size: .88rem;
  color: var(--text-mid);
  font-style: italic;
  font-family: var(--font-display);
}

/* Contact detail — col 3 */
.cway-body em {
  font-style: normal;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: .03em;
  white-space: nowrap;
}

/* Arrow — col 4 */
.cway-arrow {
  font-size: .9rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity .2s, transform .25s;
  margin-right: 2px;
}

.cway-card:hover .cway-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.cway-form:hover .cway-arrow {
  transform: translateY(3px);
}

/* Mobile: 2-col (channel · detail) — hide description */
@media (max-width: 580px) {
  .cway-card {
    grid-template-columns: 120px 1fr auto;
  }

  .cway-body span {
    display: none;
  }
}

/* Big CTA */
.contact-big-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: var(--space-lg) 0;
}

.btn-write-now {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 2px;
  transition: all .3s;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .35);
}

.btn-write-now:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .4);
}

.cta-footnote {
  font-size: .78rem;
  color: var(--text-light);
}

/* ── Calc Form Section ── */
.calc-form-section {
  background: var(--white);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
}

.calc-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .calc-form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Left info */
.calc-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-style: italic;
  margin: .5rem 0 1rem;
}

.calc-info>p {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.8rem;
}

.calc-info-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}

.calc-perk {
  display: flex;
  align-items: center;
  gap: 14px;
}

.calc-perk>span {
  font-size: 1.4rem;
}

.calc-perk div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calc-perk strong {
  font-size: .85rem;
}

.calc-perk span {
  font-size: .75rem;
  color: var(--text-light);
}

.calc-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.ccm-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
}

.ccm-item:hover {
  color: var(--gold);
}

.ccm-item>span {
  font-size: 1rem;
}

/* Form box */
.calc-form-box {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 48px);
}

.calc-submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: var(--gold);
  color: #fff;
  border: none;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-sm);
}

.calc-submit-btn:hover:not(:disabled) {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.calc-submit-btn:disabled {
  opacity: .6;
  cursor: default;
}

.form-privacy-note {
  font-size: .72rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

/* Success message — redesigned */
#form-success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 8px;
}

#form-success-msg span {
  font-size: 2.5rem;
}

#form-success-msg strong {
  font-size: 1.3rem;
}

#form-success-msg p {
  font-size: .88rem;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════════════════════════
   BLOG LIST PAGE
══════════════════════════════════════════════════════════════════ */
.blog-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 6vw, 80px);
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin: .5rem 0 .75rem;
}

.blog-hero-sub {
  font-size: .82rem;
  color: var(--text-mid);
  max-width: 560px;
}

.blog-list-section {
  background: var(--white);
  padding: var(--space-xl) 0;
}

/* Featured post — big horizontal card */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  margin-bottom: var(--space-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

@media (max-width: 760px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }
}

.blog-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background: var(--cream);
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-featured:hover .blog-featured-img img {
  transform: scale(1.04);
}

.blog-featured-body {
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: var(--cream);
}

.blog-featured-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic;
  line-height: 1.25;
}

.blog-featured-body p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s, gap .2s;
  width: fit-content;
  margin-top: 8px;
}

.blog-read-btn:hover {
  color: var(--gold);
  gap: 14px;
}

.blog-read-btn svg {
  width: 14px;
  height: 14px;
}

/* Cat badge */
.blog-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(18, 18, 18, .82);
  color: #fff;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  z-index: 2;
}

/* Standard blog meta */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  color: var(--text-light);
}

.blog-read {
  color: var(--gold);
  font-weight: 600;
}

/* 3-col grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

@media (max-width: 560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}

.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.blog-card-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  height: 210px;
  background: var(--cream);
}

.blog-card-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.blog-card:hover .blog-card-img-link img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.3;
}

.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card-body h3 a:hover {
  color: var(--gold);
}

.blog-card-body p {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}

.blog-link {
  font-size: .75rem;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.blog-link:hover {
  letter-spacing: .12em;
}

/* Blog CTA strip */
.blog-cta-strip {
  background: var(--text);
  padding: var(--space-lg) 0;
  color: #fff;
}

.blog-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.blog-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 4px;
}

.blog-cta-inner p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}

.blog-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 14px 28px;
  text-decoration: none;
  transition: all .3s;
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════
   BLOG POST PAGE
══════════════════════════════════════════════════════════════════ */
.post-hero {
  background: var(--text);
  color: #fff;
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 6vw, 80px);
}

.post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  max-width: 800px;
  margin: .75rem 0 1rem;
  line-height: 1.2;
}

.blog-cat-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--text);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 4px 12px;
  font-weight: 700;
}

.post-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
}

.post-meta span:first-child {
  color: var(--gold-light);
  font-weight: 600;
}

.post-section {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  margin-bottom: var(--space-xl);
}

@media (max-width: 900px) {
  .post-layout {
    grid-template-columns: 1fr;
  }
}

/* Article */
.post-cover {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 4px;
}

.post-cover img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Post body typography */
.post-body {
  max-width: none;
}

.post-body .lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 2rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}

.post-body h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}

.post-body p {
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-mid);
}

.post-body ul,
.post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.post-body li {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: .4rem;
}

.post-body strong {
  color: var(--text);
}

.post-body blockquote {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
}

/* Tip grid inside post */
.blog-tip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 1.5rem 0;
}

@media (max-width: 560px) {
  .blog-tip-grid {
    grid-template-columns: 1fr;
  }
}

.blog-tip-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-tip-card>span {
  font-size: 1.6rem;
}

.blog-tip-card strong {
  font-size: .9rem;
}

.blog-tip-card p {
  font-size: .8rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}

/* Cost table */
.blog-cost-table {
  border: 1px solid var(--border);
  margin: 1.5rem 0;
  overflow: hidden;
}

.blog-cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.blog-cost-row:last-child {
  border-bottom: none;
}

.blog-cost-row span {
  color: var(--text-mid);
}

.blog-cost-row strong {
  color: var(--gold-dark);
  font-size: .9rem;
  white-space: nowrap;
}

.blog-cost-total {
  background: var(--cream);
  font-weight: 700;
}

.blog-cost-total span {
  color: var(--text);
  font-weight: 700;
}

.blog-cost-total strong {
  font-size: 1rem;
}

/* Sidebar */
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}

.sidebar-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-card>div:not(.author-avatar) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sidebar-card>div strong {
  font-size: .88rem;
}

.sidebar-card>div span {
  font-size: .74rem;
  color: var(--text-light);
}

.sidebar-cta {
  background: var(--text);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .75);
}

.sidebar-wa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 11px 18px;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: background .2s;
}

.sidebar-wa-btn:hover {
  background: #1da851;
}

.sidebar-quote-btn {
  display: block;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .85);
  padding: 10px;
  text-decoration: none;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: border-color .2s;
}

.sidebar-quote-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.sidebar-posts-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-posts-list li a {
  font-size: .8rem;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 1.4;
  transition: color .2s;
}

.sidebar-posts-list li a:hover {
  color: var(--gold);
}

.post-back {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE FIXES — ≤ 600px
══════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {

  /* ── Portfolio filter buttons: all 5 on one line ── */
  .portfolio-filters {
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .portfolio-filters::-webkit-scrollbar {
    display: none;
  }

  .pf-btn {
    font-size: .7rem;
    margin: 0 8px;
    padding: 8px 0;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ── Portfolio intro text — smaller on mobile ── */
  .projects-description p {
    font-size: .92rem;
    line-height: 1.6;
    text-align: left;
  }

  /* ── Portfolio masonry: 1 coloana pe mobil mic ── */
  .portfolio-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 10px;
  }

  /* ── Video filmstrip — carduri mai mici ── */
  .vfilm-item {
    width: 140px;
  }

  /* ── Section padding reduction ── */
  .section-video-home,
  .section-portfolio-home,
  .section-about-home {
    padding: 40px 0;
  }

  /* ── About home: stivuit vertical ── */
  .about-home-inner {
    flex-direction: column;
  }

  .about-home-img {
    max-height: 280px;
    overflow: hidden;
  }

  /* ── Hero h1 ── */
  .slide-content h1 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  /* ── Portfolio page hero ── */
  .projects-page-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  /* ── Artists marquee section ── */
  .section-artists {
    padding: 20px 0;
  }

  /* ── Artist card: mai compact pe mobil ── */
  .artist-card {
    width: 180px;
    padding: 10px 16px;
  }

  .artist-avatar {
    width: 80px;
    height: 80px;
  }

  .artist-info strong {
    font-size: .88rem;
    max-width: 140px;
  }

  .artist-info span {
    font-size: .72rem;
    max-width: 140px;
  }
}

/* ══════════════════════════════════════════════════════════════════
   COUNTRIES GRID — 6 tari cu steag
══════════════════════════════════════════════════════════════════ */
.countries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 32px;
  padding: 0 1rem;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.country-flag {
  font-size: 26px;
  line-height: 1;
}

.country-name {
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 500;
}

/* Mobile: 3 tari per rand → 2 randuri de 3 */
@media (max-width: 600px) {
  .countries-grid {
    gap: 14px 16px;
  }

  .country-item {
    flex: 0 0 calc(33.333% - 16px);
    justify-content: center;
  }

  .country-flag {
    font-size: 22px;
  }

  .country-name {
    font-size: .88rem;
  }
}

/* Anulare diamond bullet pentru countries-grid (coverage section) */
.countries-grid .country-item::before {
  content: none;
}