/* ==========================================================================
   Mamitha Novelties — Gifts & Toys | Stylesheet
   Vibrant, family-friendly palette
   ========================================================================== */

:root {
  --red: #E4192C;
  --red-dark: #B5111F;
  --red-light: #FF4D5E;
  --yellow: #FFC93C;
  --yellow-dark: #F5A623;
  --teal: #1FB6A6;
  --teal-dark: #12897C;
  --pink: #FF6F91;
  --purple: #7C5CFF;
  --cream: #FFF8EE;
  --cream-dark: #FFF0D9;
  --ink: #2B2118;
  --ink-soft: #5A4E42;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(228, 25, 44, 0.12);
  --shadow-sm: 0 4px 14px rgba(43, 33, 24, 0.08);
  --radius: 18px;
  --radius-sm: 10px;
  --max-width: 1200px;
  --font-head: 'Baloo 2', 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0 0 0.5em;
  line-height: 1.2;
  color: var(--red-dark);
}
p { margin: 0 0 1em; color: var(--ink-soft); }

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

.section {
  padding: 70px 0;
}
.section--tight { padding: 45px 0; }
.section--cream { background: var(--cream-dark); }
.section--white { background: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--teal-dark);
  background: rgba(31, 182, 166, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(228, 25, 44, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 26px rgba(228, 25, 44, 0.45); }
.btn-secondary {
  background: var(--white);
  color: var(--red-dark);
  box-shadow: var(--shadow-sm);
}
.btn-yellow {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(245, 166, 35, 0.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--yellow); font-weight: 600; }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--red);
  background: var(--white);
  flex-shrink: 0;
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
}
.brand-text h1 {
  font-size: 1.35rem;
  margin: 0;
  color: var(--red-dark);
  letter-spacing: 0.3px;
}
.brand-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--teal-dark);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.98rem;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--red);
  color: var(--white);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--red-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero / Banner ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 55%, #8c0f1c 100%);
  color: var(--white);
  overflow: hidden;
  padding: 60px 0 40px;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}
.hero::before {
  width: 320px; height: 320px;
  background: var(--yellow);
  top: -120px; right: -80px;
}
.hero::after {
  width: 220px; height: 220px;
  background: var(--teal);
  bottom: -100px; left: -60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 201, 60, 0.95);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
}
.hero h1 span { color: var(--yellow); }
.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--yellow);
}
.hero-stats div span { font-size: 0.85rem; color: rgba(255,255,255,0.85); }

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 16px;
  text-align: center;
  box-shadow: 0 18px 30px rgba(0,0,0,0.25);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.hero-card:hover { transform: translateY(-8px); }
