/* =============================================
   Ing. Petr Pozděna — stylesheet v3
   ============================================= */

:root {
  --navy:       #0d1f33;
  --navy-mid:   #162d47;
  --navy-light: #1e3d5c;
  --green:      #15803d;
  --green-2:    #16a34a;
  --green-3:    #22c55e;
  --green-pale: #f0fdf4;
  --green-pale2:#dcfce7;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-300:   #cbd5e1;
  --gray-400:   #94a3b8;
  --gray-500:   #64748b;
  --gray-700:   #334155;
  --text:       #1e293b;
  --max-w:      1100px;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.07);
  --shadow-md:  0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);
  --transition: 0.22s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: .35rem; }
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  line-height: 1.2;
  color: var(--navy);
}
a { color: var(--green-2); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-3); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 1rem;
}

.nav-brand { text-decoration: none; display: flex; flex-direction: column; gap: 2px; }
.nav-brand .name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.nav-brand .tagline {
  font-size: .62rem;
  color: var(--green-3);
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
}

.nav-menu { display: flex; align-items: center; gap: .5rem; }

.nav-links {
  display: flex; align-items: center;
  gap: .1rem; list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  display: block;
  padding: .42rem .82rem;
  font-size: .84rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.nav-links a:hover { background: rgba(255,255,255,.09); color: #fff; }
.nav-links a.active {
  background: var(--green);
  color: #fff;
  font-weight: 600;
}

.lang-toggle {
  display: flex;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  overflow: hidden;
  margin-left: .5rem;
}
.lang-btn {
  padding: .32rem .62rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255,255,255,.45);
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.lang-btn.active { background: var(--green); color: #fff; }
.lang-btn:hover:not(.active) { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--navy-mid);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 12px 40px rgba(0,0,0,.35);
    z-index: 199;
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: .2rem; width: 100%; }
  .nav-links a { padding: .65rem 1rem; font-size: .9rem; }
  .lang-toggle { align-self: flex-start; margin-top: .75rem; margin-left: 0; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse 70% 80% at 75% 40%, rgba(21,128,61,.22) 0%, transparent 60%),
    linear-gradient(150deg, #0a1a2e 0%, var(--navy) 45%, var(--navy-mid) 100%);
  padding: 5.5rem 0 7rem;
  position: relative;
  overflow: hidden;
}

/* Dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Curved wave bottom — blends into stats strip */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: 55px; }

/* Decorative leaf rings */
.hero-deco {
  position: absolute;
  right: -60px; top: -40px;
  width: 520px; height: 520px;
  pointer-events: none;
  opacity: .55;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

/* Law reference tag above heading */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .28rem .9rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
  font-family: 'Inter', monospace;
}

.hero h1 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  letter-spacing: -.03em;
}

.hero h1 em {
  font-style: normal;
  color: var(--green-3);
}

.hero-subtitle {
  font-size: .97rem;
  color: rgba(255,255,255,.58);
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }

/* Right panel — visual stats card */
.hero-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(4px);
}

.hero-panel-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-3);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-panel-title::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green-3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.75); }
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero-stat-row:last-child { border-bottom: none; padding-bottom: 0; }

.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  min-width: 60px;
  letter-spacing: -.03em;
}

.hero-stat-info strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: .1rem;
}
.hero-stat-info span {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

/* Collapse to single column on smaller screens */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-panel { margin-top: .5rem; }
}

/* eyebrow kept for inner pages */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(21,128,61,.2);
  border: 1px solid rgba(34,197,94,.35);
  color: var(--green-3);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .32rem .95rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: linear-gradient(135deg, var(--green) 0%, #14753a 100%);
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.06); }

.stat-icon {
  font-size: 1.6rem;
  margin-bottom: .5rem;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: .3rem;
  letter-spacing: -.04em;
}

.stat-label {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .12em;
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat-item:last-child { border-bottom: none; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.65rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
  font-family: inherit;
  letter-spacing: .01em;
}

.btn-primary {
  background: var(--green-2);
  color: #fff;
  border-color: var(--green-2);
  box-shadow: 0 4px 14px rgba(22,163,74,.35);
}
.btn-primary:hover {
  background: var(--green-3);
  border-color: var(--green-3);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,163,74,.45);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.25);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.65);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.btn-white {
  background: #fff;
  color: var(--green);
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.btn-white:hover {
  background: var(--green-pale);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

/* =============================================
   SECTION CHROME
   ============================================= */
.section-pad    { padding: 4rem 0; }
.section-pad-sm { padding: 2.5rem 0; }
.bg-white  { background: var(--white); }
.bg-off    { background: var(--off-white); }
.bg-navy   { background: var(--navy); }
.bg-green  { background: var(--green); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-2);
  margin-bottom: .6rem;
}
.section-label::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--green-2);
}

.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
  letter-spacing: -.025em;
}

/* Underline accent on titles */
.section-title-accent {
  display: inline-block;
  position: relative;
}
.section-title-accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--green-2), var(--green-3));
  border-radius: 2px;
}

.section-header { margin-bottom: 3.5rem; }

/* =============================================
   AUTHORIZATION BOX
   ============================================= */
.auth-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Left accent bar */
.auth-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green-3), var(--green));
}

/* Decorative large quote mark */
.auth-box::after {
  content: '"';
  position: absolute;
  right: 2.5rem; top: -1rem;
  font-size: 9rem;
  font-family: Georgia, serif;
  color: rgba(34,197,94,.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Decorative circle glow */
.auth-glow {
  position: absolute;
  right: -80px; bottom: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,.08) 0%, transparent 70%);
  pointer-events: none;
}

