/* ============================
   VERUM COMMUNICATIONS – CSS
   ============================ */

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

:root {
  --taupe:      #C4B5A5;
  --taupe-dark: #A89888;
  --taupe-light:#D8CCBF;
  --taupe-bg:   #EDE4D8;
  --dark:       #3C3D39;
  --dark-mid:   #4a4b46;
  --gold-start: #b5a496;
  --gold-mid:   #ccbcaf;
  --gold-end:   #ddd0c5;
  --white:      #FFFFFF;
  --off-white:  #F7F2EB;
  --text-dark:  #2A2420;
  --text-mid:   #5C4E44;
  --gold-grad:  linear-gradient(90deg, #b5a496 0%, #ddd0c5 50%, #b5a496 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: 'Nunito', sans-serif; }

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 400; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  text-align: justify;
}

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

/* ---- LAYOUT ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-light  { background: var(--off-white); padding: 100px 0; }
.section-dark   { background: var(--dark); padding: 100px 0; }


.section-header { margin-bottom: 60px; }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-sub { color: rgba(255,255,255,0.65); }
.section-sub { font-size: 0.9rem; letter-spacing: 0.08em; color: var(--text-mid); margin-top: 8px; text-transform: uppercase; text-align: left; }

.gold-accent {
  width: 50px;
  height: 2px;
  background: var(--gold-grad);
  margin-bottom: 20px;
}

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold-grad);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
}

.btn-gold:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--gold-mid);
  color: var(--gold-mid);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

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

.full-width { width: 100%; text-align: center; }

/* ============================
   NAVBAR
   ============================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
  padding: 0;
  background: rgba(60, 61, 57, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

#navbar.scrolled {
  background: rgba(60, 61, 57, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  width: 100%;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 50px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--white);
  font-weight: 300;
}

.logo-verum {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
}

.logo-comm {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--white);
  text-transform: lowercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-grad);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold-end); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(60, 61, 57, 0.98);
  padding: 20px 2rem;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.mobile-menu.open { display: flex; }

/* ============================
   HERO
   ============================ */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(60,61,57,0.88) 0%, rgba(60,61,57,0.75) 50%, rgba(60,61,57,0.92) 100%),
    url('hero-bg.png') center center / cover no-repeat;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 1100px;
  width: 90%;
}

.gold-line {
  width: 120px;
  height: 1px;
  background: var(--gold-grad);
  margin: 24px auto;
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.65rem, 1.7vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0;
  text-align: center;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
}

.hero-title span {
  display: block;
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: 0.4em;
}

.hero-title em {
  display: block;
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-style: normal;
  letter-spacing: 0.6em;
  color: var(--taupe-light);
  font-weight: 300;
  margin-top: -0.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  line-height: 2;
  color: rgba(255,255,255,0.65);
  margin: 28px 0 36px;
  font-weight: 300;
  text-align: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-mid));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ============================
   PHILOSOPHY
   ============================ */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.philosophy-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.philosophy-text .lead {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 24px;
}

.philosophy-text p { margin-bottom: 16px; text-align: justify; }

.quote-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--taupe-dark);
  margin-top: 32px !important;
  padding-left: 20px;
  border-left: 2px solid var(--gold-mid);
}

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

.philosophy-photo {
  position: relative;
  padding: 20px 0 0 20px;
}

.philosophy-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold-mid);
  pointer-events: none;
  z-index: 0;
}

.philosophy-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}

.stat-card {
  padding: 28px 32px;
  background: var(--white);
  border-left: 3px solid transparent;
  border-image: var(--gold-grad) 1;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.stat-icon {
  display: block;
  font-size: 1.2rem;
  color: var(--gold-start);
  margin-bottom: 12px;
}

.stat-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.stat-card p {
  text-align: left;
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================
   PR vs MARKETING
   ============================ */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.vs-card {
  padding: 48px 40px;
  border: 1px solid rgba(212, 184, 150, 0.25);
  background: rgba(255,255,255,0.04);
}

.vs-card h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 16px;
}

.gold-divider {
  height: 1px;
  background: var(--gold-grad);
  margin-bottom: 20px;
}

.vs-card p { color: rgba(255,255,255,0.7); margin-bottom: 20px; }

.vs-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vs-card ul li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding-left: 16px;
  position: relative;
  letter-spacing: 0.05em;
}

