/* =====================================================
   JMH-Siivous Oy — main.css (yhteinen kaikille sivuille)
   Sivukohtaiset poikkeamat hoidetaan body-luokilla:
     .page-home            — /index.html
     .page-palvelut-hub    — /palvelut/index.html
     .page-taloyhtio       — /palvelut/taloyhtiosiivous/index.html
     .page-yritys          — /palvelut/yrityssiivous/index.html
     .page-alue-hub        — /alue/index.html
     .page-pori            — /alue/pori/index.html
     .page-ulvila          — /alue/ulvila/index.html
===================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body { font-family: 'DM Sans', sans-serif; background: #F8F5F0; color: #2C3444; line-height: 1.6; overflow-x: hidden; max-width: 100%; position: relative; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --cream: #F8F5F0;
  --white: #FFFFFF;
  --navy: #1A2332;
  --navy2: #243146;
  --navy3: #344560;
  --gold: #B8966A;
  --gold2: #D4B896;
  --goldpale: #EDE0CE;
  --text: #2C3444;
  --muted: #6B7490;
  --border: #E8E0D5;
  --sh1: 0 4px 24px rgba(26,35,50,0.08);
  --sh2: 0 8px 40px rgba(26,35,50,0.10);
  --sh3: 0 16px 56px rgba(26,35,50,0.16);
  --r: 4px;
  --rl: 12px;
}

/* ===== TYPOGRAPHY (defaults = aluesivut/palvelut-alasivujen arvot) ===== */
.t-display { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 60px; font-weight: 600; line-height: 1.05; letter-spacing: -1px; color: var(--navy); }
.t-display em { font-style: italic; color: var(--gold); }
.t-h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 48px; font-weight: 600; line-height: 1.1; letter-spacing: -0.5px; color: var(--navy); }
.t-h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 600; color: var(--navy); }
.t-lead { font-size: 17px; line-height: 1.75; color: var(--muted); font-weight: 300; }
.eyebrow { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.gold-line { display: block; width: 48px; height: 2px; background: var(--gold); margin-bottom: 20px; }
.gold-line-c { margin-left: auto; margin-right: auto; }

/* Sivukohtaiset typografia-poikkeamat */
.page-home .t-display { font-size: 72px; line-height: 1.02; }
.page-home .t-h2 { font-size: 52px; }
.page-palvelut-hub .t-display { font-size: 64px; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.section { padding: 80px 0; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 14px 28px; border-radius: var(--r); cursor: pointer; transition: all 0.25s; border: none; text-decoration: none; }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy3); transform: translateY(-2px); box-shadow: var(--sh2); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: white; transform: translateY(-2px); }
.btn-white { background: white; color: var(--navy); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-ghostw { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghostw:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: var(--sh2); }

/* ===== NAV ===== */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 0; transition: all 0.35s; background: rgba(248,245,240,0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border); }
#nav.scrolled { background: rgba(248,245,240,0.97); backdrop-filter: blur(12px); padding: 14px 0; box-shadow: 0 1px 0 var(--border), var(--sh1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--navy); letter-spacing: -0.5px; }
.logo-sub { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links > a, .nav-links > .nav-drop > .nav-drop-trigger { font-size: 12px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); transition: color 0.2s; background: none; border: none; font-family: inherit; cursor: pointer; padding: 0; display: flex; align-items: center; gap: 6px; }
.nav-links > a:hover, .nav-links > .nav-drop > .nav-drop-trigger:hover { color: var(--navy); }
.nav-links > a.active, .nav-links > .nav-drop.active > .nav-drop-trigger { color: var(--navy); }
.nav-btn { padding: 10px 22px; font-size: 12px; }
.nav-drop { position: relative; }
.nav-drop-trigger svg { width: 10px; height: 10px; transition: transform 0.25s; }
.nav-drop:hover .nav-drop-trigger svg { transform: rotate(180deg); }
.nav-drop-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); background: white; border: 1px solid var(--border); border-radius: var(--rl); padding: 8px; min-width: 240px; box-shadow: var(--sh2); opacity: 0; visibility: hidden; transition: all 0.25s; margin-top: 16px; z-index: 101; }
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 16px; }
.nav-drop-menu a { display: block; padding: 12px 16px; font-size: 13px; font-weight: 500; color: var(--text); border-radius: var(--r); letter-spacing: 0.3px; text-transform: none; transition: all 0.2s; }
.nav-drop-menu a:hover { background: var(--cream); color: var(--gold); }
.nav-drop-menu a.drop-featured { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--border); margin-bottom: 4px; padding-bottom: 12px; }
.nav-drop-menu a.drop-featured:hover { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); display: block; border-radius: 2px; transition: all 0.3s; }
.mmenu { display: none; position: fixed; inset: 0; z-index: 110; background: var(--cream); flex-direction: column; justify-content: flex-start; align-items: center; gap: 0; padding: 78px 20px 90px; overflow-y: auto; }
.mmenu.open { display: flex; }
.mmenu > a { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); transition: color 0.2s; padding: 12px 0; width: 100%; max-width: 360px; text-align: center; border-top: 1px solid var(--border); }
.mmenu > a:hover { color: var(--gold); }
.mmenu-close { position: absolute; top: 16px; right: 20px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--navy); background: none; border: none; font-size: 24px; line-height: 1; z-index: 1; }
.mmenu-group { width: 100%; max-width: 360px; text-align: center; padding: 14px 0 10px; border-top: 1px solid var(--border); }
.mmenu-group:first-of-type { border-top: none; padding-top: 4px; }
.mmenu-group-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 6px; display: block; }
.mmenu-group-links { display: flex; flex-direction: column; gap: 2px; padding: 2px 0 0; }
.mmenu-group-links a { font-size: 14px; font-weight: 500; color: var(--muted); padding: 6px; letter-spacing: 0.3px; }
.mmenu-group-links a:hover { color: var(--gold); }

