/* ===================================================
   CRECER, INC. — Main Stylesheet
   =================================================== */

/* 1. GOOGLE FONTS — loaded via <link> in index.html <head>, not @import (avoids blocking on a second stylesheet fetch before the browser can even discover it) */

/* 2. CSS VARIABLES */
:root {
  --teal-dark:    #0d6e6e;
  --teal:         #159999;
  --teal-mid:     #1ab5b5;
  --teal-light:   #e0f5f5;
  --teal-pale:    #f0fafa;
  --white:        #ffffff;
  --gray-100:     #f1f5f5;
  --gray-300:     #cdd9d9;
  --gray-500:     #7a9494;
  --gray-700:     #3d5555;
  --gray-900:     #1a2e2e;
  --shadow-sm:    0 2px 8px rgba(13,110,110,.08);
  --shadow-md:    0 6px 24px rgba(13,110,110,.13);
  --shadow-lg:    0 16px 48px rgba(13,110,110,.18);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --nav-h:        140px;
  --font-display: 'Newsreader', Georgia, serif;
  --font-body:    'Open Sans', sans-serif;
}

/* 3. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* 4. UTILITY */
.container { width: 92%; max-width: 1180px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: .3rem .9rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin-top: .6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.8rem;
  border-radius: 99px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--teal-dark);
}
.btn-white:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* 4b. SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 2000;
  background: var(--teal-dark);
  color: var(--white);
  padding: .75rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 1rem;
}

/* 5. NAVBAR */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
#navbar.scrolled {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.nav-logo-img {
  height: 96px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;  /* dissolves white bg on the white navbar */
}
.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .88rem;
  color: var(--gray-700);
  letter-spacing: .02em;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--teal-dark); }
.nav-right { display: flex; align-items: center; gap: 1rem; padding-bottom: 2px; }
/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border-radius: 99px;
  padding: 3px;
  gap: 2px;
  border: none;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  padding: .28rem .7rem;
  border-radius: 99px;
  border: none;
  background: transparent;
  color: var(--gray-500);
  transition: var(--transition);
  letter-spacing: .04em;
}
.lang-btn.active {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(21,153,153,.3);
}
.lang-btn:hover:not(.active) { color: var(--teal); }
/* Portal btn */
.nav-portal {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  padding: .5rem 1.2rem;
  background: var(--teal);
  color: var(--white);
  border-radius: 99px;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-portal:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: .4rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  margin: 5px 0;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 6. HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/priska_office.jpg');
  background-size: cover;
  background-position: 72% 20%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  /* Subtle left-side shadow only for text legibility — no colour tint */
  background: linear-gradient(to right,
    rgba(0,0,0,.52) 0%,
    rgba(0,0,0,.28) 38%,
    transparent 68%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  color: var(--white);
  padding: 4rem 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px;
  padding: .35rem 1rem;
  font-size: .78rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.9);
}
.hero-tag::before { content: ''; width: 8px; height: 8px; background: var(--teal-mid); border-radius: 50%; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.hero-title em { color: var(--teal-mid); font-style: normal; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stat-item { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800; color: var(--teal-mid);
}
.stat-label { font-size: .78rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }

/* 7. ABOUT */
#about { padding: 6rem 0; background: var(--white); }
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .9rem 1.2rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .8rem;
}
.badge-icon { width: 40px; height: 40px; background: var(--teal-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.badge-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; }
.badge-text strong { display: block; font-family: var(--font-body); font-size: .95rem; font-weight: 700; color: var(--teal-dark); }
.badge-text span { font-size: .75rem; color: var(--gray-500); }
.about-text-block { display: flex; flex-direction: column; gap: .6rem; }
.about-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.tab-btn {
  font-family: var(--font-body); font-weight: 600; font-size: .78rem;
  padding: .4rem 1rem; border-radius: 99px;
  border: 2px solid var(--gray-300);
  background: transparent; color: var(--gray-500);
  transition: var(--transition); cursor: pointer;
}
.tab-btn.active { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.tab-btn:hover:not(.active) { border-color: var(--teal); color: var(--teal); }
.tab-panel { display: none; animation: fadeIn .4s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.tab-panel h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--teal-dark); margin-bottom: .8rem; }
.tab-panel p { color: var(--gray-700); font-size: .97rem; }

/* Priska section */
.priska-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0a4545 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.priska-section::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(21,153,153,.25), transparent 70%);
  top: -80px; right: -80px;
  border-radius: 50%;
}
.priska-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.priska-img-wrap img { width: 100%; height: 420px; object-fit: cover; object-position: top center; }
.priska-info { color: var(--white); }
.priska-creds {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem;
}
.cred-badge {
  font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  padding: .25rem .8rem; border-radius: 99px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
}
.priska-info h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: .4rem; }
.priska-info .subtitle { color: rgba(255,255,255,.65); font-size: .88rem; margin-bottom: 1.2rem; }
.priska-info p { color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.75; margin-bottom: 1.5rem; }
.priska-quote {
  position: relative;
  padding-left: 2.4rem;
  margin: 1.5rem 0;
}
.priska-quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -.5rem;
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--teal-mid);
  opacity: .5;
}
.priska-quote blockquote { color: rgba(255,255,255,.88); font-style: italic; font-size: .93rem; line-height: 1.75; }
.priska-quote cite { display: block; margin-top: .6rem; font-size: .8rem; color: var(--teal-mid); font-style: normal; font-weight: 600; }