.hero-card .emoji { font-size: 2.4rem; display: block; margin-bottom: 8px; }
.hero-card span { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.hero-card:nth-child(2) { margin-top: 26px; }
.hero-card:nth-child(3) { margin-top: -26px; }

/* ---------- Marquee strip ---------- */
.marquee-strip {
  background: var(--yellow);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}
.marquee-track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 28s linear infinite;
}
.marquee-track span { margin: 0 26px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ---------- Category / Product cards ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--yellow);
}
.cat-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
}
.cat-card:nth-child(2n) .cat-icon { background: linear-gradient(135deg, var(--pink), var(--red)); }
.cat-card:nth-child(3n) .cat-icon { background: linear-gradient(135deg, var(--yellow), var(--yellow-dark)); color: var(--ink); }
.cat-card:nth-child(4n) .cat-icon { background: linear-gradient(135deg, var(--purple), #5638c9); }
.cat-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.cat-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Feature / Why choose us ---------- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.feature-item h4 { margin-bottom: 4px; font-size: 1.05rem; color: var(--ink); }
.feature-item p { margin: 0; font-size: 0.92rem; }

/* ---------- Split / About sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.split-media {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media .big-emoji { font-size: 6rem; }
.split-media::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  top: -60px; left: -60px;
}
.badge-float {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.badge-float strong { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--red); }
.badge-float span { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  margin: 40px 0 0;
  padding-left: 30px;
  border-left: 3px dashed var(--teal);
}
.timeline-item {
  position: relative;
  padding-bottom: 34px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--yellow);
}
.timeline-item h4 { color: var(--red-dark); margin-bottom: 4px; }
.timeline-item span.year {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 4px;
}

/* ---------- Values grid ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.value-card .emoji { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.value-card h4 { font-size: 1rem; margin-bottom: 4px; color: var(--ink); }
.value-card p { font-size: 0.85rem; margin: 0; }

/* ---------- Gallery / Filter ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: var(--font-head);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--teal);
  background: transparent;
  color: var(--teal-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.92rem;
}
.filter-btn:hover { background: rgba(31,182,166,0.1); }
.filter-btn.active {
  background: var(--teal);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.gallery-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.gallery-thumb {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
}
.gallery-info { padding: 16px; }
.gallery-info h4 { font-size: 1rem; margin-bottom: 4px; color: var(--ink); }
.gallery-info span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--teal-dark);
}
.gallery-info p { font-size: 0.85rem; margin: 6px 0 0; }

/* Thumb color variety */
.thumb-1 { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.thumb-2 { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.thumb-3 { background: linear-gradient(135deg, var(--yellow), var(--yellow-dark)); color: var(--ink); }
.thumb-4 { background: linear-gradient(135deg, var(--pink), #d64570); }
.thumb-5 { background: linear-gradient(135deg, var(--purple), #5638c9); }
.thumb-6 { background: linear-gradient(135deg, #ff9a56, #ff6f3c); }

/* ---------- Services detail cards ---------- */
.service-block {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  align-items: flex-start;
}
.service-num {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--red);
}
.service-block h3 { margin-bottom: 6px; }
.service-block ul { margin-top: 10px; }
.service-block ul li {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--ink-soft);
  font-size: 0.82rem;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 4px 6px 0 0;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card .stars { color: var(--yellow-dark); margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; }
.testimonial-name { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-family: var(--font-head);
}
.testimonial-name strong { display: block; color: var(--ink); font-size: 0.95rem; }
.testimonial-name span { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius);
  padding: 46px 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h3 { color: var(--white); margin-bottom: 6px; font-size: 1.6rem; }
.cta-band p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-card .cic-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-info-card h4 { margin-bottom: 4px; color: var(--ink); font-size: 1.02rem; }
.contact-info-card p { margin: 0; font-size: 0.92rem; }
.contact-info-card a { color: var(--red); font-weight: 700; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 340px;
  background: var(--cream-dark);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid #EFE2CE;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 10px;
}
.form-success {
  display: none;
  background: rgba(31,182,166,0.12);
  color: var(--teal-dark);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: 18px;
}
.form-success.show { display: block; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; font-size: 0.92rem; border-bottom: 1px solid var(--cream-dark); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--red-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: #221a14;
  color: rgba(255,255,255,0.82);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 40px;
}
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.footer-brand .brand-mark { border-color: var(--yellow); color: var(--yellow); }
.footer-brand .brand-mark::after { border-color: var(--yellow); }
.footer-brand h3 { color: var(--white); margin: 0; font-size: 1.2rem; }
.footer-brand span { color: var(--yellow); font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700;}
.site-footer h5 {
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 16px;
}
.site-footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
.site-footer ul li a:hover { color: var(--yellow); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: var(--yellow); }

/* ---------- Floating action buttons ---------- */
.fab-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.fab:hover { transform: scale(1.08); }
.fab-call { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.fab-whatsapp { background: linear-gradient(135deg, #25D366, #1aa851); }

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  background: linear-gradient(120deg, var(--red-dark), var(--red));
  color: var(--white);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  background: var(--yellow);
  opacity: 0.15;
  border-radius: 50%;
  top: -100px; right: -60px;
}
.page-banner h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 8px; }
.breadcrumb { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.breadcrumb a { color: var(--yellow); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 260px; order: -1; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 8px; }
  .site-header.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 16px 20px 24px;
    box-shadow: var(--shadow-sm);
    gap: 4px;
  }
  .site-header.open .nav-links a { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .hero-visual { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .cta-band { flex-direction: column; text-align: center; }
  .section { padding: 50px 0; }
  .service-block { grid-template-columns: 1fr; text-align: left; }
  .topbar .container { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .grid-4, .grid-3, .grid-2, .gallery-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-text h1 { font-size: 1.1rem; }
  .hero-visual { grid-template-columns: repeat(2, 1fr); }
}