/* ===== BREADCRUMB (alasivut) ===== */
.breadcrumb { padding: 110px 0 0; background: var(--cream); }
.breadcrumb-inner { font-size: 12px; color: var(--muted); letter-spacing: 0.5px; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
.breadcrumb .current { color: var(--navy); font-weight: 500; }

/* ===== HERO SUB (alasivut) ===== */
.hero-sub { background: var(--cream); padding: 40px 0 80px; position: relative; overflow: hidden; }
.hero-sub::before { content: ''; position: absolute; top: -20%; right: -5%; width: 40%; height: 120%; background: linear-gradient(135deg, var(--goldpale) 0%, rgba(237,224,206,0.3) 60%, transparent 100%); border-radius: 50% 0 0 50%; z-index: 0; }
.hero-sub-inner { position: relative; z-index: 1; max-width: 780px; }
.hero-sub h1 { margin: 16px 0 24px; }
.hero-sub .hero-lead { max-width: 640px; margin-bottom: 32px; }
.hero-sub-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== HERO (etusivu) ===== */
.hero { padding-top: 160px; padding-bottom: 80px; position: relative; overflow: hidden; background: var(--cream); max-width: 100%; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 45%; height: 100%; background: linear-gradient(135deg, var(--goldpale) 0%, rgba(237,224,206,0.4) 50%, transparent 100%); border-radius: 0 0 0 80%; z-index: 0; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 520px 1fr; gap: 60px; align-items: center; }
.hero-lead { margin-bottom: 32px; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-lbl { font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: 0.5px; }
.hero-img-col { position: relative; }
.hero-img-frame { width: 100%; aspect-ratio: 4/5; background: var(--navy2); border-radius: var(--rl); overflow: hidden; }
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(145deg, var(--navy2), var(--navy3)); }
.img-ph svg { opacity: 0.2; }
.img-ph span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.hero-badge { position: absolute; bottom: -20px; left: -20px; background: white; border-radius: var(--rl); padding: 14px 18px; box-shadow: var(--sh2); display: flex; align-items: center; gap: 12px; }
.badge-icon { width: 40px; height: 40px; background: var(--goldpale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.badge-icon svg { width: 18px; height: 18px; }
.badge-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.badge-text span { font-size: 11px; color: var(--muted); }

/* ===== PILLARS (default: alasivut, vaaleat) ===== */
.pillars { background: white; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.pill { background: var(--cream); border-radius: var(--rl); padding: 36px 28px; border: 1px solid var(--border); transition: all 0.3s; }
.pill:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--sh2); }
.pill-icon { width: 56px; height: 56px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--gold); box-shadow: var(--sh1); }
.pill-icon svg { width: 26px; height: 26px; }
.pill-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.pill-text { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== PILLARS (etusivu: navy + .pillar-tyylinen) ===== */
.page-home .pillars { background: var(--navy); padding: 60px 0; }
.page-home .pillars-grid { grid-template-columns: 1fr 1fr 1fr; gap: 0; margin-top: 0; }
.pillar { padding: 40px; border-right: 1px solid rgba(255,255,255,0.08); transition: background 0.3s; }
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(255,255,255,0.04); }
.pillar-icon { width: 44px; height: 44px; color: var(--gold); margin-bottom: 20px; }
.pillar-icon svg { width: 44px; height: 44px; }
.pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: white; margin-bottom: 10px; }
.pillar-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ===== SERVICES (etusivu) ===== */
.services { background: white; }
.sec-header { text-align: center; margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 24px; }
.scard { border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; transition: all 0.3s; }
.scard:hover { border-color: var(--gold2); box-shadow: var(--sh3); transform: translateY(-4px); }
.scard-img { aspect-ratio: 16/9; overflow: hidden; }
.scard-body { padding: 28px; }
.scard-tag { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.scard-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.scard-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.slist li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text); line-height: 1.5; margin-bottom: 6px; }
.slist li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
.scard-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); padding-bottom: 6px; border-bottom: 1.5px solid var(--gold); transition: all 0.25s; }
.scard-link svg { width: 14px; height: 14px; transition: transform 0.25s; }
.scard-link:hover { color: var(--gold); }
.scard-link:hover svg { transform: translateX(4px); }
.extras { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.extra { background: var(--cream); border-radius: var(--rl); padding: 20px; display: flex; gap: 14px; align-items: flex-start; transition: background 0.3s; }
.extra:hover { background: var(--goldpale); }
.extra-icon { width: 36px; height: 36px; background: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--sh1); color: var(--gold); }
.extra-icon svg { width: 18px; height: 18px; }
.extra-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.extra-text { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== PRIMARY SERVICES (palvelut-hub) ===== */
.services2 { background: white; }
.services2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.service-hero { border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s; background: white; }
.service-hero:hover { border-color: var(--gold2); box-shadow: var(--sh3); transform: translateY(-4px); }
.service-hero-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.service-hero-img .img-ph { aspect-ratio: auto; width: 100%; height: 100%; }
.service-hero-body { padding: 36px; flex: 1; display: flex; flex-direction: column; }
.service-hero-tag { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.service-hero-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--navy); margin-bottom: 14px; line-height: 1.15; }
.service-hero-desc { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.service-hero-list { margin-bottom: 28px; flex: 1; }
.service-hero-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text); line-height: 1.6; margin-bottom: 8px; }
.service-hero-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }
.service-hero-cta { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; background: var(--navy); color: white; border-radius: var(--r); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: all 0.25s; align-self: flex-start; }
.service-hero-cta svg { width: 14px; height: 14px; transition: transform 0.25s; }
.service-hero-cta:hover { background: var(--navy3); transform: translateY(-2px); box-shadow: var(--sh2); }
.service-hero-cta:hover svg { transform: translateX(4px); }