.vs-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-mid);
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold-mid);
  border-radius: 50%;
  color: var(--gold-mid);
  font-size: 1.5rem;
  font-family: 'Nunito', sans-serif;
  flex-shrink: 0;
}

.vs-conclusion {
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================
   SERVICES
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--taupe-light);
}

.service-card {
  background: var(--off-white);
  padding: 48px 36px;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover { background: var(--white); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-family: 'Nunito', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p { font-size: 0.88rem; }

/* ============================
   ACCORDION CARDS
   ============================ */
.accordion {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--off-white);
}

.acc-item {
  background: var(--off-white);
  border: 1px solid var(--taupe);
  border-radius: 4px;
  transition: background 0.3s, border-color 0.3s;
}

.acc-item.open {
  background: var(--white);
}

.acc-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
}

.acc-header:hover .acc-title {
  color: var(--gold-start);
}

.acc-num {
  font-family: 'Nunito', sans-serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1;
}

.acc-icon {
  width: 22px;
  height: 22px;
  color: var(--taupe-dark);
  flex-shrink: 0;
  margin-right: 4px;
}

.acc-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  transition: color 0.3s;
}

.acc-arrow {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 1rem;
  color: var(--gold-start);
  transition: transform 0.35s ease;
}

.acc-item.open .acc-arrow {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.acc-item.open .acc-body {
  max-height: 400px;
}

.acc-body p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-mid);
  padding: 0 36px 36px;
  text-align: left;
}

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

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

/* ============================
   EVENT SECTION
   ============================ */
.section-event {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(rgba(60,61,57,0.88), rgba(60,61,57,0.92)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="%232A2420"/><rect x="0" y="0" width="1" height="60" fill="%23ffffff08"/><rect x="0" y="0" width="60" height="1" fill="%23ffffff08"/></svg>');
  background-color: var(--dark);
}

.event-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--gold-grad);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.event-card {
  border: 1px solid rgba(212, 184, 150, 0.25);
  background: rgba(255,255,255,0.03);
  padding: 60px;
}

.event-title-block {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 184, 150, 0.2);
}

.event-title-block h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}

.event-subtitle {
  font-size: 0.9rem;
  color: var(--gold-mid);
  letter-spacing: 0.05em;
  font-family: 'Montserrat', sans-serif;
}

.event-meta {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.meta-item { display: flex; flex-direction: column; gap: 6px; }

.meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  font-weight: 600;
}

.meta-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.event-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(212, 184, 150, 0.15);
}

.event-description p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.event-program h4,
.event-speakers h4 {
  color: var(--gold-mid);
  margin-bottom: 20px;
  font-size: 0.72rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}

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

.speaker {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
}

.speaker-name {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 400;
}

.speaker-role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.event-notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-notes span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  padding-left: 12px;
  position: relative;
}

.event-notes span::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  color: var(--gold-mid);
  top: 3px;
}

.event-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================
   WHY SECTION
   ============================ */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.why-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-text .why-bold {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 400;
  margin: 8px 0 0;
}

.why-text p { margin-bottom: 16px; }

.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--taupe-light);
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 24px;
  background: var(--off-white);
}

.why-photo {
  position: relative;
  padding: 20px 0 0 20px;
}

.why-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold-mid);
  pointer-events: none;
  z-index: 0;
}

.why-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.pillar-num {
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--taupe);
  flex-shrink: 0;
  width: 30px;
}

.pillar h4 { margin-bottom: 8px; color: var(--text-dark); }
.pillar p { font-size: 0.88rem; text-align: left; }

