/* Frizerski Kutak — glavna stilska datoteka */

:root {
  --bg: #F7F1E7;
  --card: #FFFCF7;
  --card-alt: #EEE3D3;
  --accent: #B08968;
  --accent-dark: #8A6647;
  --accent-light: #CBA876;
  --dark: #2B2420;
  --text: #5C5147;
  --text-muted: #8C7F6F;
  --border: #E2D5C1;
  --border-dark: #D8C7AC;
  --footer-bg: #2B2420;
  --footer-text: #C9BBA8;
  --footer-text-muted: #8C7F6F;
  --footer-border: #43392F;
  --font-serif: Georgia, 'Times New Roman', Times, serif;
  --font-sans: 'Segoe UI', 'Century Gothic', Futura, Verdana, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-sans);
  color: var(--text);
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--card-alt); }
.section-dark { background: var(--dark); }

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--dark);
  margin: 0;
}

.h1 { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.18; margin-bottom: 20px; }
.h2 { font-size: 32px; margin-bottom: 22px; }
.h3 { font-size: 19px; margin-bottom: 10px; }

.lead {
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 28px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.4px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.btn-primary { background: var(--accent); color: #FFFCF7; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--dark); border: 1px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--bg); }
.btn-on-dark { background: var(--accent); color: #FFFCF7; }
.btn-on-dark:hover { background: var(--accent-light); }
.btn-sm { padding: 11px 22px; font-size: 13px; }

/* ---------- Header ---------- */
.site-header {
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 50;
}
.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav__link {
  padding: 10px 14px;
  text-decoration: none;
  font-size: 14px;
  color: var(--dark);
}
.nav__link:hover, .nav__link.is-active { color: var(--accent); }
.nav__dropdown { position: relative; }
.nav__dropdown-label {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--dark);
  cursor: default;
  display: inline-block;
}
.nav__dropdown.is-active > .nav__dropdown-label { color: var(--accent); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  background: var(--card);
  border: 1px solid var(--border);
  min-width: 230px;
  box-shadow: 0 14px 30px rgba(43, 36, 32, 0.14);
  padding: 8px 0;
  display: none;
  flex-direction: column;
  z-index: 60;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu { display: flex; }
.nav__dropdown-link {
  padding: 10px 18px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
}
.nav__dropdown-link:hover { background: var(--bg); color: var(--dark); }
.header__actions { display: flex; align-items: center; gap: 16px; }
.header__shop-link { text-decoration: none; font-size: 14px; color: var(--dark); }
.header__shop-link:hover { color: var(--accent); }
.header__cta {
  background: var(--accent);
  color: #FFFCF7;
  padding: 11px 24px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.header__cta:hover { background: var(--accent-dark); }
.nav-toggle { display: none; }

/* ---------- Hero (photo grid) ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 72px 0 88px;
}
.hero-photo {
  border: 1px solid var(--border);
  border-radius: 4px;
  min-height: 420px;
  overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 64px 0 80px;
}
.page-hero-photo {
  border: 1px solid var(--border);
  border-radius: 4px;
  min-height: 380px;
  overflow: hidden;
}
.page-hero-photo img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }

.page-hero-center { padding: 64px 0 48px; text-align: center; }
.page-hero-center .lead { max-width: 600px; margin: 0 auto; }

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid {
  padding: 48px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
}
.stat-num { font-family: var(--font-serif); font-size: 30px; color: var(--accent); }
.stat-label { color: var(--text); font-size: 13.5px; margin-top: 6px; }

/* ---------- Card grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }

.service-card {
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  display: block;
}
.service-card:hover { border-color: var(--accent); }
.service-card__icon { width: 44px; height: 44px; border-radius: 50%; background: #F0E5D5; margin-bottom: 18px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--text); font-size: 14px; line-height: 1.65; margin: 0; }
.service-card--dark { background: var(--dark); border-color: var(--dark); }
.service-card--dark:hover { opacity: 0.92; border-color: var(--dark); }
.service-card--dark h3 { color: var(--bg); }
.service-card--dark p { color: var(--footer-text); }
.service-card--dark .service-card__icon { background: var(--accent); }

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}
.info-card h3 { font-size: 18px; margin-bottom: 10px; }
.info-card p { color: var(--text); font-size: 14px; line-height: 1.65; margin: 0; }

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px;
}
.testimonial-card p { color: var(--text); font-size: 14.5px; line-height: 1.75; margin: 0 0 18px; }
.testimonial-card .author { margin: 0; color: var(--dark); font-size: 14px; font-weight: 600; }

/* ---------- Split with bullets ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}
.split-photo { border: 1px solid var(--border-dark); border-radius: 4px; min-height: 360px; overflow: hidden; }
.split-photo img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.bullets { display: flex; flex-direction: column; gap: 18px; }
.bullet { display: flex; gap: 14px; }
.bullet-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 8px; flex-shrink: 0; }
.bullet p { margin: 0; color: var(--text); font-size: 15px; line-height: 1.7; }
.bullet strong { color: var(--dark); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--dark); padding: 72px 0; text-align: center; }
.cta-band h2 { color: var(--bg); margin-bottom: 18px; }
.cta-band p { color: var(--footer-text); font-size: 15px; margin: 0 0 30px; }
.cta-band-sm { background: var(--dark); padding: 64px 0; text-align: center; }
.cta-band-sm h2 { color: var(--bg); font-size: 28px; margin-bottom: 16px; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.step-num { font-family: var(--font-serif); font-size: 28px; color: var(--accent); margin-bottom: 8px; }
.step-text { color: var(--text); font-size: 14px; line-height: 1.6; margin: 0; }

/* ---------- FAQ + price panel ---------- */
.faq-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 22px; }
.faq-item h3 { font-family: var(--font-sans); font-size: 15px; color: var(--dark); margin: 0 0 8px; }
.faq-item p { color: var(--text); font-size: 14px; line-height: 1.65; margin: 0; }

.price-panel { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 32px; }
.price-panel h3 { font-size: 20px; margin-bottom: 14px; }
.price-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.price-row:last-of-type { border-bottom: none; }
.price-row span:first-child { color: var(--text); font-size: 14px; }
.price-row span:last-child { color: var(--dark); font-size: 14px; }
.price-panel-link { display: block; text-align: center; margin-top: 20px; color: var(--accent); text-decoration: none; font-size: 13.5px; }

/* ---------- Note band ---------- */
.note-band { background: var(--card-alt); padding: 72px 0; }
.note-band-inner {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.note-band p { color: var(--dark); font-size: 15px; max-width: 600px; margin: 0; line-height: 1.7; }
.note-band a { color: var(--accent); text-decoration: none; font-size: 14px; white-space: nowrap; }
.note-band-center { text-align: center; }
.note-band-center p { max-width: 640px; margin: 0 auto; color: var(--text); font-size: 15px; line-height: 1.75; }
.note-band-center h2 { font-size: 26px; margin-bottom: 14px; }

/* ---------- Pricing page ---------- */
.price-groups { display: flex; flex-direction: column; gap: 44px; }
.price-group h2 {
  font-size: 22px; border-bottom: 2px solid var(--accent); padding-bottom: 12px; margin-bottom: 6px;
}
.price-group .price-row span:first-child { font-size: 14.5px; }
.price-group .price-row span:last-child { font-size: 14.5px; }
.price-disclaimer { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 26px; text-align: center; }
.price-disclaimer p { color: var(--text); font-size: 13.5px; margin: 0; line-height: 1.7; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.gallery-item { border: 1px solid var(--border); border-radius: 4px; aspect-ratio: 1; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item span {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(43,36,32,0.75), transparent);
  color: #FFFCF7; font-size: 12px; padding: 20px 12px 10px; text-align: center;
}

/* ---------- Ideas / blog cards ---------- */
.idea-card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.idea-card__photo { height: 220px; overflow: hidden; }
.idea-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.idea-card__body { padding: 24px; }
.idea-card .eyebrow { font-size: 12px; letter-spacing: 1px; margin-bottom: 10px; }
.idea-card h3 { font-size: 19px; margin-bottom: 10px; }
.idea-card p { color: var(--text); font-size: 14px; line-height: 1.6; margin: 0; }

.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 32px; }
.blog-card .eyebrow { font-size: 12px; letter-spacing: 1px; margin-bottom: 10px; }
.blog-card h3 { font-size: 21px; margin-bottom: 12px; }
.blog-card p { color: var(--text); font-size: 14.5px; line-height: 1.7; margin: 0 0 16px; }
.blog-card a { color: var(--accent); text-decoration: none; font-size: 13.5px; }

/* ---------- Team ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.value-item { text-align: center; }
.value-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--card); border: 1px solid var(--border-dark); margin: 0 auto 16px; }
.value-item h3 { font-family: var(--font-sans); font-size: 16px; color: var(--dark); margin: 0 0 8px; }
.value-item p { color: var(--text); font-size: 13.5px; line-height: 1.6; margin: 0; }

.team-card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.team-card__photo { height: 240px; overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 22px; }
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-card .role { color: var(--accent); font-size: 13px; margin: 0 0 10px; }
.team-card p.bio { color: var(--text); font-size: 13.5px; line-height: 1.6; margin: 0; }

/* ---------- Forms ---------- */
.form-panel { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 36px; }
.form-panel h2 { font-size: 22px; margin-bottom: 24px; }
.form-field { display: flex; flex-direction: column; gap: 18px; }
.form-field label { display: block; color: var(--text); font-size: 13px; margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  background: #FFFDFA;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--dark);
}
.form-field textarea { resize: vertical; }
.form-note { color: var(--text-muted); font-size: 12px; line-height: 1.6; margin: 0; }
.form-note a { color: var(--accent); }
.form-msg { font-size: 13.5px; margin: 0; display: none; }
.form-msg.is-success { color: #4d7a4d; display: block; }
.form-msg.is-error { color: #a5453f; display: block; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.contact-map { border: 1px solid var(--border); border-radius: 4px; min-height: 240px; overflow: hidden; }
.contact-map img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.contact-info { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 32px; }
.contact-info h3 { font-size: 19px; margin-bottom: 18px; }
.contact-info-row { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item .label { color: var(--accent); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 4px; }
.contact-info-item .value { color: var(--text); font-size: 14.5px; line-height: 1.5; }

/* ---------- Shop ---------- */
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.product-card__photo { height: 170px; overflow: hidden; }
.product-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card h3 { font-family: var(--font-serif); font-size: 16px; color: var(--dark); margin: 0; }
.product-card p { color: var(--text); font-size: 13px; line-height: 1.55; margin: 0; flex: 1; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.product-card__price { color: var(--dark); font-size: 15px; font-weight: 600; }
.product-card__add {
  background: var(--accent); color: #FFFCF7; border: none; padding: 9px 16px; font-size: 12.5px;
  border-radius: 2px; cursor: pointer; font-family: var(--font-sans);
}
.product-card__add:hover { background: var(--accent-dark); }

.free-shipping-band { background: var(--card-alt); padding: 60px 0; text-align: center; }
.free-shipping-band p { color: var(--dark); font-size: 15px; max-width: 640px; margin: 0 auto; line-height: 1.75; }
.free-shipping-band a { color: var(--accent); text-decoration: none; }

/* Cart button + drawer */
.cart-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  background: var(--dark); color: var(--bg); border: none; padding: 16px 26px; border-radius: 30px;
  font-size: 14px; cursor: pointer; font-family: var(--font-sans);
  box-shadow: 0 12px 30px rgba(43, 36, 32, 0.3);
  display: flex; align-items: center; gap: 10px;
}
.cart-fab__count {
  background: var(--accent); color: #FFFCF7; border-radius: 50%; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.cart-overlay { position: fixed; inset: 0; background: rgba(43, 36, 32, 0.4); z-index: 200; display: none; }
.cart-overlay.is-open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%);
  background: var(--card); z-index: 201; box-shadow: -16px 0 40px rgba(43, 36, 32, 0.2);
  padding: 32px; display: none; flex-direction: column; box-sizing: border-box;
  transform: translateX(100%); transition: transform 0.2s ease;
}
.cart-drawer.is-open { display: flex; transform: translateX(0); }
.cart-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.cart-drawer__head h2 { font-size: 22px; }
.cart-drawer__close { background: none; border: none; font-size: 22px; color: var(--text); cursor: pointer; line-height: 1; }
.cart-items { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; gap: 14px; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.cart-item__photo { width: 60px; height: 60px; flex-shrink: 0; border-radius: 2px; overflow: hidden; }
.cart-item__photo img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name { margin: 0 0 6px; color: var(--dark); font-size: 14px; font-weight: 600; }
.cart-item__price { margin: 0 0 8px; color: var(--text); font-size: 13px; }
.cart-item__qty { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 24px; height: 24px; border: 1px solid var(--border-dark); background: #FFFDFA; border-radius: 2px; cursor: pointer; color: var(--dark); }
.cart-item__remove { margin-left: auto; background: none; border: none; color: var(--accent-dark); font-size: 12px; cursor: pointer; text-decoration: underline; }
.cart-empty { color: var(--text-muted); font-size: 14px; text-align: center; margin-top: 40px; }
.cart-total { border-top: 1px solid var(--border); padding-top: 18px; margin-top: 16px; display: flex; justify-content: space-between; margin-bottom: 16px; }
.cart-total span:first-child { color: var(--text); font-size: 14px; }
.cart-total span:last-child { color: var(--dark); font-size: 17px; font-weight: 600; }
.cart-checkout-btn { width: 100%; box-sizing: border-box; }
.checkout-form { display: flex; flex-direction: column; gap: 14px; overflow-y: auto; }
.checkout-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.checkout-back { background: none; border: none; font-size: 13px; color: var(--accent); cursor: pointer; }
.pay-options { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.pay-options label { display: flex; gap: 8px; align-items: center; color: var(--text); font-size: 13.5px; }
.order-success { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; gap: 16px; }
.order-success h2 { font-size: 24px; }
.order-success p { color: var(--text); font-size: 14.5px; line-height: 1.7; margin: 0; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; background: var(--card); border-top: 1px solid var(--border);
  padding: 18px 32px; display: none; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  z-index: 300; box-shadow: 0 -10px 30px rgba(43, 36, 32, 0.15);
}
.cookie-banner.is-open { display: flex; }
.cookie-banner p { margin: 0; color: var(--text); font-size: 13.5px; max-width: 760px; line-height: 1.6; }
.cookie-banner a { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { width: 100%; background: var(--footer-bg); position: relative; }
.footer-grid { padding: 64px 0 32px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px; }
.footer-logo { font-family: var(--font-serif); font-style: italic; font-size: 24px; color: var(--bg); margin-bottom: 14px; }
.footer-about p { color: var(--footer-text); font-size: 14px; line-height: 1.7; margin: 0 0 18px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--footer-text); font-size: 13px; text-decoration: none; }
.footer-social a:hover { color: var(--accent); }
.footer-col-title { color: var(--bg); font-size: 14px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--footer-text); font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-contact p { color: var(--footer-text); font-size: 14px; line-height: 1.8; margin: 0 0 14px; }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding: 22px 32px; border-top: 1px solid var(--footer-border);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.footer-bottom p { color: var(--footer-text-muted); font-size: 12.5px; margin: 0; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: var(--footer-text-muted); font-size: 12.5px; text-decoration: none; }
.footer-legal a:hover { color: var(--accent); }

/* ---------- Legal pages ---------- */
.legal-updated { color: var(--text-muted); font-size: 13px; margin: 0 0 40px; }
.legal-sections { display: flex; flex-direction: column; gap: 30px; }
.legal-sections h2 { font-size: 19px; margin-bottom: 10px; }
.legal-sections p { color: var(--text); font-size: 14.5px; line-height: 1.75; margin: 0; }
.legal-sections a { color: var(--accent); }
.legal-box { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.legal-box p { margin: 0; color: var(--text); font-size: 14.5px; line-height: 1.8; }
.legal-box strong { color: var(--dark); }
.legal-sub { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.legal-sub-item { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 20px; }
.legal-sub-item h3 { font-family: var(--font-sans); font-size: 15px; color: var(--dark); margin: 0 0 6px; }
.legal-sub-item p { color: var(--text); font-size: 13.5px; line-height: 1.65; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero, .page-hero, .split, .contact-grid, .faq-split { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4, .stats-grid, .steps-grid, .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .nav { display: none; width: 100%; order: 3; flex-direction: column; align-items: flex-start; gap: 0; }
  .nav.is-open { display: flex; }
  .nav__dropdown { width: 100%; }
  .nav__dropdown-menu { position: static; border: none; box-shadow: none; min-width: 0; padding-left: 12px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--border-dark); border-radius: 2px;
    background: var(--card); cursor: pointer; font-size: 18px; color: var(--dark);
  }
  .site-header__inner { position: relative; }
  .grid-3, .grid-4, .grid-2, .stats-grid, .steps-grid, .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; padding: 48px 0 24px; }
  .section { padding: 56px 0; }
}