/* ===== PRINCIPLES (palvelut-hub) ===== */
.principles { background: var(--cream); }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.princ { background: white; border-radius: var(--rl); padding: 36px 28px; text-align: center; border: 1px solid var(--border); transition: all 0.3s; }
.princ:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--sh2); }
.princ-icon { width: 56px; height: 56px; background: var(--goldpale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--gold); }
.princ-icon svg { width: 26px; height: 26px; }
.princ-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.princ-text { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== INCLUDED (taloyhtio/yritys) ===== */
.included { background: var(--cream); }
.incl-intro { max-width: 720px; margin-bottom: 48px; }
.incl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.incl-card { background: white; border-radius: var(--rl); padding: 28px 28px 26px; border: 1px solid var(--border); transition: all 0.3s; display: flex; gap: 18px; align-items: flex-start; }
.incl-card:hover { border-color: var(--gold2); box-shadow: var(--sh1); transform: translateY(-2px); }
.incl-card-icon { width: 44px; height: 44px; background: var(--goldpale); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.incl-card-icon svg { width: 20px; height: 20px; }
.incl-card-body { flex: 1; }
.incl-card-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 6px; line-height: 1.2; }
.incl-card-text { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ===== PROGRAMS (taloyhtiosiivous) ===== */
.programs { background: white; }
.programs-intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prog { background: var(--cream); border-radius: var(--rl); padding: 32px 28px; border: 1px solid var(--border); transition: all 0.3s; }
.prog:hover { border-color: var(--gold); box-shadow: var(--sh2); transform: translateY(-4px); }
.prog-freq { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.prog-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.15; }
.prog-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.prog-list li { display: flex; gap: 9px; font-size: 13px; color: var(--text); line-height: 1.55; margin-bottom: 6px; }
.prog-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }

/* ===== INDUSTRIES (yrityssiivous) ===== */
.industries { background: white; }
.ind-intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind { background: var(--cream); border-radius: var(--rl); padding: 32px 28px; border: 1px solid var(--border); transition: all 0.3s; }
.ind:hover { border-color: var(--gold); box-shadow: var(--sh2); transform: translateY(-4px); }
.ind-icon { width: 48px; height: 48px; background: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--gold); box-shadow: var(--sh1); }
.ind-icon svg { width: 22px; height: 22px; }
.ind-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.ind-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.ind-list li { display: flex; gap: 9px; font-size: 13px; color: var(--text); line-height: 1.55; margin-bottom: 6px; }
.ind-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }

