/*
Theme Name: GitaZen
Theme URI: https://gitazen.hr
Author: Sandra Begović
Author URI: https://gitazen.hr
Description: GitaZen by Sandra Begović — holistički centar. One-page tema za terapijsku yogu, ayurvedu i osobnu podršku.
Version: 1.0
License: Private
Text Domain: gitazen
*/

/* =============================================
   BRAND TOKENS — iz Brand Booka 2026
   ============================================= */
:root {
  --sage:        #A8B8A3;
  --sage-dark:   #7A9470;
  --sage-light:  #E4EDE2;
  --beige:       #E8DDD0;
  --beige-dark:  #D4C4B0;
  --cream:       #F8F5F1;
  --gold:        #B5A481;
  --gold-light:  #D4C49A;
  --dark:        #4A4A4A;
  --mid:         #6B6B6B;
  --light:       #CFC8C0;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', Arial, sans-serif;
  --font-accent:  'Gidole', 'Montserrat', sans-serif;

  --radius: 4px;
  --max-width: 1100px;
  --section-pad: 100px 24px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; }

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mid);
  max-width: 640px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 560px;
  margin-bottom: 48px;
}

/* =============================================
   BUTTONS / CTA
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,184,163,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #9d8e6e;
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   NAVIGATION
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(248,245,241,0.97);
  box-shadow: 0 1px 20px rgba(74,74,74,0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#site-header.scrolled {
  background: rgba(248,245,241,0.99);
  box-shadow: 0 2px 24px rgba(74,74,74,0.12);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.nav-icon {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(168,184,163,0.12) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(181,164,129,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { }

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 8px;
}

.hero-title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 32px;
  font-style: italic;
}

.hero-desc {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 480px;
}

.hero-note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 40px;
  max-width: 420px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--light);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-wrap {
  position: relative;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(168,184,163,0.15) 0%, transparent 70%);
}

.hero-logo-wrap img {
  width: 340px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-ornament {
  position: absolute;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.hero-ornament.top-right {
  top: 20px; right: 0;
  writing-mode: vertical-rl;
}

/* =============================================
   DIVIDER / ORNAMENT
   ============================================= */
.section-divider {
  text-align: center;
  padding: 16px 0;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  opacity: 0.6;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
  opacity: 0.5;
}

/* =============================================
   O SANDRI
   ============================================= */
#o-sandri {
  padding: var(--section-pad);
  background: var(--white);
}

.sandra-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.sandra-photo-wrap {
  position: relative;
}

.sandra-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--beige);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sandra-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--light);
  font-size: 0.8rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 40px;
}

.sandra-photo-placeholder svg {
  opacity: 0.3;
}

.sandra-frame {
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--beige-dark);
  z-index: -1;
}

.sandra-text { }

.sandra-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--sage-dark);
  line-height: 1.5;
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.sandra-bio p {
  margin-bottom: 16px;
  max-width: none;
}

.sandra-certs {
  margin-top: 32px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
}

.sandra-certs h4 {
  margin-bottom: 12px;
  color: var(--gold);
}

.cert-placeholder {
  font-size: 0.85rem;
  color: var(--light);
  font-style: italic;
}

/* =============================================
   USLUGE (WEB SHOP)
   ============================================= */
#usluge {
  padding: var(--section-pad);
  background: var(--cream);
}

.usluge-header {
  max-width: var(--max-width);
  margin: 0 auto 64px;
  text-align: center;
}

.usluge-header p {
  margin: 0 auto;
  text-align: center;
}

.usluge-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.usluga-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid transparent;
}

.usluga-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(74,74,74,0.1);
  border-color: var(--sage-light);
}

.card-top {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--cream);
}

.card-icon {
  margin-bottom: 16px;
  display: block;
}

.card-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.85;
}

.card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: none;
}

.card-prices {
  padding: 20px 28px;
  flex: 1;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream);
  font-size: 0.88rem;
  color: var(--mid);
}

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

.price-item .price-label { flex: 1; }

.price-item .price-val {
  font-weight: 600;
  color: var(--sage-dark);
  white-space: nowrap;
  margin-left: 16px;
}

.card-bottom {
  padding: 20px 28px 28px;
}

.card-bottom .btn {
  width: 100%;
  text-align: center;
}

/* Featured card */
.usluga-card.featured {
  border: 2px solid var(--sage);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -1px; left: 28px;
  background: var(--sage);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
}

/* Row 2 — wider cards */
.usluge-grid-row2 {
  max-width: var(--max-width);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--sage);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin: 0 auto 32px;
  font-size: 1.05rem;
  max-width: 480px;
  text-align: center;
}

.cta-banner .btn-gold {
  font-size: 0.9rem;
}

/* =============================================
   ISKUSTVA / TESTIMONIJALI
   ============================================= */
#iskustva {
  padding: var(--section-pad);
  background: var(--beige);
}

.iskustva-header {
  max-width: var(--max-width);
  margin: 0 auto 56px;
}

.testimonials-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; left: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--sage-light);
  pointer-events: none;
}

.testimonial-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 24px;
  max-width: none;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-dark);
  letter-spacing: 0.05em;
}

/* =============================================
   ZA KOGA
   ============================================= */
#za-koga {
  padding: var(--section-pad);
  background: var(--white);
}

.za-koga-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.za-koga-list { }

.za-koga-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream);
  align-items: flex-start;
}

.za-koga-item:last-child { border-bottom: none; }

.za-koga-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.za-koga-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.za-koga-content p {
  font-size: 0.88rem;
  color: var(--mid);
  max-width: none;
}

.kako-poceti {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
}

.kako-poceti h3 {
  margin-bottom: 24px;
}

.steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.step-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 2px;
}

.step-text p {
  font-size: 0.85rem;
  color: var(--mid);
  max-width: none;
}

/* =============================================
   KONTAKT
   ============================================= */
#kontakt {
  padding: var(--section-pad);
  background: var(--cream);
}

.kontakt-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.kontakt-info h2 {
  margin-bottom: 16px;
}

.kontakt-info > p {
  margin-bottom: 40px;
  max-width: none;
}

.kontakt-details { display: flex; flex-direction: column; gap: 20px; }

.kontakt-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.kontakt-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.kontakt-detail-text label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.kontakt-detail-text span {
  font-size: 0.95rem;
  color: var(--dark);
}

/* Contact Form */
.kontakt-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius);
}

.kontakt-form h3 {
  margin-bottom: 8px;
}

.form-intro {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 32px;
  max-width: none;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(168,184,163,0.15);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8B8A3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; text-align: center; padding: 16px; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--dark);
  padding: 64px 24px 32px;
}

.footer-legal {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 16px;
}

.footer-legal p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  max-width: none;
  line-height: 1.6;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand { }

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-col h4 {
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  max-width: none;
}

/* =============================================
   MOBILE NAV OVERLAY
   ============================================= */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

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

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--dark);
  transition: color 0.2s;
}

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

.mobile-nav-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--mid);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-logo-wrap img { width: 260px; }
  .sandra-inner { grid-template-columns: 1fr; }
  .sandra-photo { aspect-ratio: 4/3; max-height: 360px; }
  .usluge-grid { grid-template-columns: repeat(2, 1fr); }
  .usluge-grid-row2 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .za-koga-inner { grid-template-columns: 1fr; }
  .kontakt-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .usluge-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-form { padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