/* ============================
   CONTACT
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-lead {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: left;
}

.contact-links { display: flex; flex-direction: column; gap: 16px; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-mid);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.contact-link:hover { color: var(--gold-end); }

.contact-link-icon { font-size: 1.1rem; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 184, 150, 0.2);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-mid);
}

.form-success {
  display: none;
  text-align: center;
  color: var(--gold-mid);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: #ccbcaf;
  padding: 24px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.footer-logo .logo-verum { font-size: 1.8rem; }
.footer-logo .logo-comm { font-size: 0.8rem; letter-spacing: 0.18em; }

.footer-tagline {
  font-family: 'Nunito', sans-serif;
  font-style: normal !important;
  font-size: 1rem;
  color: var(--dark);
}

.footer-links { display: flex; gap: 32px; }

.footer-links a {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--text-mid); }

.footer-mail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--dark);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-mail:hover { color: var(--text-mid); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--dark);
  letter-spacing: 0.05em;
}

/* ============================
   ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-visual { grid-template-columns: repeat(3, 1fr); }
  .philosophy-photo { order: -1; }
  .philosophy-photo img { max-height: 400px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-photo { order: -1; }
  .why-pillars { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .vs-grid { grid-template-columns: 1fr; }
  .vs-divider { display: none; }

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

  .event-body { grid-template-columns: 1fr; gap: 40px; }
  .event-meta { gap: 30px; }
  .event-card { padding: 36px 24px; }
  .event-footer { flex-direction: column; align-items: flex-start; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

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

@media (max-width: 600px) {
  /* Layout */
  .services-grid { grid-template-columns: 1fr; }
  .accordion { grid-template-columns: 1fr; }
  .section-light, .section-dark, .section-event { padding: 60px 0; }
  .container { padding: 0 1.2rem; }

  /* Hero */
  .hero-content { padding: 1rem; width: 95%; }
  .hero-title span { font-size: clamp(2.4rem, 13vw, 3.5rem); letter-spacing: 0.1em; }
  .hero-title em { font-size: clamp(0.7rem, 3.5vw, 1rem); letter-spacing: 0.25em; }
  .hero-tagline { font-size: 0.6rem; letter-spacing: 0.1em; }
  .hero-sub { font-size: 0.95rem; line-height: 1.8; }
  .gold-line { width: 60px; margin: 12px auto; }

  /* Nav */
  .nav-inner { padding: 0 1.2rem; }
  .nav-logo-text { font-size: 1.1rem; }

  /* Sekcije */
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-header { margin-bottom: 32px; }

  /* O nama */
  .philosophy-text .lead { font-size: 1.15rem; }
  .quote-text { font-size: 1.05rem; }
  .philosophy-visual { grid-template-columns: 1fr; }
  .stat-card { padding: 20px 22px; }

  /* PR vs Marketing */
  .vs-card { padding: 28px 20px; }
  .vs-card h3 { font-size: 1.5rem; }
  .vs-conclusion { font-size: 0.95rem; }

  /* Accordion */
  .acc-header { padding: 18px 16px; gap: 10px; }
  .acc-num { font-size: 1.8rem; }
  .acc-title { font-size: 1rem; }
  .acc-body p { padding: 0 16px 20px; font-size: 0.85rem; }

  /* Zašto */
  .why-text .why-bold { font-size: 1.15rem; }
  .why-pillars { grid-template-columns: 1fr; }
  .pillar { gap: 16px; padding: 24px 20px; }
  .pillar-num { font-size: 1.3rem; width: 24px; }

  /* Kontakt */
  .contact-lead { font-size: 1.05rem; margin-bottom: 28px; }
  .contact-grid { gap: 32px; }

  /* Footer */
  .footer-links { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .footer-copy { font-size: 0.72rem; }

  /* Events */
  .event-card { padding: 28px 16px; }
  .event-title-block h3 { font-size: 1.5rem; }
  .event-meta { gap: 20px; }
  .event-cta { flex-direction: column; }
  .event-cta .btn-gold,
  .event-cta .btn-outline { text-align: center; width: 100%; }

  /* Buttons */
  .btn-gold, .btn-outline { padding: 13px 28px; font-size: 0.75rem; }
}

@media (max-width: 380px) {
  .hero-title span { font-size: clamp(2rem, 12vw, 3rem); letter-spacing: 0.08em; }
  .hero-title em { letter-spacing: 0.18em; }
  .hero-tagline { letter-spacing: 0.08em; }
  .container { padding: 0 1rem; }
}