/* ===== PROCESS (default: alasivut, 4 askelta) ===== */
.process { background: var(--cream); }
.process-steps { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; position: relative; margin-top: 56px; gap: 0; }
.process-steps::before { content: ''; position: absolute; top: 27px; left: 10%; right: 10%; height: 1px; background: linear-gradient(to right, var(--goldpale), var(--gold), var(--goldpale)); }
.pstep { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.pstep-num { width: 56px; height: 56px; background: white; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--gold); margin-bottom: 16px; margin-top: 8px; box-shadow: var(--sh1); flex-shrink: 0; }
.pstep-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.pstep-text { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* PROCESS-poikkeamat */
.page-home .process-steps { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; gap: normal; }
.page-home .pstep-title { font-size: 13px; }
.page-home .pstep-text { font-size: 12px; }
.page-palvelut-hub .process { background: white; }

/* ===== ABOUT (etusivu) ===== */
.about { background: white; }
.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 3/4; background: var(--navy2); border-radius: var(--rl); overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-accent { position: absolute; bottom: -28px; right: -28px; width: 65%; height: 65%; border: 2px solid var(--goldpale); border-radius: var(--rl); z-index: -1; }
.about-quote { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: var(--navy2); line-height: 1.5; margin-bottom: 20px; padding-left: 20px; border-left: 3px solid var(--gold); }
.about-text { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.about-sig { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.sig-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: var(--navy); }
.sig-role { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* ===== AREA CARDS (alue-hub) ===== */
.areas { background: var(--cream); }
.areas-intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.areacard { background: white; border-radius: var(--rl); padding: 44px 40px; border: 1px solid var(--border); transition: all 0.3s; position: relative; overflow: hidden; display: block; }
.areacard:hover { border-color: var(--gold); box-shadow: var(--sh2); transform: translateY(-4px); }
.areacard::before { content: ''; position: absolute; top: 0; right: 0; width: 160px; height: 160px; background: radial-gradient(circle, var(--goldpale) 0%, transparent 70%); opacity: 0.55; pointer-events: none; }
.areacard-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); background: var(--goldpale); padding: 5px 12px; border-radius: 20px; margin-bottom: 18px; position: relative; z-index: 1; }
.areacard h2 { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.1; position: relative; z-index: 1; }
.areacard h2 em { font-style: italic; color: var(--gold); }
.areacard-sub { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; position: relative; z-index: 1; }
.areacard-list { margin: 0 0 28px; position: relative; z-index: 1; }
.areacard-list li { display: flex; gap: 9px; font-size: 13px; color: var(--text); line-height: 1.6; margin-bottom: 8px; }
.areacard-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 8px; }
.areacard-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--navy); transition: gap 0.25s, color 0.2s; position: relative; z-index: 1; border-bottom: 1.5px solid var(--gold); padding-bottom: 4px; }
.areacard:hover .areacard-cta { color: var(--gold); gap: 12px; }
.areacard-cta svg { width: 14px; height: 14px; }
.areas-note { text-align: center; font-size: 14px; color: var(--muted); margin-top: 40px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.areas-note em { color: var(--gold); font-style: normal; font-weight: 600; }

/* ===== CHOOSE (alue-hub) ===== */
.choose { background: white; }
.choose-intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.choose-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px; }
.chooserow { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-top: 1px solid var(--border); }
.chooserow-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 400; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 56px; }
.chooserow-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.chooserow-text { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== SERVICES TEASER (alue-hub) ===== */
.svcteaser { background: var(--cream); }
.svcteaser-intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.svcteaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.svcteaser-card { background: white; border-radius: var(--rl); padding: 32px 28px; border: 1px solid var(--border); transition: all 0.3s; display: flex; gap: 18px; align-items: flex-start; }
.svcteaser-card:hover { border-color: var(--gold); box-shadow: var(--sh1); transform: translateY(-2px); }
.svcteaser-icon { width: 48px; height: 48px; background: var(--goldpale); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.svcteaser-icon svg { width: 22px; height: 22px; }
.svcteaser-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.svcteaser-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
.svcteaser-link { font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--navy); border-bottom: 1.5px solid var(--gold); padding-bottom: 3px; }
.svcteaser-link:hover { color: var(--gold); }

/* ===== SERVICE CARDS (aluesivut: pori/ulvila) ===== */
.svccards { background: var(--cream); }
.svc-intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.svccard { background: white; border-radius: var(--rl); padding: 44px 40px; border: 1px solid var(--border); transition: all 0.3s; position: relative; overflow: hidden; }
.svccard:hover { border-color: var(--gold); box-shadow: var(--sh2); transform: translateY(-4px); }
.svccard::before { content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px; background: radial-gradient(circle, var(--goldpale) 0%, transparent 70%); opacity: 0.5; pointer-events: none; }
.svccard-icon { width: 56px; height: 56px; background: var(--goldpale); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 20px; position: relative; z-index: 1; }
.svccard-icon svg { width: 28px; height: 28px; }
.svccard h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 12px; line-height: 1.15; position: relative; z-index: 1; }
.svccard p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; position: relative; z-index: 1; }
.svccard-list { margin: 0 0 28px; }
.svccard-list li { display: flex; gap: 9px; font-size: 13px; color: var(--text); line-height: 1.6; margin-bottom: 8px; position: relative; z-index: 1; }
.svccard-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 8px; }
.svccard-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--navy); transition: gap 0.25s, color 0.2s; position: relative; z-index: 1; border-bottom: 1.5px solid var(--gold); padding-bottom: 4px; }
.svccard-cta:hover { color: var(--gold); gap: 12px; }
.svccard-cta svg { width: 14px; height: 14px; }