/* 8. SERVICES */
#services { padding: 6rem 0; background: var(--gray-100); }
.services-head { text-align: center; margin-bottom: 3.5rem; }
.services-head .section-sub { margin: .6rem auto 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.svc-img { position: relative; height: 210px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .28rem .8rem; border-radius: 99px;
}
.svc-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.svc-icon { width: 44px; height: 44px; background: var(--teal-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.svc-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 2; }
.svc-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--teal-dark); margin-bottom: .6rem; }
.svc-body p { color: var(--gray-700); font-size: .9rem; line-height: 1.7; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1.2rem; color: var(--teal);
  font-family: var(--font-body); font-weight: 600; font-size: .84rem;
  transition: var(--transition);
}
.svc-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform var(--transition); }
.svc-link:hover { color: var(--teal-dark); }
.svc-link:hover svg { transform: translateX(4px); }

/* 9. CONTACT */
#contact { padding: 6rem 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-left h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--gray-900); margin-bottom: .6rem; }
.contact-left .lead { color: var(--gray-500); margin-bottom: 1.8rem; }
.portal-card {
  background: linear-gradient(135deg, var(--teal-dark), #0a4545);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  color: var(--white);
  margin-bottom: 2rem;
}
.portal-card p { font-size: .92rem; color: rgba(255,255,255,.8); margin-bottom: 1.2rem; }
.info-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--gray-100); border-radius: var(--radius-md);
  padding: 1.2rem;
}
.info-card-icon { width: 42px; height: 42px; background: var(--teal-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; }
.info-card-content h4 { font-family: var(--font-body); font-size: .88rem; font-weight: 700; color: var(--teal-dark); margin-bottom: .3rem; }
.info-card-content p, .info-card-content a { font-size: .88rem; color: var(--gray-700); display: block; }
.info-card-content a:hover { color: var(--teal); }
.contact-right { display: flex; flex-direction: column; gap: 1.5rem; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 300px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-caption {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--teal-pale); border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
}
.map-caption-content strong {
  display: block;
  font-family: var(--font-body); font-size: .88rem; font-weight: 700;
  color: var(--teal-dark); margin-bottom: .4rem;
}
.map-caption-content p { font-size: .92rem; color: var(--gray-700); line-height: 1.65; margin-bottom: .5rem; }
.map-caption-content a { color: var(--teal); font-weight: 600; font-size: .85rem; }
.map-caption-content a:hover { color: var(--teal-dark); }
.social-row { display: flex; gap: .8rem; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--gray-700);
  border: none;
}
.social-btn:hover { background: var(--teal); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }
.social-btn svg.icon-outline, .footer-social a svg.icon-outline { fill: none; stroke: currentColor; }

/* 10. FOOTER */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.65);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.footer-tagline { font-size: .88rem; margin-top: .8rem; color: rgba(255,255,255,.5); }
.footer-col h5 { font-family: var(--font-body); font-weight: 700; font-size: .85rem; color: rgba(255,255,255,.85); margin-bottom: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-col a, .footer-col p { font-size: .85rem; color: rgba(255,255,255,.5); display: block; margin-bottom: .4rem; transition: var(--transition); }
.footer-col a:hover { color: var(--teal-mid); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255,255,255,.5); }
.footer-social a:hover { background: var(--teal); color: var(--white); }
.footer-social a svg { width: 15px; height: 15px; fill: currentColor; }

/* 11. SCROLL-TO-TOP */
#scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--teal); border: none; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(16px);
  transition: var(--transition); pointer-events: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#scroll-top:hover { background: var(--teal-dark); transform: translateY(-2px); }
#scroll-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* 12. MOBILE NAV DRAWER */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--gray-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-hamburger { display: flex; flex-direction: column; }
  .nav-portal { display: none; }
}

/* 13. RESPONSIVE */
@media (max-width: 1024px) {
  .priska-section { grid-template-columns: 240px 1fr; gap: 2.5rem; padding: 3rem; }
}
@media (max-width: 900px) {
  :root { --nav-h: 110px; }
  .nav-logo-img { height: 80px; }
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .priska-section { grid-template-columns: 1fr; padding: 2.5rem; text-align: center; }
  .priska-img-wrap { max-width: 340px; margin: 0 auto; }
  .priska-img-wrap img { height: 380px; }
  .priska-quote { text-align: left; }
  .priska-creds { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  #hero { min-height: 90vh; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(1.9rem, 5vw, 3rem); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  :root { --nav-h: 90px; }
  .nav-logo-img { height: 64px; }
  .nav-inner { padding-bottom: .6rem; }
  .container { width: 95%; }
  #hero { min-height: 100svh; align-items: flex-end; padding-bottom: 3rem; }
  .hero-content { padding: 2rem 0 0; }
  .hero-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-sub { font-size: .95rem; }
  .hero-tag { font-size: .7rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; padding-top: 1.2rem; margin-top: 2rem; }
  .stat-num { font-size: 1.6rem; }
  #about, #services, #contact { padding: 4rem 0; }
  .about-intro { gap: 1.8rem; margin-bottom: 3rem; }
  .about-img-wrap img { height: 280px; }
  .priska-section { padding: 1.8rem; border-radius: var(--radius-lg); }
  .priska-img-wrap { max-width: 260px; }
  .priska-img-wrap img { height: 300px; }
  .priska-info h3 { font-size: 1.3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-img { height: 180px; }
  .contact-grid { gap: 2.5rem; }
  .map-wrap { height: 240px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* 14. ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* 15. REDUCED MOTION — keep state changes, drop the movement */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    transform: none;
    transition: opacity .25s ease;
    transition-delay: 0s;
  }

  .btn-primary:hover,
  .btn-outline:hover,
  .btn-white:hover,
  .nav-portal:hover,
  .svc-card:hover,
  .social-btn:hover,
  .footer-social a:hover,
  #scroll-top:hover {
    transform: none;
  }

  .svc-card:hover .svc-img img {
    transform: none;
  }
}