.auth-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.28);
  color: var(--green-3);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .8rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}

.auth-box h2 { color: #fff; font-size: 1.1rem; margin-bottom: .9rem; }
.auth-box p  { color: rgba(255,255,255,.7); font-size: .93rem; line-height: 1.85; max-width: 820px; position: relative; z-index: 1; }

/* Auth document preview */
.auth-doc-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.auth-thumb {
  width: 90px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: 2px solid rgba(255,255,255,.15);
}
.auth-thumb:hover { transform: scale(1.05); box-shadow: 0 8px 28px rgba(0,0,0,.6); }
.btn-outline-dark {
  border: 1.5px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
  background: transparent;
  padding: .55rem 1.3rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-outline-dark:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* Lightbox */
.auth-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9999;
  overflow-y: auto;
  padding: 3rem 1rem 2rem;
}
.auth-lightbox.open { display: block; }
.auth-lightbox-close {
  position: fixed;
  top: 1rem; right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
  z-index: 10000;
}
.auth-lightbox-close:hover { opacity: 1; }
.auth-lightbox-pages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}
.auth-lightbox-pages img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(0,0,0,.6);
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

/* Colored top stripe per card — override per-card with modifier classes */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-2), var(--green-3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transform: translateY(-4px);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  border: 1px solid var(--green-pale2);
  transition: background var(--transition), transform var(--transition);
}
.card:hover .card-icon { background: var(--green-pale2); transform: scale(1.07); }

.card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .8rem; color: var(--navy); }
.card ul { font-size: .875rem; color: var(--gray-500); }
.card p  { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }
.card ul li { margin-bottom: .4rem; }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(90deg, var(--green) 0%, #0f6530 100%);
  padding: 1.25rem 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(255,255,255,.1);
  border-bottom: 2px solid rgba(255,255,255,.1);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}
.cta-band p  {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  margin: 0;
  flex: 1;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(21,128,61,.15) 0%, transparent 55%),
    linear-gradient(150deg, #0a1a2e 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }

.page-hero .hero-eyebrow { margin-bottom: 1.1rem; }
.page-hero h1 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #ffffff;
  max-width: 760px;
  letter-spacing: -.025em;
  line-height: 1.22;
}
.page-hero-meta {
  margin-top: .9rem;
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.page-hero-meta::before {
  content: '';
  width: 20px; height: 1px;
  background: rgba(255,255,255,.3);
}

/* =============================================
   REFERENCE LIST
   ============================================= */
.reference-list {
  list-style: none;
  padding: 0;
  counter-reset: ref;
}
.reference-list li {
  counter-increment: ref;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
  transition: background var(--transition);
}
.reference-list li:last-child { border-bottom: none; }
.reference-list li:hover { background: var(--off-white); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; border-radius: var(--radius); }

.reference-list li::before {
  content: counter(ref, decimal-leading-zero);
  width: 44px; height: 44px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--green-pale2);
  letter-spacing: -.01em;
  margin-top: .1rem;
  transition: background var(--transition), color var(--transition);
}
.reference-list li:hover::before {
  background: var(--green-2);
  color: #fff;
  border-color: var(--green-2);
}

.reference-list li strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: .93rem;
  margin-bottom: .3rem;
}
.reference-list li span {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* Simple list (IPPC / Odpad) */
.ref-simple {
  list-style: none;
  padding: 0;
  counter-reset: sc;
}
.ref-simple li {
  counter-increment: sc;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .92rem;
  color: var(--gray-700);
  align-items: start;
  transition: background var(--transition);
}
.ref-simple li:last-child { border-bottom: none; }
.ref-simple li:hover { background: var(--off-white); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; border-radius: var(--radius); }

.ref-simple li::before {
  content: counter(sc);
  width: 36px; height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.ref-simple li:hover::before { background: var(--green-2); }

.ref-simple li strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
  font-size: .92rem;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-lg); }

.contact-card h3 {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--green-2);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--green-pale2);
}

.contact-item {
  display: flex;
  gap: .9rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--green-pale2);
}
.contact-item-content .label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--gray-400);
  margin-bottom: .2rem;
}
.contact-item-content strong { display: block; color: var(--navy); font-weight: 600; font-size: .92rem; }
.contact-item-content span  { display: block; font-size: .88rem; color: var(--gray-500); }
.contact-item-content a     { color: var(--green-2); font-weight: 600; font-size: .92rem; }
.contact-item-content a:hover { color: var(--green-3); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  margin-top: 2rem;
}
.map-container iframe { display: block; width: 100%; height: 370px; border: none; }
.map-note { text-align: center; font-size: .78rem; color: var(--gray-400); margin-top: .6rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 3rem 0 2.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-align: center;
}
.footer-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
  letter-spacing: -.01em;
}
.footer-sub  { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.25); margin-top: .3rem; }

/* Thin green divider above footer */
.footer-line {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--green-2), var(--green-3));
  border-radius: 2px;
  margin: .4rem auto;
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.divider { height: 1px; background: var(--gray-200); margin: 1.5rem 0; }

/* =============================================
   FADE-UP ANIMATION
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 640px) {
  .section-pad { padding: 3rem 0; }
  .hero { padding: 4rem 0 6rem; }
  .hero-actions { flex-direction: column; }
  .btn { align-self: flex-start; }
  .auth-box { padding: 2rem 1.75rem; }
  .auth-box::after { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 1.25rem 0; }
  .cta-band .container { flex-direction: column; text-align: center; gap: 1rem; }
  .cta-band h2 { white-space: normal; }
}