/* ===== NEIGHBORHOODS (aluesivut) ===== */
.hoods { background: white; }
.hoods-intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.hoods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hood { background: var(--cream); border-radius: var(--rl); padding: 18px 16px; border: 1px solid var(--border); transition: all 0.3s; text-align: center; display: block; }
.hood:hover { border-color: var(--gold); box-shadow: var(--sh1); transform: translateY(-2px); background: white; }
.hood-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--navy); }
.hood-note { font-size: 11px; color: var(--muted); margin-top: 2px; letter-spacing: 0.3px; }
.hoods-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hoods-note em { color: var(--gold); font-style: normal; font-weight: 600; }
.page-pori .hoods-grid { grid-template-columns: repeat(5, 1fr); }

/* ===== WHY US (aluesivut) ===== */
.why { background: white; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.whyr { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-top: 1px solid var(--border); }
.whyr-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 400; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 56px; }
.whyr-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.whyr-text { font-size: 14px; color: var(--muted); line-height: 1.7; }
.page-pori .why, .page-ulvila .why { background: var(--cream); }

/* ===== OTHER AREAS (aluesivut) ===== */
.otherareas { background: white; }
.otherareas-intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }

/* ===== AREA & CITIES (default: palvelut-hub-tyyli) ===== */
.area { background: var(--cream); }
.area-intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.cities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.city { background: white; border-radius: var(--rl); padding: 22px 24px; border: 1px solid var(--border); transition: all 0.3s; display: block; position: relative; }
.city:hover { border-color: var(--gold); box-shadow: var(--sh1); transform: translateY(-2px); }
.city-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-bottom: 8px; }
.city-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.city-note { font-size: 12px; color: var(--muted); }
.city-arrow { position: absolute; top: 22px; right: 22px; color: var(--gold); opacity: 0; transform: translateX(-4px); transition: all 0.25s; }
.city-arrow svg { width: 16px; height: 16px; }
.city:hover .city-arrow { opacity: 1; transform: translateX(0); }
.seo-box { background: white; border: 1px solid var(--border); border-radius: var(--rl); padding: 32px; }
.seo-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.seo-box p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.seo-box p strong { color: var(--navy); }

/* CITY/CITIES-poikkeamat */
.page-home .cities { grid-template-columns: 1fr 1fr; margin-top: 28px; }
.page-home .city { padding: 20px 24px; }
.page-home .city-arrow { top: 20px; right: 20px; }
.page-pori .cities, .page-ulvila .cities { grid-template-columns: repeat(3, 1fr); }
.page-pori .city, .page-ulvila .city { background: var(--cream); }
.page-pori .city:hover, .page-ulvila .city:hover { background: white; }
.page-ulvila .cities.cities-single { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

/* ===== CTA BAND ===== */
.cta-band { background: var(--navy); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(184,150,106,0.15) 0%, transparent 70%); pointer-events: none; }
.cta-band .eyebrow { color: var(--gold); }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 600; color: white; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 20px; }
.cta-title em { font-style: italic; color: var(--gold2); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.page-home .cta-title { font-size: 52px; }
.page-home .cta-sub { max-width: 480px; }

/* ===== FAQ ===== */
.faq { background: white; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 22px 0; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--navy); background: none; border: none; width: 100%; text-align: left; font-family: 'DM Sans', sans-serif; transition: color 0.2s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { width: 24px; height: 24px; border: 1.5px solid currentColor; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.faq-icon svg { width: 10px; height: 10px; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: white; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 0 20px 0; font-size: 14px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 500px; }
.page-home .faq-list { max-width: 720px; }
.page-home .faq-item.open .faq-a { max-height: 250px; }
.page-palvelut-hub .faq-item.open .faq-a { max-height: 400px; }
.page-alue-hub .faq-item.open .faq-a { max-height: 600px; }
.page-pori .faq, .page-ulvila .faq { background: var(--cream); }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 400px 1fr; gap: 60px; align-items: start; }
.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.info-icon { width: 40px; height: 40px; background: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--sh1); color: var(--gold); }
.info-icon svg { width: 18px; height: 18px; }
.info-lbl { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.info-val { font-size: 15px; font-weight: 600; color: var(--navy); }
.info-val a:hover { color: var(--gold); }
.billing { background: white; border: 1px solid var(--border); border-radius: var(--rl); padding: 20px 24px; margin-top: 28px; }
.billing-title { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.billing p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.form-box { background: white; border-radius: var(--rl); padding: 40px; box-shadow: var(--sh2); }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.fg input, .fg textarea, .fg select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r); font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--navy); background: var(--cream); outline: none; transition: all 0.2s; appearance: none; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--gold); background: white; }
.fg textarea { resize: vertical; min-height: 110px; }
.form-box .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-success { display: none; text-align: center; padding: 20px; background: var(--cream); border-radius: var(--rl); border: 1px solid var(--gold); }
.form-success p { color: var(--navy); font-weight: 600; font-size: 15px; }
.form-success span { font-size: 13px; color: var(--muted); display: block; margin-top: 4px; }

/* ===== FOOTER ===== */
footer { background: var(--navy); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: white; letter-spacing: -0.5px; }
.footer-logo-sub { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: block; margin-top: 2px; margin-bottom: 16px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ===== STICKY BAR (mobile) ===== */
.sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: white; border-top: 1px solid var(--border); padding: 10px 12px; gap: 8px; box-shadow: 0 -4px 24px rgba(26,35,50,0.12); }
.sticky-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 11px 6px; border-radius: var(--r); font-size: 12px; font-weight: 600; letter-spacing: 0.3px; }
.sticky-bar a svg { width: 15px; height: 15px; flex-shrink: 0; }
.scall { background: var(--navy); color: white; }
.swhats { background: #25D366; color: white; }
.semail { background: var(--cream); color: var(--navy); border: 1.5px solid var(--border); }

/* ===== AI SEO ===== */
.ai-seo { background: var(--navy); padding: 20px 0 12px; border-top: 1px solid rgba(255,255,255,0.04); }
.ai-seo p { font-size: 11px; color: rgba(255,255,255,0.15); line-height: 1.8; }

/* ===== COOKIE BANNER ===== */
.cookie-banner { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: var(--navy); padding: 20px 24px; box-shadow: 0 -4px 24px rgba(26,35,50,0.2); }
.cookie-banner.show { display: block; }
.cookie-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--gold); color: white; border: none; padding: 10px 20px; border-radius: var(--r); font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.cookie-accept:hover { background: var(--gold2); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); padding: 10px 20px; border-radius: var(--r); font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
.cookie-decline:hover { color: white; border-color: rgba(255,255,255,0.5); }

/* ===== MODAL ===== */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(26,35,50,0.6); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: white; border-radius: var(--rl); max-width: 680px; width: 100%; max-height: 80vh; overflow-y: auto; }
.modal-header { padding: 28px 32px 20px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--border); }
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--navy); }
.modal-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--muted); padding: 4px; line-height: 1; flex-shrink: 0; }
.modal-close:hover { color: var(--navy); }
.modal-body { padding: 28px 32px 32px; font-size: 14px; color: var(--muted); line-height: 1.8; }
.modal-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--navy); margin: 24px 0 8px; }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { margin-bottom: 12px; }
.modal-body a { color: var(--gold); }

/* ===== SCROLL REVEAL ===== */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ===== KEYFRAMES ===== */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== RESPONSIVE @ 900px ===== */
@media (max-width: 900px) {
  .areas-grid { grid-template-columns: 1fr; }
  .choose-grid { grid-template-columns: 1fr; gap: 0; }
  .svcteaser-grid { grid-template-columns: 1fr; }
  .services2-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; gap: 16px; }
  .programs-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .incl-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .page-pori .hoods-grid, .page-ulvila .hoods-grid { grid-template-columns: repeat(3, 1fr); }
  .page-pori .cities, .page-ulvila .cities { grid-template-columns: repeat(2, 1fr); }
  .page-ulvila .cities.cities-single { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE @ 700px ===== */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-btn { display: none; }
  .hamburger { display: flex; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 70px; background: var(--navy); }
  .wrap { padding: 0 20px; }
  .section { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img-col { display: none; }
  .t-display { font-size: 36px; }
  .t-h2 { font-size: 32px; }
  .page-home .t-display { font-size: 44px; }
  .page-home .t-h2 { font-size: 36px; }
  .page-palvelut-hub .t-display { font-size: 38px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero { padding-top: 100px; padding-bottom: 48px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .page-home .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 28px 24px; }
  .pillar:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .extras { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .page-home .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .cities { grid-template-columns: 1fr 1fr; }
  .page-pori .cities, .page-ulvila .cities { grid-template-columns: 1fr; }
  .page-pori .hoods-grid, .page-ulvila .hoods-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-title { font-size: 36px; }
  .areacard h2 { font-size: 32px; }
  .service-hero-title { font-size: 26px; }
  .svccard h3 { font-size: 24px; }
  .cookie-banner { bottom: 70px; }
  .sticky-bar a { padding: 13px 6px; font-size: 13px; }
  .sticky-bar a svg { width: 16px; height: 16px; }
}

/* ===== RESPONSIVE @ 420px ===== */
@media (max-width: 420px) {
  .cities { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .page-home .process-steps { grid-template-columns: 1fr; }
}
